summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_gateways_edit.php
diff options
context:
space:
mode:
authorSteve Beaver <sbeaver@netgate.com>2017-02-03 10:49:19 -0500
committerSteve Beaver <sbeaver@netgate.com>2017-02-03 10:49:19 -0500
commit4ebcee2400a9542663e78960f5f4305902c87a70 (patch)
tree8f8b630fd3a1caf8db4749459bb25895a4eb6a2b /src/usr/local/www/system_gateways_edit.php
parent4b329613ee7bb2dc85dd72035709853b83061a58 (diff)
downloadpfsense-4ebcee2400a9542663e78960f5f4305902c87a70.zip
pfsense-4ebcee2400a9542663e78960f5f4305902c87a70.tar.gz
Several more fixes for setHelp to assist with translation
Diffstat (limited to 'src/usr/local/www/system_gateways_edit.php')
-rw-r--r--src/usr/local/www/system_gateways_edit.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/usr/local/www/system_gateways_edit.php b/src/usr/local/www/system_gateways_edit.php
index ef16244..a1f40dd 100644
--- a/src/usr/local/www/system_gateways_edit.php
+++ b/src/usr/local/www/system_gateways_edit.php
@@ -593,8 +593,7 @@ $section->addInput(new Form_Checkbox(
'Disabled',
'Disable this gateway',
$pconfig['disabled']
-))->setHelp('Set this option to disable this gateway without removing it from the '.
- 'list.');
+))->setHelp('Set this option to disable this gateway without removing it from the list.');
$section->addInput(new Form_Select(
'interface',
@@ -770,7 +769,7 @@ $section->addInput(new Form_Input(
'placeholder' => $dpinger_default['interval'],
'max' => 86400
]
-))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', [$dpinger_default['interval']]);
+))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', $dpinger_default['interval']);
$section->addInput(new Form_Input(
'loss_interval',
@@ -806,7 +805,7 @@ $group->add(new Form_Input(
]
));
$group->setHelp('Time interval in milliseconds between checking for an alert condition. Default is %d.',
- [$dpinger_default['alert_interval']]);
+ $dpinger_default['alert_interval']);
$section->add($group);
$section->addInput(new Form_StaticText(
OpenPOWER on IntegriCloud