diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/firewall_nat_1to1_edit.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/firewall_nat_edit.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/firewall_nat_out_edit.php | 4 | ||||
-rw-r--r-- | src/usr/local/www/firewall_rules_edit.php | 12 | ||||
-rw-r--r-- | src/usr/local/www/firewall_virtual_ip_edit.php | 2 |
5 files changed, 11 insertions, 11 deletions
diff --git a/src/usr/local/www/firewall_nat_1to1_edit.php b/src/usr/local/www/firewall_nat_1to1_edit.php index 6932f10..3bda4c2 100644 --- a/src/usr/local/www/firewall_nat_1to1_edit.php +++ b/src/usr/local/www/firewall_nat_1to1_edit.php @@ -408,7 +408,7 @@ $section->addInput(new Form_Checkbox( 'No BINAT (NOT)', 'Do not perform binat for the specified address', $pconfig['nobinat'] -))->setHelp('Excludes the address from a later, more general, rule'); +))->setHelp('Excludes the address from a later, more general, rule.'); $iflist = get_configured_interface_with_descr(false, true); diff --git a/src/usr/local/www/firewall_nat_edit.php b/src/usr/local/www/firewall_nat_edit.php index b39ec8e..4c076af 100644 --- a/src/usr/local/www/firewall_nat_edit.php +++ b/src/usr/local/www/firewall_nat_edit.php @@ -876,7 +876,7 @@ $group->add(new Form_Select( $group->setHelp('Specify the port on the machine with the IP address entered above. In case of a port range, specify the ' . 'beginning port of the range (the end port will be calculated automatically).' . '<br />' . - 'this is usually identical to "From port" above'); + 'This is usually identical to the "From port" above.'); $group->add(new Form_Input( 'localbeginport_cust', diff --git a/src/usr/local/www/firewall_nat_out_edit.php b/src/usr/local/www/firewall_nat_out_edit.php index 329e1fc..c713988 100644 --- a/src/usr/local/www/firewall_nat_out_edit.php +++ b/src/usr/local/www/firewall_nat_out_edit.php @@ -458,7 +458,7 @@ $section->addInput(new Form_Checkbox( 'Do not NAT', 'Enabling this option will disable NAT for traffic matching this rule and stop processing Outbound NAT rules', isset($pconfig['nonat']) -))->setHelp('In most cases this option is not required'); +))->setHelp('In most cases this option is not required.'); $iflist = get_configured_interface_with_descr(false, true); @@ -557,7 +557,7 @@ $section->addInput(new Form_Checkbox( null, 'Not', $pconfig['destination_not'] -))->setHelp('Invert the sense of the destination match'); +))->setHelp('Invert the sense of the destination match.'); $form->add($section); diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php index 9b4b63e..49d93f6 100644 --- a/src/usr/local/www/firewall_rules_edit.php +++ b/src/usr/local/www/firewall_rules_edit.php @@ -1247,7 +1247,7 @@ $section->addInput(new Form_Select( 'inet6' => 'IPv6', 'inet46' => 'IPv4+IPv6', ) -))->setHelp('Select the Internet Protocol version this rule applies to'); +))->setHelp('Select the Internet Protocol version this rule applies to.'); $section->addInput(new Form_Select( 'proto', @@ -1537,7 +1537,7 @@ $section->addInput(new Form_Input( 'Max. src. conn. Rate', 'number', $pconfig['max-src-conn-rate'] -))->setHelp('Maximum new connections per host (TCP only)'); +))->setHelp('Maximum new connections per host (TCP only).'); $section->addInput(new Form_Input( 'max-src-conn-rates', @@ -1577,7 +1577,7 @@ $section->addInput(new Form_Select( 'synproxy state' => gettext('Synproxy'), 'none' => gettext('None'), ) -))->setHelp('Select which type of state tracking mechanism to use. If in doubt, use keep state' . '<br />' . +))->setHelp('Select which type of state tracking mechanism to use. If in doubt, use keep state.' . '<br />' . '<span></span>'); $section->addInput(new Form_Checkbox( @@ -1594,14 +1594,14 @@ $section->addInput(new Form_Select( 'VLAN Prio', $pconfig['vlanprio'], $vlanprio -))->setHelp('Choose 802.1p priority to match on'); +))->setHelp('Choose 802.1p priority to match on.'); $section->addInput(new Form_Select( 'vlanprioset', 'VLAN Prio Set', $pconfig['vlanprioset'], $vlanprio -))->setHelp('Choose 802.1p priority to apply'); +))->setHelp('Choose 802.1p priority to apply.'); $schedules = array(); foreach ((array)$config['schedules']['schedule'] as $schedule) { @@ -1615,7 +1615,7 @@ $section->addInput(new Form_Select( 'Schedule', $pconfig['sched'], ['' => gettext('none')] + array_combine($schedules, $schedules) -))->setHelp('Leave as \'none\' to leave the rule enabled all the time'); +))->setHelp('Leave as \'none\' to leave the rule enabled all the time.'); $gateways = array("" => gettext('default')); foreach (return_gateways_array() as $gwname => $gw) { diff --git a/src/usr/local/www/firewall_virtual_ip_edit.php b/src/usr/local/www/firewall_virtual_ip_edit.php index 3e3c6cd..b94473c 100644 --- a/src/usr/local/www/firewall_virtual_ip_edit.php +++ b/src/usr/local/www/firewall_virtual_ip_edit.php @@ -429,7 +429,7 @@ $section->addInput(new Form_Select( 'VHID Group', $pconfig['vhid'], array_combine(range(1, 255, 1), range(1, 255, 1)) -))->setHelp('Enter the VHID group that the machines will share'); +))->setHelp('Enter the VHID group that the machines will share.'); $group = new Form_Group('Advertising frequency'); $group->add(new Form_Select( |