summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_shaper_vinterface.php
diff options
context:
space:
mode:
authorRafael Lucas <rafalucas.unicamp@gmail.com>2010-06-29 11:04:36 -0300
committerRafael Lucas <rafalucas.unicamp@gmail.com>2010-06-29 11:04:36 -0300
commitd8a8bb73ecaa9d801e7f3c22cca30eb78a35c49e (patch)
treefc7d3705e33da666cbd18370fc65220e5d2e2fe6 /usr/local/www/firewall_shaper_vinterface.php
parent406abd6ea0ee780b302d0108e78136152cc3efe5 (diff)
downloadpfsense-d8a8bb73ecaa9d801e7f3c22cca30eb78a35c49e.zip
pfsense-d8a8bb73ecaa9d801e7f3c22cca30eb78a35c49e.tar.gz
Implement gettext() calls
Diffstat (limited to 'usr/local/www/firewall_shaper_vinterface.php')
-rw-r--r--usr/local/www/firewall_shaper_vinterface.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/usr/local/www/firewall_shaper_vinterface.php b/usr/local/www/firewall_shaper_vinterface.php
index b6c8c76..13d25e6 100644
--- a/usr/local/www/firewall_shaper_vinterface.php
+++ b/usr/local/www/firewall_shaper_vinterface.php
@@ -51,7 +51,7 @@ if($_GET['reset'] <> "") {
exit;
}
-$pgtitle = array("Firewall","Traffic Shaper", "Limiter");
+$pgtitle = array(gettext("Firewall"),gettext("Traffic Shaper", "Limiter"));
$statusurl = "status_queues.php";
read_dummynet_config();
@@ -142,7 +142,7 @@ if ($_GET) {
$q = new dnpipe_class();
$q->SetQname($pipe);
} else
- $input_errors[] = "Could not create new queue/discipline!";
+ $input_errors[] = gettext("Could not create new queue/discipline!");
if ($q) {
$output_form .= $q->build_form();
@@ -154,7 +154,7 @@ if ($_GET) {
if ($queue)
$output_form .= $queue->build_form();
else
- $input_errors[] = "Queue not found!";
+ $input_errors[] = gettext("Queue not found!");
break;
case "enable":
if ($queue) {
@@ -163,7 +163,7 @@ if ($_GET) {
write_config();
mark_subsystem_dirty('shaper');
} else
- $input_errors[] = "Queue not found!";
+ $input_errors[] = gettext("Queue not found!");
break;
case "disable":
if ($queue) {
@@ -172,7 +172,7 @@ if ($_GET) {
write_config();
mark_subsystem_dirty('shaper');
} else
- $input_errors[] = "Queue not found!";
+ $input_errors[] = gettext("Queue not found!");
break;
default:
$output_form .= "<p class=\"pgtitle\">" . $dn_default_shaper_msg."</p>";
@@ -217,7 +217,7 @@ if ($_GET) {
read_dummynet_config();
$output_form .= $tmp->build_form();
} else
- $input_errors[] = "Could not add new queue.";
+ $input_errors[] = gettext("Could not add new queue.");
} else if ($_POST['apply']) {
write_config();
@@ -286,7 +286,7 @@ $tree .= "</ul>";
if (!$dontshow || $newqueue) {
$output_form .= "<tr><td width=\"22%\" valign=\"top\" class=\"vncellreq\">";
-$output_form .= "Queue Actions";
+$output_form .= gettext("Queue Actions");
$output_form .= "</td><td valign=\"top\" class=\"vncellreq\" width=\"78%\">";
$output_form .= "<input type=\"submit\" name=\"Submit\" value=\"" . gettext("Save") . "\" class=\"formbtn\" />";
@@ -348,17 +348,17 @@ include("fbegin.inc");
<?php if ($savemsg) print_info_box($savemsg); ?>
<?php if (is_subsystem_dirty('shaper')): ?><p>
-<?php print_info_box_np("The traffic shaper configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
+<?php print_info_box_np(gettext("The traffic shaper configuration has been changed.<br>You must apply the changes in order for them to take effect."));?><br>
<?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td>
<?php
$tab_array = array();
- $tab_array[0] = array("By Interface", false, "firewall_shaper.php");
- $tab_array[1] = array("By Queue", false, "firewall_shaper_queues.php");
- $tab_array[2] = array("Limiter", true, "firewall_shaper_vinterface.php");
- $tab_array[3] = array("Layer7", false, "firewall_shaper_layer7.php");
- $tab_array[4] = array("Wizards", false, "firewall_shaper_wizards.php");
+ $tab_array[0] = array(gettext("By Interface"), false, "firewall_shaper.php");
+ $tab_array[1] = array(gettext("By Queue"), false, "firewall_shaper_queues.php");
+ $tab_array[2] = array(gettext("Limiter"), true, "firewall_shaper_vinterface.php");
+ $tab_array[3] = array(gettext("Layer7"), false, "firewall_shaper_layer7.php");
+ $tab_array[4] = array(gettext("Wizards"), false, "firewall_shaper_wizards.php");
display_top_tabs($tab_array);
?>
</td></tr>
@@ -377,7 +377,7 @@ include("fbegin.inc");
?>
<br/><br/>
<a href="firewall_shaper_vinterface.php?pipe=new&action=add">
- <img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" title="Create new limiter" width="17" height="17" border="0"> Create new limiter
+ <img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" title="<?=gettext("Create new limiter");?>" width="17" height="17" border="0"><?=gettext("Create new limiter");?>
</a><br/>
</td>
<td width="75%" valign="top" align="center">
OpenPOWER on IntegriCloud