diff options
-rw-r--r-- | src/usr/local/www/interfaces.php | 10 | ||||
-rw-r--r-- | src/usr/local/www/interfaces_ppps_edit.php | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/interfaces.php b/src/usr/local/www/interfaces.php index dc7814f..4a45e75 100644 --- a/src/usr/local/www/interfaces.php +++ b/src/usr/local/www/interfaces.php @@ -2454,7 +2454,7 @@ $section->addInput(new Form_Select( 'IPv6 Interface', $pconfig['track6-interface'], build_ipv6interface_list() -))->setHelp('selects the dynamic IPv6 WAN interface to track for configuration'); +))->setHelp('Selects the dynamic IPv6 WAN interface to track for configuration.'); if ($pconfig['track6-prefix-id'] == "") { $pconfig['track6-prefix-id'] = 0; @@ -2521,7 +2521,7 @@ $section->addInput(new Form_Input( 'Phone number', 'text', $pconfig['phone'] -))->setHelp('Typically *99# for GSM networks and #777 for CDMA networks'); +))->setHelp('Typically *99# for GSM networks and #777 for CDMA networks.'); $section->addInput(new Form_Input( 'apn', @@ -2561,7 +2561,7 @@ $section->addInput(new Form_Button( 'Advanced PPP', isset($pconfig['pppid']) ? 'interfaces_ppps_edit.php?id=' . htmlspecialchars($pconfig['pppid']) : 'interfaces_ppps_edit.php', 'fa-cog' -))->setAttribute('type','button')->addClass('btn-info')->setAttribute('id')->setHelp('Create a new PPP configuration'); +))->setAttribute('type','button')->addClass('btn-info')->setAttribute('id')->setHelp('Create a new PPP configuration.'); $form->add($section); @@ -2588,7 +2588,7 @@ $section->addInput(new Form_Input( 'Service name', 'text', $pconfig['provider'] -))->setHelp('This field can usually be left empty'); +))->setHelp('This field can usually be left empty.'); $section->addInput(new Form_Checkbox( 'pppoe_dialondemand', @@ -2612,7 +2612,7 @@ $section->addInput(new Form_Select( 'Periodic reset', $pconfig['pppoe-reset-type'], ['' => gettext('Disabled'), 'custom' => gettext('Custom'), 'preset' => gettext('Pre-set')] -))->setHelp('Select a reset timing type'); +))->setHelp('Select a reset timing type.'); $group = new Form_Group('Custom reset'); $group->addClass('pppoecustom'); diff --git a/src/usr/local/www/interfaces_ppps_edit.php b/src/usr/local/www/interfaces_ppps_edit.php index 2887252..70028d8 100644 --- a/src/usr/local/www/interfaces_ppps_edit.php +++ b/src/usr/local/www/interfaces_ppps_edit.php @@ -859,7 +859,7 @@ $section->addInput(new Form_Input( 'Idle Timeout', 'text', $pconfig['idletimeout'] -))->setHelp('If no incoming or outgoing packets are transmitted for the entered number of seconds the connection is brought down.' . +))->setHelp('If no incoming or outgoing packets are transmitted for the entered number of seconds the connection is brought down.' . " " . 'When the idle timeout occurs, if the dial-on-demand option is enabled, mpd goes back into dial-on-demand mode. ' . 'Otherwise, the interface is brought down and all associated routes removed.'); @@ -869,7 +869,7 @@ $section->addInput(new Form_Checkbox( 'Disable vjcomp (compression, auto-negotiated by default).', $pconfig['vjcomp'] ))->setHelp('Disable vjcomp(compression) (auto-negotiated by default).' . '<br />' . - 'This option enables Van Jacobson TCP header compression, which saves several bytes per TCP data packet.' . + 'This option enables Van Jacobson TCP header compression, which saves several bytes per TCP data packet.' . " " . 'This option is almost always required. Compression is not effective for TCP connections with enabled modern extensions like time ' . 'stamping or SACK, which modify TCP options between sequential packets.'); |