summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_rules_edit.php
diff options
context:
space:
mode:
authorderelict-pf <cjlinst+pf@gmail.com>2014-10-31 15:05:22 -0700
committerderelict-pf <cjlinst+pf@gmail.com>2014-10-31 15:05:22 -0700
commita94a16cd463f480ed72bec3fef5df139ecfa73cd (patch)
tree3059b0cb6cf37c183902555c8eeaf3d8e26babc1 /usr/local/www/firewall_rules_edit.php
parent162a7b4edfbb45107cbf33da96945c62c6606dc3 (diff)
downloadpfsense-a94a16cd463f480ed72bec3fef5df139ecfa73cd.zip
pfsense-a94a16cd463f480ed72bec3fef5df139ecfa73cd.tar.gz
s/a/an/ and speling.
Diffstat (limited to 'usr/local/www/firewall_rules_edit.php')
-rw-r--r--usr/local/www/firewall_rules_edit.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php
index a2f7865..90a5259 100644
--- a/usr/local/www/firewall_rules_edit.php
+++ b/usr/local/www/firewall_rules_edit.php
@@ -252,10 +252,10 @@ if ($_POST) {
$input_errors[] = gettext("You can not assign a gateway to a rule that applies to IPv4 and IPv6");
}
if(($_POST['ipprotocol'] == "inet6") && ($_POST['ipprotocol'] != $family)) {
- $input_errors[] = gettext("You can not assign a IPv4 gateway group on IPv6 Address Family rule");
+ $input_errors[] = gettext("You can not assign an IPv4 gateway group on IPv6 Address Family rule");
}
if(($_POST['ipprotocol'] == "inet") && ($_POST['ipprotocol'] != $family)) {
- $input_errors[] = gettext("You can not assign a IPv6 gateway group on IPv4 Address Family rule");
+ $input_errors[] = gettext("You can not assign an IPv6 gateway group on IPv4 Address Family rule");
}
}
}
@@ -266,10 +266,10 @@ if ($_POST) {
$input_errors[] = gettext("You can not assign a gateway to a rule that applies to IPv4 and IPv6");
}
if(($_POST['ipprotocol'] == "inet6") && (!is_ipaddrv6(lookup_gateway_ip_by_name($_POST['gateway'])))) {
- $input_errors[] = gettext("You can not assign the IPv4 Gateway to a IPv6 Filter rule");
+ $input_errors[] = gettext("You can not assign an IPv4 Gateway to an IPv6 Filter rule");
}
if(($_POST['ipprotocol'] == "inet") && (!is_ipaddrv4(lookup_gateway_ip_by_name($_POST['gateway'])))) {
- $input_errors[] = gettext("You can not assign the IPv6 Gateway to a IPv4 Filter rule");
+ $input_errors[] = gettext("You can not assign an IPv6 Gateway to an IPv4 Filter rule");
}
}
@@ -484,11 +484,11 @@ if ($_POST) {
else if ($_POST['pdnpipe'] == $_POST['dnpipe'])
$input_errors[] = gettext("In and Out Queue cannot be the same.");
else if ($dnqlist[$_POST['pdnpipe']][0] == "?" && $dnqlist[$_POST['dnpipe']][0] <> "?")
- $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. both must be from the same type.");
+ $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. Both must be from the same type.");
else if ($dnqlist[$_POST['dnpipe']][0] == "?" && $dnqlist[$_POST['pdnpipe']][0] <> "?")
- $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. both must be from the same type.");
+ $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. Both must be from the same type.");
if ($_POST['direction'] == "out" && empty($_POST['gateway']))
- $input_errors[] = gettext("Please select a gateway, normaly the interface selected gateway, so the limiters work correctly");
+ $input_errors[] = gettext("Please select a gateway, normally the interface selected gateway, so the limiters work correctly");
}
if( !empty($_POST['ruleid']) && !ctype_digit($_POST['ruleid']))
$input_errors[] = gettext('ID must be an integer');
OpenPOWER on IntegriCloud