summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-04-21 00:04:25 -0700
committerRenato Botelho <renato@netgate.com>2016-04-21 08:33:53 -0300
commit46a8a9cf4b3fce19b29148f4d2d842667f9762b5 (patch)
tree079967372e1a36a09c7286aee48d958c3f214900
parent08067906ea76c56227c05eb451a3ba03caa7079b (diff)
downloadpfsense-46a8a9cf4b3fce19b29148f4d2d842667f9762b5.zip
pfsense-46a8a9cf4b3fce19b29148f4d2d842667f9762b5.tar.gz
Services - Punctuation
Clean up some services menu punctuation. (cherry picked from commit e78ecb9681106889f94b5c7f7b1dbf7b46f54766)
-rw-r--r--src/usr/local/www/load_balancer_setting.php6
-rw-r--r--src/usr/local/www/services_dhcp.php18
-rw-r--r--src/usr/local/www/services_dhcp_edit.php2
-rw-r--r--src/usr/local/www/services_dnsmasq.php2
-rw-r--r--src/usr/local/www/services_dyndns_edit.php4
-rw-r--r--src/usr/local/www/services_ntpd.php4
-rw-r--r--src/usr/local/www/services_ntpd_gps.php4
-rw-r--r--src/usr/local/www/services_pppoe_edit.php20
-rw-r--r--src/usr/local/www/services_snmp.php2
-rw-r--r--src/usr/local/www/services_unbound.php2
-rw-r--r--src/usr/local/www/services_unbound_advanced.php8
11 files changed, 36 insertions, 36 deletions
diff --git a/src/usr/local/www/load_balancer_setting.php b/src/usr/local/www/load_balancer_setting.php
index 8212407..a6a43b4 100644
--- a/src/usr/local/www/load_balancer_setting.php
+++ b/src/usr/local/www/load_balancer_setting.php
@@ -151,21 +151,21 @@ $section->addInput(new Form_Input(
'Timeout',
'text',
$pconfig['timeout']
-))->setHelp('Set the global timeout in milliseconds for checks. Leave blank to use the default value of 1000 ms');
+))->setHelp('Set the global timeout in milliseconds for checks. Leave blank to use the default value of 1000 ms.');
$section->addInput(new Form_Input(
'interval',
'Interval',
'text',
$pconfig['interval']
-))->setHelp('Set the interval in seconds at which the member of a pool will be checked. Leave blank to use the default interval of 10 seconds');
+))->setHelp('Set the interval in seconds at which the member of a pool will be checked. Leave blank to use the default interval of 10 seconds.');
$section->addInput(new Form_Input(
'prefork',
'Prefork',
'text',
$pconfig['prefork']
-))->setHelp('Number of processes forked in advance by relayd. Leave blank to use the default value of 5 processes');
+))->setHelp('Number of processes forked in advance by relayd. Leave blank to use the default value of 5 processes.');
$form->add($section);
print($form);
diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php
index beb1f64..1b485fc 100644
--- a/src/usr/local/www/services_dhcp.php
+++ b/src/usr/local/www/services_dhcp.php
@@ -891,7 +891,7 @@ if (!is_numeric($pool) && !($act == "newpool")) {
$section->addInput(new Form_StaticText(
'Add',
$btnaddpool
- ))->setHelp('If additional pools of addresses are needed inside of this subnet outside the above Range, they may be specified here');
+ ))->setHelp('If additional pools of addresses are needed inside of this subnet outside the above Range, they may be specified here.');
if (is_array($a_pools)) {
$section->addInput(new Form_StaticText(
@@ -934,35 +934,35 @@ $section->addInput(new Form_IpAddress(
'Gateway',
$pconfig['gateway']
))->setPattern('[.a-zA-Z0-9_]+')
- ->setHelp('The default is to use the IP on this interface of the firewall as the gateway. Specify an alternate gateway here if this is not the correct gateway for the network. Type "none" for no gateway assignment');
+ ->setHelp('The default is to use the IP on this interface of the firewall as the gateway. Specify an alternate gateway here if this is not the correct gateway for the network. Type "none" for no gateway assignment.');
$section->addInput(new Form_Input(
'domain',
'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');
+))->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.');
$section->addInput(new Form_Input(
'domainsearchlist',
'Domain search list',
'text',
$pconfig['domainsearchlist']
-))->setHelp('The DHCP server can optionally provide a domain search list. Use the semicolon character as separator');
+))->setHelp('The DHCP server can optionally provide a domain search list. Use the semicolon character as separator.');
$section->addInput(new Form_Input(
'deftime',
'Default lease time',
'number',
$pconfig['deftime']
-))->setHelp('This is used for clients that do not ask for a specific expiration time. The default is 7200 seconds');
+))->setHelp('This is used for clients that do not ask for a specific expiration time. The default is 7200 seconds.');
$section->addInput(new Form_Input(
'maxtime',
'Maximum lease time',
'number',
$pconfig['maxtime']
-))->setHelp('This is the maximum lease time for clients that ask for a specific expiration time. The default is 86400 seconds');
+))->setHelp('This is the maximum lease time for clients that ask for a specific expiration time. The default is 86400 seconds.');
if (!is_numeric($pool) && !($act == "newpool")) {
$section->addInput(new Form_IpAddress(
@@ -987,7 +987,7 @@ if (!is_numeric($pool) && !($act == "newpool")) {
'Change DHCP display lease time from UTC to local time',
$pconfig['dhcpleaseinlocaltime']
))->setHelp('By default DHCP leases are displayed in UTC time. By checking this box DHCP lease time will be displayed in local time and set to the time zone selected.' .
- ' This will be used for all DHCP interfaces lease time');
+ ' This will be used for all DHCP interfaces lease time.');
$section->addInput(new Form_Checkbox(
'statsgraph',
'Statistics graphs',
@@ -1121,7 +1121,7 @@ $section->addInput(new Form_IpAddress(
'tftp',
'TFTP Server',
$pconfig['tftp']
-))->setHelp('Leave blank to disable. Enter a full hostname or IP for the TFTP server')->setPattern('[.a-zA-Z0-9_]+');
+))->setHelp('Leave blank to disable. Enter a full hostname or IP for the TFTP server.')->setPattern('[.a-zA-Z0-9_]+');
// Advanced LDAP
$btnadv = new Form_Button(
@@ -1168,7 +1168,7 @@ $section->addClass('adnlopts');
$section->addInput(new Form_StaticText(
null,
'<div class="alert alert-info"> ' . gettext('Enter the DHCP option number and the value for each item to include in the DHCP lease information.') . ' ' .
- sprintf(gettext('For a list of available options please visit this %1$s URL%2$s'), '<a href="http://www.iana.org/assignments/bootp-dhcp-parameters/" target="_blank">', '</a></div>')
+ sprintf(gettext('For a list of available options please visit this %1$s URL%2$s'), '<a href="http://www.iana.org/assignments/bootp-dhcp-parameters/" target="_blank">', '</a>.</div>')
));
if (!$pconfig['numberoptions']) {
diff --git a/src/usr/local/www/services_dhcp_edit.php b/src/usr/local/www/services_dhcp_edit.php
index 0cd6354..a162149 100644
--- a/src/usr/local/www/services_dhcp_edit.php
+++ b/src/usr/local/www/services_dhcp_edit.php
@@ -574,7 +574,7 @@ $section->addInput(new Form_Input(
'Domain search list',
'text',
$pconfig['domainsearchlist']
-))->setHelp('The DHCP server can optionally provide a domain search list. Use the semicolon character as separator');
+))->setHelp('The DHCP server can optionally provide a domain search list. Use the semicolon character as separator.');
$section->addInput(new Form_Input(
'deftime',
diff --git a/src/usr/local/www/services_dnsmasq.php b/src/usr/local/www/services_dnsmasq.php
index df2674a..8b0b555 100644
--- a/src/usr/local/www/services_dnsmasq.php
+++ b/src/usr/local/www/services_dnsmasq.php
@@ -336,7 +336,7 @@ $section->addInput(new Form_Textarea(
'custom_options',
'Custom options',
$pconfig['custom_options']
-))->setHelp('Enter any additional options to add to the dnsmasq configuration here, separated by a space or newline')
+))->setHelp('Enter any additional options to add to the dnsmasq configuration here, separated by a space or newline.')
->addClass('advanced');
$form->add($section);
diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php
index ccac09a..d7e26d0 100644
--- a/src/usr/local/www/services_dyndns_edit.php
+++ b/src/usr/local/www/services_dyndns_edit.php
@@ -333,8 +333,8 @@ $group->add(new Form_Input(
));
$group->setHelp('Enter the complete fully qualified domain name. Example: myhost.dyndns.org'. '<br />' .
- 'he.net tunnelbroker: Enter the tunnel ID' . '<br />' .
- 'GleSYS: Enter the record ID' . '<br />' .
+ 'he.net tunnelbroker: Enter the tunnel ID.' . '<br />' .
+ 'GleSYS: Enter the record ID.' . '<br />' .
'DNSimple: Enter only the domain name.' . '<br />' .
'Namecheap: Enter the hostname and the domain separately, with the domain being the domain or subdomain zone being handled by Namecheap.');
diff --git a/src/usr/local/www/services_ntpd.php b/src/usr/local/www/services_ntpd.php
index ca7abc8..e335992 100644
--- a/src/usr/local/www/services_ntpd.php
+++ b/src/usr/local/www/services_ntpd.php
@@ -330,7 +330,7 @@ $section->addInput(new Form_Checkbox(
'Log system messages (default: disabled).',
$pconfig['logsys']
))->setHelp('These options enable additional messages from NTP to be written to the System Log ' .
- '<a href="status_logs.php?logfile=ntpd">' . 'Status > System Logs > NTP' . '</a>');
+ '<a href="status_logs.php?logfile=ntpd">' . 'Status > System Logs > NTP' . '</a>.');
// Statistics logging section
$btnadv = new Form_Button(
@@ -388,7 +388,7 @@ $section->addInput(new Form_Textarea(
'leaptext',
null,
base64_decode(chunk_split($pconfig['leapsec']))
-))->setHelp('Enter Leap second configuration as text OR select a file to upload');
+))->setHelp('Enter Leap second configuration as text OR select a file to upload.');
$section->addInput(new Form_Input(
'leapfile',
diff --git a/src/usr/local/www/services_ntpd_gps.php b/src/usr/local/www/services_ntpd_gps.php
index fc74f41..c776ff9 100644
--- a/src/usr/local/www/services_ntpd_gps.php
+++ b/src/usr/local/www/services_ntpd_gps.php
@@ -312,7 +312,7 @@ $section->addInput(new Form_Input(
'Stratum (0-16)',
'text',
$pconfig['stratum']
-))->setHelp('This may be used to change the GPS Clock stratum (default: 0). This may be useful to, for some reason, have ntpd prefer a different clock');
+))->setHelp('This may be used to change the GPS Clock stratum (default: 0). This may be useful to, for some reason, have ntpd prefer a different clock.');
$section->addInput(new Form_Checkbox(
'gpsprefer',
@@ -390,7 +390,7 @@ $section->addInput(new Form_Textarea(
'gpsinitcmd',
null,
base64_decode($pconfig['initcmd'])
-))->setHelp('Commands entered here will be sent to the GPS during initialization. Please read and understand the GPS documentation before making any changes here');
+))->setHelp('Commands entered here will be sent to the GPS during initialization. Please read and understand the GPS documentation before making any changes here.');
$group = new Form_Group('NMEA Checksum Calculator');
diff --git a/src/usr/local/www/services_pppoe_edit.php b/src/usr/local/www/services_pppoe_edit.php
index c381007..a29c516 100644
--- a/src/usr/local/www/services_pppoe_edit.php
+++ b/src/usr/local/www/services_pppoe_edit.php
@@ -361,15 +361,15 @@ $section->addInput(new Form_IpAddress(
'localip',
'Server Address',
$pconfig['localip']
-))->setHelp('Enter the IP address the PPPoE server should give to clients for use as their "gateway"' . '<br />' .
- 'Typically this is set to an unused IP just outside of the client range '. '<br />' .
- 'NOTE: This should NOT be set to any IP address currently in use on this firewall');
+))->setHelp('Enter the IP address the PPPoE server should give to clients for use as their "gateway".' . '<br />' .
+ 'Typically this is set to an unused IP just outside of the client range.'. '<br />' .
+ 'NOTE: This should NOT be set to any IP address currently in use on this firewall.');
$section->addInput(new Form_IpAddress(
'remoteip',
'Remote Address Range',
$pconfig['remoteip']
-))->setHelp('Specify the starting address for the client IP address subnet');
+))->setHelp('Specify the starting address for the client IP address subnet.');
$section->addInput(new Form_Select(
'pppoe_subnet',
@@ -396,7 +396,7 @@ $section->addInput(new Form_IpAddress(
'pppoe_dns2',
null,
$pconfig['pppoe_dns2']
-))->setHelp('If entered these servers will be given to all PPPoE clients, otherwise LAN DNS and one WAN DNS will go to all clients');
+))->setHelp('If entered these servers will be given to all PPPoE clients, otherwise LAN DNS and one WAN DNS will go to all clients.');
$section->addInput(new Form_Checkbox(
'radiusenable',
@@ -404,21 +404,21 @@ $section->addInput(new Form_Checkbox(
'Use RADIUS Authentication',
$pconfig['radiusenable']
))->setHelp('Users will be authenticated using the RADIUS server specified below. The local user database ' .
- 'will not be used');
+ 'will not be used.');
$section->addInput(new Form_Checkbox(
'radacct_enable',
null,
'Use RADIUS Accounting',
$pconfig['radacct_enable']
-))->setHelp('Sends accounting packets to the RADIUS server');
+))->setHelp('Sends accounting packets to the RADIUS server.');
$section->addInput(new Form_Checkbox(
'radiussecenable',
null,
'Use a Backup RADIUS Authentication Server',
$pconfig['radiussecenable']
-))->setHelp('If primary server fails all requests will be sent via backup server');
+))->setHelp('If primary server fails all requests will be sent via backup server.');
$section->addInput(new Form_IpAddress(
'radius_nasip',
@@ -462,7 +462,7 @@ $group->add(new Form_Input(
$pconfig['radiusserveracctport']
))->setHelp('Accounting port (optional)');
-$group->setHelp('Standard ports are 1812 (authentication) and 1813 (accounting)');
+$group->setHelp('Standard ports are 1812 (authentication) and 1813 (accounting).');
$section->add($group);
@@ -495,7 +495,7 @@ $group->add(new Form_Input(
$pconfig['radiusserver2acctport']
))->setHelp('Accounting port (optional)');
-$group->setHelp('Standard ports are 1812 (authentication) and 1813 (accounting)');
+$group->setHelp('Standard ports are 1812 (authentication) and 1813 (accounting).');
$section->add($group);
diff --git a/src/usr/local/www/services_snmp.php b/src/usr/local/www/services_snmp.php
index 3cd949f..51766c0 100644
--- a/src/usr/local/www/services_snmp.php
+++ b/src/usr/local/www/services_snmp.php
@@ -240,7 +240,7 @@ $section->addInput(new Form_Input(
'Polling Port',
'text',
($pconfig['pollport'] ? $pconfig['pollport']:'161')
-))->setHelp('Enter the port to accept polling events on (default 161)');
+))->setHelp('Enter the port to accept polling events on (default 161).');
$section->addInput(new Form_Input(
'syslocation',
diff --git a/src/usr/local/www/services_unbound.php b/src/usr/local/www/services_unbound.php
index b99ec69..7e40e87 100644
--- a/src/usr/local/www/services_unbound.php
+++ b/src/usr/local/www/services_unbound.php
@@ -388,7 +388,7 @@ $section->addInput(new Form_Textarea (
'custom_options',
'Custom options',
$pconfig['custom_options']
-))->setHelp('Enter any additional configuration parameters to add to the DNS Resolver configuration here, separated by a newline');
+))->setHelp('Enter any additional configuration parameters to add to the DNS Resolver configuration here, separated by a newline.');
$form->add($section);
print($form);
diff --git a/src/usr/local/www/services_unbound_advanced.php b/src/usr/local/www/services_unbound_advanced.php
index c10c478..0b4fc30 100644
--- a/src/usr/local/www/services_unbound_advanced.php
+++ b/src/usr/local/www/services_unbound_advanced.php
@@ -263,7 +263,7 @@ $section->addInput(new Form_Checkbox(
'Prefetch Support',
'Message cache elements are prefetched before they expire to help keep the cache up to date',
$pconfig['prefetch']
-))->setHelp('When enabled, this option can cause an increase of around 10% more DNS traffic and load on the server, but frequently requested items will not expire from the cache');
+))->setHelp('When enabled, this option can cause an increase of around 10% more DNS traffic and load on the server, but frequently requested items will not expire from the cache.');
$section->addInput(new Form_Checkbox(
'prefetchkey',
@@ -314,7 +314,7 @@ $section->addInput(new Form_Select(
'Number of Queries per Thread',
$pconfig['num_queries_per_thread'],
array_combine(array("512", "1024", "2048"), array("512", "1024", "2048"))
-))->setHelp('The number of queries that every thread will service simultaneously. If more queries arrive that need to be serviced, and no queries can be jostled, then these queries are dropped');
+))->setHelp('The number of queries that every thread will service simultaneously. If more queries arrive that need to be serviced, and no queries can be jostled, then these queries are dropped.');
$section->addInput(new Form_Select(
'jostle_timeout',
@@ -329,7 +329,7 @@ $section->addInput(new Form_Input(
'text',
$pconfig['cache_max_ttl']
))->setHelp('The Maximum Time to Live for RRsets and messages in the cache. The default is 86400 seconds (1 day). ' .
- 'When the internal TTL expires the cache item is expired. This can be configured to force the resolver to query for data more often and not trust (very large) TTL values');
+ 'When the internal TTL expires the cache item is expired. This can be configured to force the resolver to query for data more often and not trust (very large) TTL values.');
$section->addInput(new Form_Input(
'cache_min_ttl',
@@ -387,7 +387,7 @@ $section->addInput(new Form_Checkbox(
'Experimental Bit 0x20 Support',
'Use 0x-20 encoded random bits in the DNS query to foil spoofing attempts.',
$pconfig['use_caps']
-))->setHelp('See the implementation <a href="https://tools.ietf.org/html/draft-vixie-dnsext-dns0x20-00">draft dns-0x20</a> for more information: ');
+))->setHelp('See the implementation <a href="https://tools.ietf.org/html/draft-vixie-dnsext-dns0x20-00">draft dns-0x20</a> for more information.');
$form->add($section);
print($form);
OpenPOWER on IntegriCloud