diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-30 19:58:04 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-30 19:58:04 -0300 |
commit | ae102054397f477230e5a67099d3e1d3fb3eb243 (patch) | |
tree | 7bbf80277b8e1dc0433346555ee1f98ef6af8623 /usr/local | |
parent | c045cbca00ebc61b35346d40039943676758eef3 (diff) | |
download | pfsense-ae102054397f477230e5a67099d3e1d3fb3eb243.zip pfsense-ae102054397f477230e5a67099d3e1d3fb3eb243.tar.gz |
Revert "Implement gettext() calls on firewall_shaper_wizards.php"
This reverts commit 0e1c398e3b435a6308a720dee28c96d74131b4e0.
Applied on correct branch
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_shaper_wizards.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/usr/local/www/firewall_shaper_wizards.php b/usr/local/www/firewall_shaper_wizards.php index 8f93b86..acd744c 100755 --- a/usr/local/www/firewall_shaper_wizards.php +++ b/usr/local/www/firewall_shaper_wizards.php @@ -70,14 +70,14 @@ if ($_POST['apply']) { clear_subsystem_dirty('shaper'); } -$pgtitle = array(gettext("Firewall"),gettext("Traffic Shaper"),gettext("Wizards")); +$pgtitle = array("Firewall", "Traffic Shaper", "Wizards"); $statusurl = "status_queues.php"; -$wizards = array(gettext("Single Lan multi Wan")) => "traffic_shaper_wizard.xml", - gettext("Single Wan multi Lan") => "traffic_shaper_wizard_multi_lan.xml", - gettext("Multiple Lan/Wan") => "traffic_shaper_wizard_multi_all.xml", - gettext("Dedicated Links") => "traffic_shaper_wizard_dedicated.xml", - ; +$wizards = array("Single Lan multi Wan" => "traffic_shaper_wizard.xml", + "Single Wan multi Lan" => "traffic_shaper_wizard_multi_lan.xml", + "Multiple Lan/Wan" => "traffic_shaper_wizard_multi_all.xml", + "Dedicated Links" => "traffic_shaper_wizard_dedicated.xml", + ); include("head.inc"); ?> @@ -93,17 +93,17 @@ include("fbegin.inc"); <?php if ($savemsg) print_info_box($savemsg); ?> <?php if (is_subsystem_dirty('shaper')): ?><p> -<?php print_info_box_np(gettext("The traffic shaper configuration has been changed.")<br>gettext("You must apply the changes in order for them to take effect."));?><br> +<?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 endif; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php $tab_array = array(); - $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")), false, "firewall_shaper_vinterface.php"); - $tab_array[3] = array(gettext("Layer7")), false, "firewall_shaper_layer7.php"); - $tab_array[4] = array(gettext("Wizards")), true, "firewall_shaper_wizards.php"); + $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", false, "firewall_shaper_vinterface.php"); + $tab_array[3] = array("Layer7", false, "firewall_shaper_layer7.php"); + $tab_array[4] = array("Wizards", true, "firewall_shaper_wizards.php"); display_top_tabs($tab_array); ?> </td></tr> |