diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-11 21:19:49 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-11 21:19:49 -0300 |
commit | 4a3c31d7f1a5f6bdd53dc4dcd8572627451e252b (patch) | |
tree | 2575c164dd3504ddfd1017f501c9827fde3913e3 /usr/local | |
parent | 9f6bd43e71897974c5f1c9c058cdf9c25e2f4bce (diff) | |
download | pfsense-4a3c31d7f1a5f6bdd53dc4dcd8572627451e252b.zip pfsense-4a3c31d7f1a5f6bdd53dc4dcd8572627451e252b.tar.gz |
gettext() fixes on diag_packet_capture.php
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/diag_packet_capture.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/diag_packet_capture.php b/usr/local/www/diag_packet_capture.php index de314a9..2bff911 100644 --- a/usr/local/www/diag_packet_capture.php +++ b/usr/local/www/diag_packet_capture.php @@ -124,7 +124,7 @@ include("fbegin.inc"); </option> <?php endforeach;?> </select> - <br/><?=gettext("Select the interface on which to capture traffic. ");?> + <br/><?=gettext("Select the interface on which to capture traffic.");?> </td> </tr> <tr> @@ -133,7 +133,7 @@ include("fbegin.inc"); <input name="host" type="text" class="formfld host" id="host" size="20" value="<?=htmlspecialchars($host);?>"> <br/><?=gettext("This value is either the Source or Destination IP address. The packet capture will look for this address in either field.");?> <br/><?=gettext("This value can be a domain name or IP address.");?> - <br/><?=gettext("If you leave this field blank, all packets on the specified interface will be captured. ");?> + <br/><?=gettext("If you leave this field blank, all packets on the specified interface will be captured.");?> </td> </tr> <tr> @@ -167,7 +167,7 @@ include("fbegin.inc"); <option value="-vv -e" <?php if ($detail == "-vv -e") echo "selected"; ?>><?=gettext("Full");?></option> </select> <br/><?=gettext("This is the level of detail that will be displayed after hitting 'Stop' when the packets have been captured.") . "<br/><b>" . - gettext("Note") . ":</b> " . + gettext("Note:") . "</b> " . gettext("This option does not affect the level of detail when downloading the packet capture.");?> </tr> <tr> @@ -191,14 +191,14 @@ include("fbegin.inc"); if ($processcheck != false) $processisrunning = true; - if (($action == gettext("Stop") or $action == "") and $processisrunning != true) + if (($action == "Stop" or $action == "") and $processisrunning != true) echo "<input type=\"submit\" name=\"startbtn\" value=\"" . gettext("Start") . "\"> "; else { echo "<input type=\"submit\" name=\"stopbtn\" value=\"" . gettext("Stop") . "\"> "; } if (file_exists($fp.$fn) and $processisrunning != true) { echo "<input type=\"submit\" name=\"downloadbtn\" value=\"" . gettext("Download Capture") . "\">"; - echo " (" . gettext("The packet capture file was last updated") . ": " . date("F jS, Y g:i:s a.", filemtime($fp.$fn)) . ")"; + echo " (" . gettext("The packet capture file was last updated:") . " " . date("F jS, Y g:i:s a.", filemtime($fp.$fn)) . ")"; } ?> </td> @@ -240,7 +240,7 @@ include("fbegin.inc"); mwexec_bg ("/usr/sbin/tcpdump -i $selectedif $searchcount -s $packetlength -w $fp$fn $searchhost $searchport"); } else { //action = stop - echo("<strong>" . gettext("Packet Capture stopped.") . "<br/><br/>" . gettext("Packets Captured") . ":</strong><br/>"); + echo("<strong>" . gettext("Packet Capture stopped.") . "<br/><br/>" . gettext("Packets Captured:") . "</strong><br/>"); ?> <textarea style="width:98%" name="code" rows="15" cols="66" wrap="off" readonly="readonly"> <?php |