summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_virtual_ip_edit.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-04-04 09:16:59 -0400
committerStephen Beaver <sbeaver@netgate.com>2016-04-04 09:17:04 -0400
commit075c6dfa86306cb3edc61f326f373eb0b4a66e17 (patch)
treee06e2d0e0fe38e48828f553b6d3ffeab00d7b781 /src/usr/local/www/firewall_virtual_ip_edit.php
parent2a9559e1c06fc834f8e73717a5cc2200a75c27cf (diff)
downloadpfsense-075c6dfa86306cb3edc61f326f373eb0b4a66e17.zip
pfsense-075c6dfa86306cb3edc61f326f373eb0b4a66e17.tar.gz
Merge pull request #2812 from NOYB/Firewall_/_Virtual_IPs_-_Remove_Personalizations
(cherry picked from commit 70ecf3db0aa1c0ec04784a69942788f6fef29ec4)
Diffstat (limited to 'src/usr/local/www/firewall_virtual_ip_edit.php')
-rw-r--r--src/usr/local/www/firewall_virtual_ip_edit.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/firewall_virtual_ip_edit.php b/src/usr/local/www/firewall_virtual_ip_edit.php
index a666c31..3e3c6cd 100644
--- a/src/usr/local/www/firewall_virtual_ip_edit.php
+++ b/src/usr/local/www/firewall_virtual_ip_edit.php
@@ -180,9 +180,9 @@ if ($_POST) {
}
if (isset($network_addr) && $_POST['subnet'] == $network_addr) {
- $input_errors[] = gettext("You cannot use the network address for this VIP");
+ $input_errors[] = gettext("The network address cannot be used for this VIP");
} else if (isset($broadcast_addr) && $_POST['subnet'] == $broadcast_addr) {
- $input_errors[] = gettext("You cannot use the broadcast address for this VIP");
+ $input_errors[] = gettext("The broadcast address cannot be used for this VIP");
}
}
@@ -201,7 +201,7 @@ if ($_POST) {
}
if (empty($_POST['password'])) {
- $input_errors[] = gettext("You must specify a CARP password that is shared between the two VHID members.");
+ $input_errors[] = gettext("A CARP password that is shared between the two VHID members must be specified.");
}
if ($_POST['password'] != $_POST['password_confirm']) {
@@ -455,7 +455,7 @@ $section->addInput(new Form_Input(
'Description',
'text',
$pconfig['descr']
-))->setHelp('You may enter a description here for your reference (not parsed).');
+))->setHelp('A description may be entered here for administrative reference (not parsed).');
if (isset($id) && $a_vip[$id]){
$section->addInput(new Form_Input(
OpenPOWER on IntegriCloud