Merge pull request #2927 from NOYB/Miscellaneous_Textual_Corrections

This commit is contained in:
Stephen Beaver 2016-05-02 08:32:15 -04:00
commit 5c8b28644d
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ $section->addInput(new Form_Select(
$section->addInput(new Form_Select(
'ttl',
'Maximum nuber of hops',
'Maximum number of hops',
$ttl,
array_combine(range(1, MAX_TTL), range(1, MAX_TTL))
))->setHelp('Select the maximum number of network hops to trace.');

View File

@ -216,7 +216,7 @@ $logfilesizeHelp = gettext("Logs are held in constant-size circular log files. T
gettext("Disk space currently used by log files is: ") . exec("/usr/bin/du -sh /var/log | /usr/bin/awk '{print $1;}'") .
gettext(" Remaining disk space for log files: ") . exec("/bin/df -h /var/log | /usr/bin/awk '{print $4;}'");
$remoteloghelp = gettext("This option will allow the logging daemon to bind to a single IP address, rather than all IP addresses.") .
$remoteloghelp = gettext("This option will allow the logging daemon to bind to a single IP address, rather than all IP addresses.") . " " .
gettext("If a single IP is picked, remote syslog servers must all be of that IP type. To mix IPv4 and IPv6 remote syslog servers, bind to all interfaces.") .
"<br /><br />" .
gettext("NOTE: If an IP address cannot be located on the chosen interface, the daemon will bind to all addresses.");