diff options
author | Scott Ullrich <sullrich@gmail.com> | 2012-06-11 16:27:37 -0700 |
---|---|---|
committer | Scott Ullrich <sullrich@gmail.com> | 2012-06-11 16:27:37 -0700 |
commit | 60729223ea389e89e0c840378d80121beef68ce9 (patch) | |
tree | f0e88bb537e0d5e136c9bf5bad466af2afe7f6b0 | |
parent | 400b39bd3d60ef3308b4aac6e2b4fc5867ad283a (diff) | |
parent | 3f3c2dcecac5e739418aaa23809a159600baf6bd (diff) | |
download | pfsense-packages-60729223ea389e89e0c840378d80121beef68ce9.tar.gz pfsense-packages-60729223ea389e89e0c840378d80121beef68ce9.tar.bz2 pfsense-packages-60729223ea389e89e0c840378d80121beef68ce9.zip |
Merge pull request #256 from ccesario/master
Gettext support
-rw-r--r-- | config/squid-reverse/squid_monitor.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/squid-reverse/squid_monitor.php b/config/squid-reverse/squid_monitor.php index ccc44fb9..22d7dfcc 100644 --- a/config/squid-reverse/squid_monitor.php +++ b/config/squid-reverse/squid_monitor.php @@ -119,7 +119,7 @@ include("head.inc"); </select> <br/> <span class="vexpl"> - Max. lines to be displayed. + <?=gettext("Max. lines to be displayed.");?> </span> </td> </tr> @@ -129,9 +129,9 @@ include("head.inc"); <input name="strfilter" type="text" class="formfld search" id="strfilter" size="50" value=""> <br/> <span class="vexpl"> - Enter a grep like string/pattern to filterlog.<br> - eg. username, ip addr, url.<br> - Use <b>!</b> to invert the sense of matching, to select non-matching lines. + <?=gettext("Enter a grep like string/pattern to filterlog.");?><br> + <?=gettext("eg. username, ip addr, url.");?><br> + <?=gettext("Use <b>!</b> to invert the sense of matching, to select non-matching lines.");?> </span> </td> </tr> |