summaryrefslogtreecommitdiffstats
path: root/usr/local/www/fbegin.inc
diff options
context:
space:
mode:
authorLuiz Gustavo Costa <luizgustavo@fidelize.com.br>2014-03-07 14:00:48 -0300
committerLuiz Gustavo Costa <luizgustavo@fidelize.com.br>2014-03-07 14:00:48 -0300
commit15e477769db4263ebffab918ac99afa03d7aaa1f (patch)
treeb2daa5f6bf354a02b1e8f094039d8f24e6f23d31 /usr/local/www/fbegin.inc
parente28307d08af57fa38a701a6bd1f6ae8b77f6bdcd (diff)
downloadpfsense-15e477769db4263ebffab918ac99afa03d7aaa1f.zip
pfsense-15e477769db4263ebffab918ac99afa03d7aaa1f.tar.gz
more fix some variables gettext
Diffstat (limited to 'usr/local/www/fbegin.inc')
-rwxr-xr-xusr/local/www/fbegin.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc
index dacead2..775148e 100755
--- a/usr/local/www/fbegin.inc
+++ b/usr/local/www/fbegin.inc
@@ -116,7 +116,7 @@ $system_menu = msort(array_merge($system_menu, return_ext_menu("System")),0);
// Interfaces
$interfaces_menu = array();
if (!isset($config['system']['webgui']['noassigninterfaces']))
- $interfaces_menu[] = array("(assign)", "/interfaces_assign.php");
+ $interfaces_menu[] = array(gettext("(assign)"), "/interfaces_assign.php");
$opts = get_configured_interface_with_descr(false, true);
foreach ($opts as $oif => $odescr)
if (!isset($config['interfaces'][$oif]['ovpn']))
@@ -189,7 +189,7 @@ $status_menu[] = array(gettext("RRD Graphs"), "/status_rrd_graph.php");
$status_menu[] = array(gettext("Services"), "/status_services.php");
$status_menu[] = array(gettext("System Logs"), "/diag_logs.php");
$status_menu[] = array(gettext("Traffic Graph"), "/status_graph.php?if=wan");
-if(count($config['interfaces']) > 1)
+if(count($config['interfaces']) > 1)
$status_menu[] = array(gettext("UPnP &amp; NAT-PMP"), "/status_upnp.php");
$ifentries = get_configured_interface_with_descr();
foreach ($ifentries as $ent => $entdesc) {
@@ -233,14 +233,14 @@ if($g['platform'] == "nanobsd")
if (isset($config['system']['developer'])) {
$diagnostics_menu[] = array(gettext("Restart HTTPD"), "/restart_httpd.php", "style" => "font-weight: bold; color: yellow;");
-
+
}
$diagnostics_menu = msort(array_merge($diagnostics_menu, return_ext_menu("Diagnostics")),0);
if(! $g['disablehelpmenu']) {
$help_menu = array();
$help_menu[] = array(gettext("About this Page"), $helpurl);
- if($g['product_name'] == "pfSense")
+ if($g['product_name'] == "pfSense")
$help_menu[] = array(gettext("Bug Database"), "http://www.pfsense.org/j.php?jumpto=redmine");
$help_menu[] = array(gettext("User Forum"), "http://www.pfsense.org/j.php?jumpto=forum");
$help_menu[] = array(gettext("Documentation"), "http://www.pfsense.org/j.php?jumpto=doc");
@@ -249,7 +249,7 @@ if(! $g['disablehelpmenu']) {
$help_menu[] = array(gettext("pfSense Book"), "http://www.pfsense.org/j.php?jumpto=book");
$help_menu[] = array(gettext("Search portal"), "http://www.pfsense.org/j.php?jumpto=searchportal");
$help_menu[] = array(gettext("FreeBSD Handbook"), "http://www.pfsense.org/j.php?jumpto=fbsdhandbook");
- $help_menu = msort(array_merge($help_menu, return_ext_menu("Help")),0);
+ $help_menu = msort(array_merge($help_menu, return_ext_menu("Help")),0);
}
?>
OpenPOWER on IntegriCloud