summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_advanced_firewall.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-01-21 15:38:45 -0500
committerStephen Beaver <sbeaver@netgate.com>2016-01-21 15:39:29 -0500
commitb50d30c3a6d29b02cc7f4fe66f3a16bc7a4ea1a6 (patch)
treea6d9f2891f3f3dae0d1fd69ae16ca3cc84880980 /src/usr/local/www/system_advanced_firewall.php
parentfd5e3a0800bd0a437f86054efd10827847907f6e (diff)
downloadpfsense-b50d30c3a6d29b02cc7f4fe66f3a16bc7a4ea1a6.zip
pfsense-b50d30c3a6d29b02cc7f4fe66f3a16bc7a4ea1a6.tar.gz
Fixed #5789
Diffstat (limited to 'src/usr/local/www/system_advanced_firewall.php')
-rw-r--r--src/usr/local/www/system_advanced_firewall.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/usr/local/www/system_advanced_firewall.php b/src/usr/local/www/system_advanced_firewall.php
index 43af9bc..29b92af 100644
--- a/src/usr/local/www/system_advanced_firewall.php
+++ b/src/usr/local/www/system_advanced_firewall.php
@@ -451,9 +451,9 @@ $section->addInput($input = new Form_Select(
$config['system']['optimization'],
array(
'normal' => 'Normal',
- 'high-latency' => 'High-latency',
- 'aggressive' => 'Aggressive',
- 'conservative' => 'Conservative',
+ 'high-latency' => gettext('High-latency'),
+ 'aggressive' => gettext('Aggressive'),
+ 'conservative' => gettext('Conservative'),
)
))->setHelp('Select the type of state table optimization to use');
@@ -594,9 +594,9 @@ $section->addInput(new Form_Select(
'Update Frequency',
empty($pconfig['bogonsinterval']) ? 'monthly' : $pconfig['bogonsinterval'],
array(
- 'monthly' => 'Monthly',
- 'weekly' => 'Weekly',
- 'daily' => 'Daily',
+ 'monthly' => gettext('Monthly'),
+ 'weekly' => gettext('Weekly'),
+ 'daily' => gettext('Daily'),
)
))->setHelp('The frequency of updating the lists of IP addresses that are '.
'reserved (but not RFC 1918) or not yet assigned by IANA.');
@@ -619,9 +619,9 @@ if (count($config['interfaces']) > 1) {
'NAT Reflection mode for port forwards',
$value,
array(
- 'disable' => 'disabled',
- 'proxy' => 'NAT + proxy',
- 'purenat' => 'Pure NAT',
+ 'disable' => gettext('disabled'),
+ 'proxy' => gettext('NAT + proxy'),
+ 'purenat' => gettext('Pure NAT'),
)
))->setHelp('</span><ul class="help-block"><li>The pure NAT mode uses a set of NAT rules to direct '.
'packets to the target of the port forward. It has better scalability, '.
OpenPOWER on IntegriCloud