summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system.php
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-03-29 00:11:26 -0700
committerNOYB <Al_Stu@Frontier.com>2016-03-29 00:11:26 -0700
commit1bab4a1009feb74a05961635949b94fdb1da4627 (patch)
tree0c3eaa5ef65f7672334b689ed5c65066410a3444 /src/usr/local/www/system.php
parent88ec4c6f2a1a7172607061b71869a5d28e305820 (diff)
downloadpfsense-1bab4a1009feb74a05961635949b94fdb1da4627.zip
pfsense-1bab4a1009feb74a05961635949b94fdb1da4627.tar.gz
System / General Setup - Remove Personalizations
Remove "you" personalizations.
Diffstat (limited to 'src/usr/local/www/system.php')
-rw-r--r--src/usr/local/www/system.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/system.php b/src/usr/local/www/system.php
index ae1377b..8d7973f 100644
--- a/src/usr/local/www/system.php
+++ b/src/usr/local/www/system.php
@@ -190,10 +190,10 @@ if ($_POST) {
// A real gateway has been selected.
if (is_ipaddr($_POST[$dnsname])) {
if ((is_ipaddrv4($_POST[$dnsname])) && (validate_address_family($_POST[$dnsname], $_POST[$dnsgwname]) === false)) {
- $input_errors[] = sprintf(gettext('You can not specify IPv6 gateway "%1$s" for IPv4 DNS server "%2$s".'), $_POST[$dnsgwname], $_POST[$dnsname]);
+ $input_errors[] = sprintf(gettext('The IPv6 gateway "%1$s" can not be specified for IPv4 DNS server "%2$s".'), $_POST[$dnsgwname], $_POST[$dnsname]);
}
if ((is_ipaddrv6($_POST[$dnsname])) && (validate_address_family($_POST[$dnsname], $_POST[$dnsgwname]) === false)) {
- $input_errors[] = sprintf(gettext('You can not specify IPv4 gateway "%1$s" for IPv6 DNS server "%2$s".'), $_POST[$dnsgwname], $_POST[$dnsname]);
+ $input_errors[] = sprintf(gettext('The IPv4 gateway "%1$s" can not be specified for IPv6 DNS server "%2$s".'), $_POST[$dnsgwname], $_POST[$dnsname]);
}
} else {
// The user selected a gateway but did not provide a DNS address. Be nice and set the gateway back to "none".
@@ -215,7 +215,7 @@ if ($_POST) {
if (interface_has_gateway($_POST[$dnsgwitem])) {
foreach ($direct_networks_list as $direct_network) {
if (ip_in_subnet($_POST[$dnsitem], $direct_network)) {
- $input_errors[] = sprintf(gettext("You can not assign a gateway to DNS '%s' server which is on a directly connected network."), $_POST[$dnsitem]);
+ $input_errors[] = sprintf(gettext("A gateway can not be assigned to DNS '%s' server which is on a directly connected network."), $_POST[$dnsitem]);
}
}
}
@@ -472,14 +472,14 @@ $section->addInput(new Form_Select(
'Timezone',
$pconfig['timezone'],
array_combine($timezonelist, $timezonelist)
-))->setHelp('Select the location closest to you');
+))->setHelp('Select the timezone or location within the timezone to be used by this system.');
$section->addInput(new Form_Input(
'timeservers',
'Timeservers',
'text',
$pconfig['timeservers']
))->setHelp('Use a space to separate multiple hosts (only one required). '.
- 'Remember to set up at least one DNS server if you enter a host name here!');
+ 'Remember to set up at least one DNS server if a host name is entered here!');
$section->addInput(new Form_Select(
'language',
'Language',
OpenPOWER on IntegriCloud