summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/diag_testport.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-04-04 09:54:08 -0400
committerStephen Beaver <sbeaver@netgate.com>2016-04-04 09:54:13 -0400
commitce8716194643adee34e474dc1813d804e55a37cb (patch)
tree7194f8126910adcebc4661ead0b1e9a91ffc2414 /src/usr/local/www/diag_testport.php
parent09cacd561f27ae50e797824d00b4b4bc1e3423bb (diff)
downloadpfsense-ce8716194643adee34e474dc1813d804e55a37cb.zip
pfsense-ce8716194643adee34e474dc1813d804e55a37cb.tar.gz
Merge pull request #2830 from NOYB/Diagnostics_-_Remove_Personalizations
(cherry picked from commit 235d9db9da3f871d6daefa4130abb8fb960a0222)
Diffstat (limited to 'src/usr/local/www/diag_testport.php')
-rw-r--r--src/usr/local/www/diag_testport.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/diag_testport.php b/src/usr/local/www/diag_testport.php
index d40960d..58444c0 100644
--- a/src/usr/local/www/diag_testport.php
+++ b/src/usr/local/www/diag_testport.php
@@ -98,10 +98,10 @@ if ($_POST || $_REQUEST['host']) {
}
if (is_ipaddrv4($_REQUEST['host']) && ($_REQUEST['ipprotocol'] == "ipv6")) {
- $input_errors[] = gettext("You cannot connect to an IPv4 address using IPv6.");
+ $input_errors[] = gettext("Cannot connect to an IPv4 address using IPv6.");
}
if (is_ipaddrv6($_REQUEST['host']) && ($_REQUEST['ipprotocol'] == "ipv4")) {
- $input_errors[] = gettext("You cannot connect to an IPv6 address using IPv4.");
+ $input_errors[] = gettext("Cannot connect to an IPv6 address using IPv4.");
}
if (!$input_errors) {
@@ -241,7 +241,7 @@ if ($input_errors) {
}
} else {
// First time, new page
- print_info_box(gettext('This page allows you to perform a simple TCP connection test to determine if a host is up and accepting connections on a given port.') . " " .
+ print_info_box(gettext('This page performs a simple TCP connection test to determine if a host is up and accepting connections on a given port.') . " " .
gettext('This test does not function for UDP since there is no way to reliably determine if a UDP port accepts connections in this manner.'), 'warning', false);
}
@@ -292,8 +292,8 @@ $section->addInput(new Form_Select(
'IP Protocol',
$ipprotocol,
array('ipv4' => 'IPv4', 'ipv6' => 'IPv6')
-))->setHelp("If you force IPv4 or IPv6 and use a hostname that does not contain a result using that protocol, it will result in an error." .
- " For example if you force IPv4 and use a hostname that only returns an AAAA IPv6 IP address, it will not work.");
+))->setHelp("If IPv4 or IPv6 is forced and a hostname is used that does not contain a result using that protocol, it will result in an error." .
+ " For example if IPv4 is forced and a hostname is used that only returns an AAAA IPv6 IP address, it will not work.");
$form->add($section);
OpenPOWER on IntegriCloud