summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/status_logs.php
diff options
context:
space:
mode:
authorbruno <bruno.stein@bluepex.com>2016-01-22 11:25:28 -0200
committerbruno <bruno.stein@bluepex.com>2016-01-22 11:25:28 -0200
commit3bd74348f03714448996b0352ce7bb41fb2cc320 (patch)
treeb37e08c08a3267590e0363673874fa2475fd1a9e /src/usr/local/www/status_logs.php
parentee2a6908784f93f904ce603f0db8c96d5bd81140 (diff)
downloadpfsense-3bd74348f03714448996b0352ce7bb41fb2cc320.zip
pfsense-3bd74348f03714448996b0352ce7bb41fb2cc320.tar.gz
add call 'gettext' function in the status menu files
Diffstat (limited to 'src/usr/local/www/status_logs.php')
-rwxr-xr-xsrc/usr/local/www/status_logs.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/usr/local/www/status_logs.php b/src/usr/local/www/status_logs.php
index 35e969e..5fb1da1 100755
--- a/src/usr/local/www/status_logs.php
+++ b/src/usr/local/www/status_logs.php
@@ -71,29 +71,29 @@ Build a list of allowed log files so we can reject others to prevent the page
from acting on unauthorized files.
*/
$allowed_logs = array(
- "system" => array("name" => "General",
+ "system" => array("name" => gettext("General"),
"shortcut" => ""),
- "dhcpd" => array("name" => "DHCP",
+ "dhcpd" => array("name" => gettext("DHCP"),
"shortcut" => "dhcp"),
- "portalauth" => array("name" => "Captive Portal Authentication",
+ "portalauth" => array("name" => gettext("Captive Portal Authentication"),
"shortcut" => "captiveportal"),
- "ipsec" => array("name" => "IPsec",
+ "ipsec" => array("name" => gettext("IPsec"),
"shortcut" => "ipsec"),
- "ppp" => array("name" => "PPP",
+ "ppp" => array("name" => gettext("PPP"),
"shortcut" => ""),
- "relayd" => array("name" => "Load Balancer",
+ "relayd" => array("name" => gettext("Load Balancer"),
"shortcut" => "relayd"),
- "openvpn" => array("name" => "OpenVPN",
+ "openvpn" => array("name" => gettext("OpenVPN"),
"shortcut" => "openvpn"),
- "ntpd" => array("name" => "NTPd",
+ "ntpd" => array("name" => gettext("NTPd"),
"shortcut" => "ntp"),
- "gateways" => array("name" => "Gateways",
+ "gateways" => array("name" => gettext("Gateways"),
"shortcut" => "gateways"),
- "routing" => array("name" => "Routing",
+ "routing" => array("name" => gettext("Routing"),
"shortcut" => "routing"),
- "resolver" => array("name" => "DNS Resolver",
+ "resolver" => array("name" => gettext("DNS Resolver"),
"shortcut" => "resolver"),
- "wireless" => array("name" => "Wireless",
+ "wireless" => array("name" => gettext("Wireless"),
"shortcut" => "wireless"),
);
OpenPOWER on IntegriCloud