Miscellanous Textual Corrections - Add missing dots, normalize case

This commit is contained in:
NewEraCracker 2016-05-11 20:15:47 +01:00
parent 4296459a95
commit cb6c20a997
3 changed files with 6 additions and 6 deletions

View File

@ -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(

View File

@ -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. ');

View File

@ -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']
));