summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_aliases_import.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-02-05 18:44:18 +0545
committerPhil Davis <phil.davis@inf.org>2017-02-05 18:44:18 +0545
commit1a147fcdc8cef2b6e4a223b6fb9ce4b36fd4e73c (patch)
treeed13175baa1bcf661ec1557876aa913fb9ec3dbf /src/usr/local/www/firewall_aliases_import.php
parentdfbc9267d3838088f551de0a53021486b0e7c3df (diff)
downloadpfsense-1a147fcdc8cef2b6e4a223b6fb9ce4b36fd4e73c.zip
pfsense-1a147fcdc8cef2b6e4a223b6fb9ce4b36fd4e73c.tar.gz
setHelp and gettext changes for firewall* pages
Diffstat (limited to 'src/usr/local/www/firewall_aliases_import.php')
-rw-r--r--src/usr/local/www/firewall_aliases_import.php30
1 files changed, 24 insertions, 6 deletions
diff --git a/src/usr/local/www/firewall_aliases_import.php b/src/usr/local/www/firewall_aliases_import.php
index 753a1d8..d42f1a4 100644
--- a/src/usr/local/www/firewall_aliases_import.php
+++ b/src/usr/local/www/firewall_aliases_import.php
@@ -215,18 +215,36 @@ if ($tab == "port") {
$sectiontext = gettext('Port Alias Details');
$helptext = gettext('Paste in the ports to import separated by a carriage return. ' .
'The list may contain port numbers, port ranges, blank lines (ignored) and ' .
- 'an optional description after each port. e.g.:</span>' .
- '<ul><li>22</li><li>1234:1250</li><li>443 HTTPS port</li><li>4000:4099 Description of a port range</li>' .
- '</ul><span class="help-block">');
+ 'an optional description after each port. e.g.:') .
+ '</span><ul><li>' .
+ '22' .
+ '</li><li>' .
+ '1234:1250' .
+ '</li><li>' .
+ gettext('443 HTTPS port') .
+ '</li><li>' .
+ gettext('4000:4099 Description of a port range') .
+ '</li></ul><span class="help-block">';
} else {
$sectiontext = gettext('IP Alias Details');
$helptext = gettext('Paste in the aliases to ' .
'import separated by a carriage return. Common examples are lists of IPs, ' .
'networks, blacklists, etc. The list may contain IP addresses, with or without ' .
'CIDR prefix, IP ranges, blank lines (ignored) and an optional description after ' .
- 'each IP. e.g.:</span><ul><li>172.16.1.2</li><li>172.16.0.0/24</li><li>10.11.12.100-' .
- '10.11.12.200</li><li>192.168.1.254 Home router</li><li>10.20.0.0/16 Office ' .
- 'network</li><li>10.40.1.10-10.40.1.19 Managed switches</li></ul><span class="help-block">');
+ 'each IP. e.g.:') .
+ '</span><ul><li>' .
+ '172.16.1.2' .
+ '</li><li>' .
+ '172.16.0.0/24' .
+ '</li><li>' .
+ '10.11.12.100-10.11.12.200' .
+ '</li><li>' .
+ gettext('192.168.1.254 Home router') .
+ '</li><li>' .
+ gettext('10.20.0.0/16 Office network') .
+ '</li><li>' .
+ gettext('10.40.1.10-10.40.1.19 Managed switches') .
+ '</li></ul><span class="help-block">';
}
$section = new Form_Section($sectiontext);
OpenPOWER on IntegriCloud