summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/load_balancer_virtual_server_edit.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-04-04 09:29:51 -0400
committerStephen Beaver <sbeaver@netgate.com>2016-04-04 09:29:57 -0400
commit718694129cf5aec2be065efc94978cfbfd30276d (patch)
tree60e1a6ef2f3073f696ebb2e75e4a391dda832b5c /src/usr/local/www/load_balancer_virtual_server_edit.php
parent152d81c244fb8535132f0aef1d17a94c143bb2d6 (diff)
downloadpfsense-718694129cf5aec2be065efc94978cfbfd30276d.zip
pfsense-718694129cf5aec2be065efc94978cfbfd30276d.tar.gz
Merge pull request #2819 from NOYB/Services_/_Load_Balancer_-_Remove_Personalizations
(cherry picked from commit 6d105e8d5ded647dfc65cbc9625c41a3afc74a0e)
Diffstat (limited to 'src/usr/local/www/load_balancer_virtual_server_edit.php')
-rw-r--r--src/usr/local/www/load_balancer_virtual_server_edit.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/load_balancer_virtual_server_edit.php b/src/usr/local/www/load_balancer_virtual_server_edit.php
index adf1b6a..bc80cb7 100644
--- a/src/usr/local/www/load_balancer_virtual_server_edit.php
+++ b/src/usr/local/www/load_balancer_virtual_server_edit.php
@@ -120,7 +120,7 @@ if ($_POST) {
}
if (preg_match('/[ \/]/', $_POST['name'])) {
- $input_errors[] = gettext("You cannot use spaces or slashes in the 'name' field.");
+ $input_errors[] = gettext("Spaces or slashes cannot be used in the 'name' field.");
}
if (strlen($_POST['name']) > 32) {
@@ -142,7 +142,7 @@ if ($_POST) {
}
if ((strtolower($_POST['relay_protocol']) == "dns") && !empty($_POST['sitedown'])) {
- $input_errors[] = gettext("You cannot select a Fall Back Pool when using the DNS relay protocol.");
+ $input_errors[] = gettext("A Fall Back Pool cannot be selected when using the DNS relay protocol.");
}
if (!$input_errors) {
@@ -222,9 +222,9 @@ $section->addInput(new Form_IpAddress(
'ipaddr',
'IP Address',
$pconfig['ipaddr']
-))->setHelp('This is normally the WAN IP address that you would like the server to listen on. ' .
+))->setHelp('This is normally the WAN IP address for the server to listen on. ' .
'All connections to this IP and port will be forwarded to the pool cluster. ' .
- 'You may also specify a host alias listed in Firewall -&gt; Aliases here.');
+ 'A host alias listed in Firewall -&gt; Aliases may also be specified here.');
$section->addInput(new Form_Input(
'port',
@@ -233,7 +233,7 @@ $section->addInput(new Form_Input(
$pconfig['port']
))->setHelp('Port that the clients will connect to. All connections to this port will be forwarded to the pool cluster. ' .
'If left blank listening ports from the pool will be used.' .
- 'You may also specify a port alias listed in Firewall -&gt; Aliases here.');
+ 'A port alias listed in Firewall -&gt; Aliases may also be specified here.');
if (count($config['load_balancer']['lbpool']) == 0) {
$section->addInput(new Form_StaticText(
@@ -301,7 +301,7 @@ if (isset($id) && $a_vs[$id] && $_GET['act'] != 'dup') {
$form->add($section);
print($form);
-print_info_box(gettext('Don\'t forget to add a firewall rule for the virtual server/pool after you have finished setting it up.'));
+print_info_box(gettext('Don\'t forget to add a firewall rule for the virtual server/pool after finished setting it up.'));
?>
<script type="text/javascript">
//<![CDATA[
OpenPOWER on IntegriCloud