diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-03 12:48:59 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-03 12:48:59 -0300 |
commit | fbe58e0a3dde0867d5aa0d5d0885d538a67e747d (patch) | |
tree | f0b3485d68fbb622c484cd588469a6ac4454a414 /usr/local | |
parent | ab07ca181d1223de148838a087d926f050d6f49b (diff) | |
download | pfsense-fbe58e0a3dde0867d5aa0d5d0885d538a67e747d.zip pfsense-fbe58e0a3dde0867d5aa0d5d0885d538a67e747d.tar.gz |
Reset firewall_shaper_queues.php and status.php on this branch
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_shaper_queues.php | 14 | ||||
-rwxr-xr-x | usr/local/www/status.php | 10 |
2 files changed, 12 insertions, 12 deletions
diff --git a/usr/local/www/firewall_shaper_queues.php b/usr/local/www/firewall_shaper_queues.php index 35b6f21..ac3213a 100755 --- a/usr/local/www/firewall_shaper_queues.php +++ b/usr/local/www/firewall_shaper_queues.php @@ -169,7 +169,7 @@ if ($_POST['apply']) { clear_subsystem_dirty('shaper'); } -$pgtitle = "Firewall: Shaper: By Queues View"; +$pgtitle = gettext("Firewall: Shaper: By Queues View"); $statusurl = "status_queues.php"; include("head.inc"); @@ -184,17 +184,17 @@ include("head.inc"); <form action="firewall_shaper_queues.php" method="post" name="iform" id="iform"> <?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>" . gettext("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", true, "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", false, "firewall_shaper_wizards.php"); + $tab_array[0] = array(gettext("By Interface"), false, "firewall_shaper.php"); + $tab_array[1] = array(gettext("By Queue"), true, "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"), false, "firewall_shaper_wizards.php"); display_top_tabs($tab_array); ?> </td></tr> diff --git a/usr/local/www/status.php b/usr/local/www/status.php index f01b5bf..d1985e3 100755 --- a/usr/local/www/status.php +++ b/usr/local/www/status.php @@ -107,7 +107,7 @@ function defCmd($command) { /* List all of the commands as an index. */ function listCmds() { global $commands; - echo "<p>" . gettext("This status page includes the following information") . ":\n"; + echo "<p>This status page includes the following information:\n"; echo "<ul width=\"700\">\n"; for ($i = 0; isset($commands[$i]); $i++ ) { echo "<li><strong><a href=\"#" . $commands[$i][0] . "\">" . $commands[$i][0] . "</a></strong>\n"; @@ -222,10 +222,10 @@ pre { <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> <strong><?=$currentDate;?></strong> -<p><span class="red"><strong><?=gettext("Note: make sure to remove any sensitive information " . -"(passwords, maybe also IP addresses) before posting " . -"information from this page in public places (like mailing lists)"); ?>!</strong></span><br> -<?=gettext("Passwords in config.xml have been automatically removed"); ?>. +<p><span class="red"><strong>Note: make sure to remove any sensitive information +(passwords, maybe also IP addresses) before posting +information from this page in public places (like mailing lists)!</strong></span><br> +Passwords in config.xml have been automatically removed. <div id="cmdspace" style="width:700px"> <?php listCmds(); ?> |