summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_ipsec_phase2.php
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-04-01 00:05:47 -0700
committerStephen Beaver <sbeaver@netgate.com>2016-04-04 11:40:01 -0400
commitfee8ef4f55ed86935d82246ee1f28eb6a6e018f8 (patch)
treea32b061c641d0d35f1933d8b84ef7e356c392613 /src/usr/local/www/vpn_ipsec_phase2.php
parent78aee67a9e8ddb40d10c965ee8ce1ad1389d25f6 (diff)
downloadpfsense-fee8ef4f55ed86935d82246ee1f28eb6a6e018f8.zip
pfsense-fee8ef4f55ed86935d82246ee1f28eb6a6e018f8.tar.gz
VPN / IPsec - Remove Personalizations
Remove "you" personalizations. (cherry picked from commit dbe87243ffef17cc41f7fe3bc5fa02ed1372059d)
Diffstat (limited to 'src/usr/local/www/vpn_ipsec_phase2.php')
-rw-r--r--src/usr/local/www/vpn_ipsec_phase2.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/usr/local/www/vpn_ipsec_phase2.php b/src/usr/local/www/vpn_ipsec_phase2.php
index 553950a..ec7b96d 100644
--- a/src/usr/local/www/vpn_ipsec_phase2.php
+++ b/src/usr/local/www/vpn_ipsec_phase2.php
@@ -187,9 +187,9 @@ if ($_POST) {
if (!$pconfig['localid_address'] || !is_ipaddr($pconfig['localid_address'])) {
$input_errors[] = gettext("A valid local network IP address must be specified.");
} elseif (is_ipaddrv4($pconfig['localid_address']) && ($pconfig['mode'] != "tunnel")) {
- $input_errors[] = gettext("A valid local network IPv4 address must be specified or you need to change Mode to IPv6");
+ $input_errors[] = gettext("A valid local network IPv4 address must be specified or Mode needs to be changed to IPv6");
} elseif (is_ipaddrv6($pconfig['localid_address']) && ($pconfig['mode'] != "tunnel6")) {
- $input_errors[] = gettext("A valid local network IPv6 address must be specified or you need to change Mode to IPv4");
+ $input_errors[] = gettext("A valid local network IPv6 address must be specified or Mode needs to be changed to IPv4");
}
break;
}
@@ -211,15 +211,15 @@ if ($_POST) {
$input_errors[] = gettext("A valid NAT local network bit count must be specified.");
}
if ($pconfig['localid_type'] == "address") {
- $input_errors[] = gettext("You cannot configure a network type address for NAT while only an address type is selected for local source.");
+ $input_errors[] = gettext("A network type address cannot be configured for NAT while only an address type is selected for local source.");
}
case "address":
if (!empty($pconfig['natlocalid_address']) && !is_ipaddr($pconfig['natlocalid_address'])) {
$input_errors[] = gettext("A valid NAT local network IP address must be specified.");
} elseif (is_ipaddrv4($pconfig['natlocalid_address']) && ($pconfig['mode'] != "tunnel")) {
- $input_errors[] = gettext("A valid NAT local network IPv4 address must be specified or you need to change Mode to IPv6");
+ $input_errors[] = gettext("A valid NAT local network IPv4 address must be specified or Mode needs to be changed to IPv6");
} elseif (is_ipaddrv6($pconfig['natlocalid_address']) && ($pconfig['mode'] != "tunnel6")) {
- $input_errors[] = gettext("A valid NAT local network IPv6 address must be specified or you need to change Mode to IPv4");
+ $input_errors[] = gettext("A valid NAT local network IPv6 address must be specified or Mode needs to be changed to IPv4");
}
break;
}
@@ -244,9 +244,9 @@ if ($_POST) {
if (!$pconfig['remoteid_address'] || !is_ipaddr($pconfig['remoteid_address'])) {
$input_errors[] = gettext("A valid remote network IP address must be specified.");
} elseif (is_ipaddrv4($pconfig['remoteid_address']) && ($pconfig['mode'] != "tunnel")) {
- $input_errors[] = gettext("A valid remote network IPv4 address must be specified or you need to change Mode to IPv6");
+ $input_errors[] = gettext("A valid remote network IPv4 address must be specified or Mode needs to be changed to IPv6");
} elseif (is_ipaddrv6($pconfig['remoteid_address']) && ($pconfig['mode'] != "tunnel6")) {
- $input_errors[] = gettext("A valid remote network IPv6 address must be specified or you need to change Mode to IPv4");
+ $input_errors[] = gettext("A valid remote network IPv6 address must be specified or Mode needs to be changed to IPv4");
}
break;
}
@@ -619,7 +619,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).');
$form->add($section);
@@ -667,7 +667,7 @@ foreach ($p2_ealgos as $algo => $algodata) {
if ($i == $rows) {
- $group->setHelp('Use 3DES for best compatibility or if you have a hardware crypto accelerator card. Blowfish is usually the fastest in software encryption.');
+ $group->setHelp('Use 3DES for best compatibility or for a hardware crypto accelerator card. Blowfish is usually the fastest in software encryption.');
}
$i++;
OpenPOWER on IntegriCloud