diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-05-16 07:35:42 -0400 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-05-16 07:35:42 -0400 |
commit | 2c6faa055c819d50aa963e3cb3d9094521f51a50 (patch) | |
tree | 709f718636805c33de8161f77b523dc70f07bafb | |
parent | e4710ed5d5c42430b7563904233fadac2463744e (diff) | |
parent | cb6c20a997eeb77b3529e157cd512fabb4ff69f0 (diff) | |
download | pfsense-2c6faa055c819d50aa963e3cb3d9094521f51a50.zip pfsense-2c6faa055c819d50aa963e3cb3d9094521f51a50.tar.gz |
Merge pull request #2954 from NewEraCracker/textual-corrections
-rw-r--r-- | src/usr/local/www/services_dhcp.php | 6 | ||||
-rw-r--r-- | src/usr/local/www/services_dhcpv6.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/services_dyndns_edit.php | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php index 3f58d7b..f5c30f9 100644 --- a/src/usr/local/www/services_dhcp.php +++ b/src/usr/local/www/services_dhcp.php @@ -1030,21 +1030,21 @@ $section->addInput(new Form_IpAddress( 'ddnsdomainprimary', 'Primary DDNS address', $pconfig['ddnsdomainprimary'] -))->setHelp('Primary domain name server IP address for the dynamic domain name'); +))->setHelp('Primary domain name server IP address for the dynamic domain name.'); $section->addInput(new Form_Input( 'ddnsdomainkeyname', 'DNS Domain key', 'text', $pconfig['ddnsdomainkeyname'] -))->setHelp('Dynamic DNS domain key name which will be used to register client names in the DNS server'); +))->setHelp('Dynamic DNS domain key name which will be used to register client names in the DNS server.'); $section->addInput(new Form_Input( 'ddnsdomainkey', 'DNS Domain key secret', 'text', $pconfig['ddnsdomainkey'] -))->setHelp('Dynamic DNS domain key secret which will be used to register client names in the DNS server'); +))->setHelp('Dynamic DNS domain key secret which will be used to register client names in the DNS server.'); // Advanced MAC $btnadv = new Form_Button( diff --git a/src/usr/local/www/services_dhcpv6.php b/src/usr/local/www/services_dhcpv6.php index 2df014d..f63fcf7 100644 --- a/src/usr/local/www/services_dhcpv6.php +++ b/src/usr/local/www/services_dhcpv6.php @@ -718,7 +718,7 @@ $section->add($group); $section->addInput(new Form_Input( 'domain', - 'Domain Name', + 'Domain name', 'text', $pconfig['domain'] ))->setHelp('The default is to use the domain name of this system as the default domain name provided by DHCP. An alternate domain name may be specified here. '); diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php index d7e26d0..03130ec 100644 --- a/src/usr/local/www/services_dyndns_edit.php +++ b/src/usr/local/www/services_dyndns_edit.php @@ -132,7 +132,7 @@ if ($_POST) { $reqdfieldsn[] = gettext("Username"); if ($pconfig['type'] == "namecheap") { $reqdfields[] = "domainname"; - $reqdfieldsn[] = gettext("Domain Name"); + $reqdfieldsn[] = gettext("Domain name"); } } else { $reqdfields[] = "updateurl"; @@ -327,7 +327,7 @@ $group->add(new Form_Input( )); $group->add(new Form_Input( 'domainname', - 'Domain Name', + 'Domain name', 'text', $pconfig['domainname'] )); |