mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Reviewing gettext()
This commit is contained in:
parent
bca12a7613
commit
d9950d291f
@ -131,7 +131,7 @@ if ($_POST) {
|
||||
}
|
||||
}
|
||||
|
||||
$pgtitle = array("System","Advanced: Networking");
|
||||
$pgtitle = array(gettext("System"),gettext("Advanced: Networking"));
|
||||
include("head.inc");
|
||||
|
||||
?>
|
||||
@ -165,12 +165,12 @@ function enable_change(enable_over) {
|
||||
<td>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[] = array("Admin Access", false, "system_advanced_admin.php");
|
||||
$tab_array[] = array("Firewall / NAT", false, "system_advanced_firewall.php");
|
||||
$tab_array[] = array("Networking", true, "system_advanced_network.php");
|
||||
$tab_array[] = array("Miscellaneous", false, "system_advanced_misc.php");
|
||||
$tab_array[] = array("System Tunables", false, "system_advanced_sysctl.php");
|
||||
$tab_array[] = array("Notifications", false, "system_advanced_notifications.php");
|
||||
$tab_array[] = array(gettext("Admin Access"), false, "system_advanced_admin.php");
|
||||
$tab_array[] = array(gettext("Firewall / NAT"), false, "system_advanced_firewall.php");
|
||||
$tab_array[] = array(gettext("Networking"), true, "system_advanced_network.php");
|
||||
$tab_array[] = array(gettext("Miscellaneous"), false, "system_advanced_misc.php");
|
||||
$tab_array[] = array(gettext("System Tunables"), false, "system_advanced_sysctl.php");
|
||||
$tab_array[] = array(gettext("Notifications"), false, "system_advanced_notifications.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user