summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/load_balancer_virtual_server_edit.php
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-03-31 00:06:06 -0700
committerNOYB <Al_Stu@Frontier.com>2016-03-31 00:06:06 -0700
commit726c2c7be55514f4286a4d77cadf68b710009d23 (patch)
tree2723997ae1cc69994a91840c8e821593cbb55030 /src/usr/local/www/load_balancer_virtual_server_edit.php
parent83354deaa56b7dd2336b37db5b7733494015d625 (diff)
downloadpfsense-726c2c7be55514f4286a4d77cadf68b710009d23.zip
pfsense-726c2c7be55514f4286a4d77cadf68b710009d23.tar.gz
Services / Load Balancer - Remove Personalizations
Remove "you" personalizations.
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