From 075c6dfa86306cb3edc61f326f373eb0b4a66e17 Mon Sep 17 00:00:00 2001 From: Stephen Beaver Date: Mon, 4 Apr 2016 09:16:59 -0400 Subject: Merge pull request #2812 from NOYB/Firewall_/_Virtual_IPs_-_Remove_Personalizations (cherry picked from commit 70ecf3db0aa1c0ec04784a69942788f6fef29ec4) --- src/usr/local/www/firewall_virtual_ip_edit.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/usr/local/www/firewall_virtual_ip_edit.php') 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( -- cgit v1.1