summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_advanced_firewall.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/system_advanced_firewall.php')
-rw-r--r--src/usr/local/www/system_advanced_firewall.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/usr/local/www/system_advanced_firewall.php b/src/usr/local/www/system_advanced_firewall.php
index 29b92af..f831959 100644
--- a/src/usr/local/www/system_advanced_firewall.php
+++ b/src/usr/local/www/system_advanced_firewall.php
@@ -470,7 +470,7 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Checkbox(
'disablescrub',
'Disable Firewall Scrub',
- 'Disables the PF scrubbing option which can sometimes interfere with NFS and PPTP traffic.',
+ 'Disables the PF scrubbing option which can sometimes interfere with NFS traffic.',
isset($config['system']['disablescrub'])
));
@@ -545,8 +545,7 @@ $section->addInput(new Form_Checkbox(
'Disable Auto-added VPN rules',
'Disable all auto-added VPN rules.',
isset($config['system']['disablevpnrules'])
-))->setHelp('<span>Note: This disables automatically added rules for IPsec, '.
- 'PPTP.</span>');
+))->setHelp('Note: This disables automatically added rules for IPsec.');
$section->addInput(new Form_Checkbox(
'disablereplyto',
@@ -743,13 +742,13 @@ events.push(function() {
var htext = '<span class="text-success">';
if (val == 'normal') {
- htext += 'The default optimization algorithm';
+ htext += '<?=gettext("The default optimization algorithm");?>';
} else if (val == 'high-latency') {
- htext += 'Used for eg. satellite links. Expires idle connections later than default';
+ htext += '<?=gettext("Used for eg. satellite links. Expires idle connections later than default");?>';
} else if (val == 'aggressive') {
- htext += 'Expires idle connections quicker. More efficient use of CPU and memory but can drop legitimate idle connections';
+ htext += '<?=gettext("Expires idle connections quicker. More efficient use of CPU and memory but can drop legitimate idle connections");?>';
} else if (val == 'conservative') {
- htext += 'Tries to avoid dropping any legitimate idle connections at the expense of increased memory usage and CPU utilization';
+ htext += '<?=gettext("Tries to avoid dropping any legitimate idle connections at the expense of increased memory usage and CPU utilization");?>';
}
htext += '</span>';
OpenPOWER on IntegriCloud