summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/wizards
diff options
context:
space:
mode:
authorNOYB <Al_Stu@Frontier.com>2016-04-07 00:07:13 -0700
committerStephen Beaver <sbeaver@netgate.com>2016-04-07 17:31:03 -0400
commit63093f51c4ccddb8964d88b81e18521de23847b0 (patch)
tree781ebefa67d62d54de86ba5d9f93ce380b9c7cb6 /src/usr/local/www/wizards
parentb8481e89343d86c0b7989ab01302a9a3f81b934a (diff)
downloadpfsense-63093f51c4ccddb8964d88b81e18521de23847b0.zip
pfsense-63093f51c4ccddb8964d88b81e18521de23847b0.tar.gz
Traffic Shaper Wizard - Remove Personalizations
Remove "you" personalizations. (cherry picked from commit a0e3dab3a64aff6045eb3acf40706aead39c306a)
Diffstat (limited to 'src/usr/local/www/wizards')
-rw-r--r--src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc24
-rw-r--r--src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml32
-rw-r--r--src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc31
-rw-r--r--src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml34
4 files changed, 61 insertions, 60 deletions
diff --git a/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc b/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
index 918e27a..030d6f3 100644
--- a/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
+++ b/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
@@ -80,7 +80,7 @@ function step1_submitphpaction() {
global $stepid, $savemsg;
if (!isset($_POST['numberofconnections'])) {
- $savemsg=gettext("You need to specify the number of connections.");
+ $savemsg=gettext("The number of connections must be specified.");
$stepid--;
return;
}
@@ -110,7 +110,7 @@ function step2_stepbeforeformdisplay() {
}
$numberofconnections = intval($config['ezshaper']['step1']['numberofconnections']);
if ($numberofconnections > ($wans < $lans ? $wans : $lans)) {
- $savemsg=gettext("You have less interfaces than number of connections!");
+ $savemsg=gettext("There are less interfaces than number of connections!");
$stepid--;
return;
}
@@ -304,7 +304,7 @@ function step2_stepsubmitphpaction() {
for ($i = 0; $i < $steps; $i++) {
for ($j = $i + 1; $j <= $steps; $j++) {
if ($_POST["conn{$i}interface"] == $_POST["conn{$j}interface"] || $_POST["conn{$i}interface"] == $_POST["local{$j}interface"]) {
- $savemsg=gettext("You cannot select the same interface for connections {$i} and {$j}.");
+ $savemsg=gettext("The same interface cannot be selected for connections {$i} and {$j}.");
$stepid--;
return;
}
@@ -322,7 +322,7 @@ function step2_stepsubmitphpaction() {
$upbw = $_POST["conn{$i}upload"];
$downbw = $_POST["conn{$i}download"];
if ($upbw < 1 || $downbw < 1) {
- $savemsg = gettext("You cannot specify bandwidth smaller than 1!");
+ $savemsg = gettext("The specified bandwidth cannot be less than 1.");
$stepid--;
return;
}
@@ -333,7 +333,7 @@ function step2_stepsubmitphpaction() {
}
}
if ($_POST["local{$i}interface"] == $_POST["conn{$j}interface"] || $_POST["local{$i}interface"] == $_POST["local{$j}interface"]) {
- $savemsg=gettext("You cannot select the same interface for local and outside.");
+ $savemsg=gettext("The same interface cannot be selected for local and outside.");
$stepid--;
return;
}
@@ -388,7 +388,7 @@ function step3_stepbeforeformdisplay() {
$field['name'] = "Provider";
$enablefields[] = "Provider";
$field['type'] = "select";
- $field['description'] = "Choose Generic if your provider isn't listed.";
+ $field['description'] = "Choose Generic if the provider isn't listed.";
$field['options']['option'] = array();
$opts = array();
$opts['name'] = "Generic (lowdelay)";
@@ -414,7 +414,7 @@ function step3_stepbeforeformdisplay() {
$field['name'] = "upstream_sip_server";
$enablefields[] = "upstream_sip_server";
$field['type'] = "inputalias";
- $field['description'] = "(Optional) If this is chosen, the provider field will be overridden. This allows you to provide the IP address of the <strong>remote</strong> PBX or SIP Trunk to prioritize. <br />NOTE: You can also use a Firewall Alias in this location.";
+ $field['description'] = "(Optional) If this is chosen, the provider field will be overridden. This allows providing the IP address of the <strong>remote</strong> PBX or SIP Trunk to prioritize. <br />NOTE: A Firewall Alias can also be used in this location.";
$field['message'] = "IP Address field is non-blank and doesn't look like an IP address.";
$field['bindstofield'] = "ezshaper->step3->address";
$voipfields[] = $field;
@@ -528,7 +528,7 @@ function step3_stepsubmitphpaction() {
}
if ($_POST["conn{$i}uploadspeed"] == "%") {
if (intval($_POST["conn{$i}upload"]) > 80) {
- $savemsg=gettext("You cannot set the VoIP upload bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP upload bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -538,7 +538,7 @@ function step3_stepsubmitphpaction() {
$factor = wizard_get_bandwidthtype_scale($_POST["conn{$i}uploadspeed"]);
$input_bw = $factor * floatval($_POST["conn{$i}upload"]);
if ((0.8 * $ifbw) < $input_bw) {
- $savemsg=gettext("You cannot set the VoIP upload bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP upload bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -553,7 +553,7 @@ function step3_stepsubmitphpaction() {
}
if ($_POST["local{$i}downloadspeed"] == "%") {
if (intval($_POST["local{$i}download"]) > 80) {
- $savemsg=gettext("You cannot set the VoIP upload bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP download bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -563,7 +563,7 @@ function step3_stepsubmitphpaction() {
$factor = wizard_get_bandwidthtype_scale($_POST["local{$i}downloadspeed"]);
$input_bw = $factor * floatval($_POST["local{$i}download"]);
if ((0.8 * $ifbw) < $input_bw) {
- $savemsg=gettext("You cannot set the VoIP download bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP download bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -593,7 +593,7 @@ function step4_stepsubmitphpaction() {
if ( $_POST['enable'] ) {
if(!$_POST['bandwidth']) {
- $savemsg="You need to specify a value for bandwidth!";
+ $savemsg="A value for bandwidth must be specified.";
$stepid--;
return;
}
diff --git a/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml b/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml
index 96cb828..d5d3423 100644
--- a/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml
+++ b/src/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml
@@ -57,7 +57,7 @@
<id>1</id>
<title>pfSense Traffic Shaper</title>
<disableheader>true</disableheader>
- <description>This wizard will guide you through setting up the pfSense traffic shaper.&lt;br/&gt;&lt;br/&gt; The wizard may be stopped at any time by clicking the logo image at the top of the screen.
+ <description>This wizard will provide guidance through setting up the pfSense traffic shaper.&lt;br/&gt;&lt;br/&gt; The wizard may be stopped at any time by clicking the logo image at the top of the screen.
&lt;br/&gt;&lt;br/&gt; Please be aware that Custom Bandwidths should not exceed 30% of the interface/link bandwidth. Keep this in mind during the wizard.
</description>
<fields>
@@ -70,7 +70,7 @@
<name>numberofconnections</name>
<type>input</type>
<validate>^[0-9]+$</validate>
- <description>Number of connections you have</description>
+ <description>Number of connections the system has</description>
<bindstofield>ezshaper->step1->numberofconnections</bindstofield>
</field>
<field>
@@ -116,7 +116,7 @@
<field>
<name>Provider</name>
<type>select</type>
- <description>Choose Generic if your provider isn't listed.</description>
+ <description>Choose Generic if the provider isn't listed.</description>
<bindstofield>ezshaper-&gt;step3-&gt;provider</bindstofield>
<options>
<option>
@@ -141,7 +141,7 @@
<displayname>Upstream SIP Server</displayname>
<name>upstream_sip_server</name>
<type>inputalias</type>
- <description>(Optional) If this is chosen, the provider field will be overridden. This allows you to provide the IP address of the &lt;strong&gt;remote&lt;/strong&gt; PBX or SIP Trunk to prioritize. &lt;br /&gt;NOTE: You can also use a Firewall Alias in this location.</description>
+ <description>(Optional) If this is chosen, the provider field will be overridden. This allows providing the IP address of the &lt;strong&gt;remote&lt;/strong&gt; PBX or SIP Trunk to prioritize. &lt;br /&gt;NOTE: A Firewall Alias can also be used in this location.</description>
<bindstofield>ezshaper-&gt;step3-&gt;address</bindstofield>
<message>IP Address field is non-blank and doesn't look like an IP address.</message>
</field>
@@ -183,7 +183,7 @@
<field>
<name>Address</name>
<type>inputalias</type>
- <description>This allows you to just provide the IP address of the computer(s) to penalize. NOTE: You can also use a Firewall Alias in this location.</description>
+ <description>This allows just providing the IP address of the computer(s) to penalize. NOTE: A Firewall Alias can also be used in this location.</description>
<bindstofield>ezshaper-&gt;step4-&gt;address</bindstofield>
<message>IP Address field is non-blank and doesn't look like an IP address.</message>
</field>
@@ -202,7 +202,7 @@
<donotdisable>true</donotdisable>
<displayname>Units</displayname>
<name>BandwidthSpeed</name>
- <description>The limit you want to apply.</description>
+ <description>The desired limit to apply.</description>
<type>select</type>
<options>
<option>
@@ -247,7 +247,7 @@
<name>Enable</name>
<type>checkbox</type>
<typehint>Lower priority of Peer-to-Peer traffic</typehint>
- <description>This will lower the priority of P2P traffic below all other traffic. Please check the items that you would like to prioritize lower than normal traffic.</description>
+ <description>This will lower the priority of P2P traffic below all other traffic. Please check the items to prioritize lower than normal traffic.</description>
<enablefields>p2pCatchAll,Bandwidth,BandwidthSpeed,Aimster,BitTorrent,BuddyShare,CuteMX,DCplusplus,dcc,DirectConnect,DirectFileExpress,EDonkey2000,FastTrack,Gnutella,grouper,hotComm,HotlineConnect,iMesh,Napster,OpenNap,Scour,Shareaza,SongSpy,WinMX</enablefields>
<bindstofield>ezshaper-&gt;step5-&gt;enable</bindstofield>
</field>
@@ -276,7 +276,7 @@
<donotdisable>true</donotdisable>
<name>BandwidthSpeed</name>
<displayname>Units</displayname>
- <description>The limit you want to apply.</description>
+ <description>The desired limit to apply.</description>
<type>select</type>
<options>
<option>
@@ -520,13 +520,13 @@
<field>
<name>Battlefield2</name>
<type>checkbox</type>
- <typehint>Battlefield 2 - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Battlefield 2 - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;battlefield2</bindstofield>
</field>
<field>
<name>Battlefield3</name>
<type>checkbox</type>
- <typehint>Battlefield 3 and 4 - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Battlefield 3 and 4 - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;battlefield3</bindstofield>
</field>
<field>
@@ -568,7 +568,7 @@
<field>
<name>DeadSpace2</name>
<type>checkbox</type>
- <typehint>Dead Space2 - this game uses a HUGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Dead Space2 - this game uses a HUGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;deadspace2</bindstofield>
</field>
<field>
@@ -616,7 +616,7 @@
<field>
<name>Everquest</name>
<type>checkbox</type>
- <typehint>Everquest - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Everquest - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;everquest</bindstofield>
</field>
<field>
@@ -658,7 +658,7 @@
<field>
<name>LeagueofLegends</name>
<type>checkbox</type>
- <typehint>League of Legends - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>League of Legends - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;leagueoflegends</bindstofield>
</field>
<field>
@@ -676,7 +676,7 @@
<field>
<name>MechwarriorOnline</name>
<type>checkbox</type>
- <typehint>MechWarrior: Online - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>MechWarrior: Online - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;mechwarrioronline</bindstofield>
</field>
<field>
@@ -718,7 +718,7 @@
<field>
<name>StarWarsTOR</name>
<type>checkbox</type>
- <typehint>StarWars: The Old Republic - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>StarWars: The Old Republic - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;starwarstor</bindstofield>
</field>
<field>
@@ -1127,7 +1127,7 @@
<value>L</value>
</option>
</options>
- <typehint>iTunes Radio - this rule uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>iTunes Radio - this rule uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
</field>
<field>
<name>StreamingMP3</name>
diff --git a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
index 8733925..959a1de 100644
--- a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
+++ b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
@@ -83,7 +83,7 @@ function step1_submitphpaction() {
global $stepid, $savemsg;
if (!isset($_POST['numberofconnections'])) {
- $savemsg=gettext("You need to specify the number of connections.");
+ $savemsg=gettext("The number of connections must be specified.");
$stepid--;
return;
}
@@ -94,7 +94,7 @@ function step1_submitphpaction() {
}
if (!isset($_POST['numberoflocalinterfaces'])) {
- $savemsg=gettext("You need to specify the number of LAN type interfaces.");
+ $savemsg=gettext("The number of LAN type interfaces must be specified.");
$stepid--;
return;
}
@@ -129,14 +129,14 @@ function step2_stepbeforeformdisplay() {
}
$numberofconnections = intval($config['ezshaper']['step1']['numberofconnections']);
if ($numberofconnections > $wans) {
- $savemsg=gettext("You have less interfaces than number of connections!");
+ $savemsg=gettext("There are less interfaces than number of connections!");
$stepid--;
return;
}
$numberoflocalinterfaces = intval($config['ezshaper']['step1']['numberoflocalinterfaces']);
if ($numberoflocalinterfaces > $lans) {
- $savemsg=gettext("You have less interfaces than number of connections!");
+ $savemsg=gettext("There are less interfaces than number of connections!");
$stepid--;
return;
}
@@ -335,7 +335,7 @@ function step2_stepsubmitphpaction() {
for ($i = 0; $i < $steps; $i++) {
for ($j = $i + 1; $j <= $steps; $j++) {
if ($_POST["conn{$i}interface"] == $_POST["conn{$j}interface"]) {
- $savemsg=gettext("You cannot select the same interface for connections {$i} and {$j}.");
+ $savemsg=gettext("The same interface cannot be selected for connections {$i} and {$j}.");
$stepid--;
return;
}
@@ -353,7 +353,7 @@ function step2_stepsubmitphpaction() {
$upbw = $_POST["conn{$i}upload"];
$downbw = $_POST["conn{$i}download"];
if ($upbw < 1 || $downbw < 1) {
- $savemsg = gettext("You cannot specify 0 bandwidth!");
+ $savemsg = gettext("The specified bandwidth cannot be less than 1.");
$stepid--;
return;
}
@@ -366,7 +366,7 @@ function step2_stepsubmitphpaction() {
}
for ($j = 0; $j < $localint; $j++) {
if ($_POST["conn{$i}interface"] == $_POST["local{$j}interface"]) {
- $savemsg=gettext("You cannot select the same interface for local and outside.");
+ $savemsg=gettext("The same interface cannot be selected for local and outside.");
$stepid--;
return;
}
@@ -375,7 +375,7 @@ function step2_stepsubmitphpaction() {
for ($i = 0; $i < $localint; $i++) {
for ($j = $i + 1; $j < $localint; $j++) {
if ($_POST["local{$i}interface"] == $_POST["local{$j}interface"]) {
- $savemsg=gettext("You cannot select the same interface twice on local interfaces.");
+ $savemsg=gettext("The same interface cannot be selected twice on local interfaces.");
$stepid--;
return;
}
@@ -433,7 +433,7 @@ function step3_stepbeforeformdisplay() {
$field['name'] = "Provider";
$enablefields[] = "Provider";
$field['type'] = "select";
- $field['description'] = "Choose Generic if your provider isn't listed.";
+ $field['description'] = "Choose Generic if the provider isn't listed.";
$field['options']['option'] = array();
$opts = array();
$opts['name'] = "Generic (lowdelay)";
@@ -459,7 +459,7 @@ function step3_stepbeforeformdisplay() {
$field['name'] = "upstream_sip_server";
$enablefields[] = "upstream_sip_server";
$field['type'] = "inputalias";
- $field['description'] = "(Optional) If this is chosen, the provider field will be overridden. This allows you to provide the IP address of the <strong>remote</strong> PBX or SIP Trunk to prioritize. <br />NOTE: You can also use a Firewall Alias in this location.";
+ $field['description'] = "(Optional) If this is chosen, the provider field will be overridden. This allows providing the IP address of the <strong>remote</strong> PBX or SIP Trunk to prioritize. <br />NOTE: A Firewall Alias can also be used in this location.";
$field['message'] = "IP Address field is non-blank and doesn't look like an IP address.";
$field['bindstofield'] = "ezshaper->step3->address";
$voipfields[] = $field;
@@ -582,7 +582,7 @@ function step3_stepsubmitphpaction() {
}
if ($_POST["conn{$i}uploadspeed"] == "%") {
if (intval($_POST["conn{$i}upload"]) > 80) {
- $savemsg=gettext("You cannot set the VoIP upload bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP upload bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -592,7 +592,7 @@ function step3_stepsubmitphpaction() {
$factor = wizard_get_bandwidthtype_scale($_POST["conn{$i}uploadspeed"]);
$input_bw = $factor * floatval($_POST["conn{$i}upload"]);
if ((0.8 * $ifbw) < $input_bw) {
- $savemsg=gettext("You cannot set the VoIP upload bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP upload bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -610,7 +610,7 @@ function step3_stepsubmitphpaction() {
}
if ($_POST["local{$i}downloadspeed"] == "%") {
if (intval($_POST["local{$i}download"]) > 80) {
- $savemsg=gettext("You cannot set the VoIP download bandwidth on connection {$i} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP download bandwidth on connection {$i} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -621,7 +621,7 @@ function step3_stepsubmitphpaction() {
$factor = wizard_get_bandwidthtype_scale($_POST["local{$i}downloadspeed"]);
$input_bw = $factor * floatval($_POST["local{$i}download"]);
if ((0.8 * $ifbw) < $input_bw) {
- $savemsg=gettext("You cannot set the VoIP download bandwidth on connection {$j} higher than 80% of the connection.");
+ $savemsg=gettext("The VoIP download bandwidth on connection {$j} cannot be set higher than 80% of the connection.");
$stepid--;
return;
}
@@ -660,7 +660,8 @@ function step4_stepsubmitphpaction() {
if ( $_POST['enable'] ) {
if(!$_POST['bandwidth']) {
- $savemsg="You need to specify a value for bandwidth!";
+ $savemsg="A value for bandwidth must be specified.";
+
$stepid--;
return;
}
diff --git a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml
index f49138c..f456474 100644
--- a/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml
+++ b/src/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml
@@ -57,7 +57,7 @@
<id>1</id>
<title>pfSense Traffic Shaper</title>
<disableheader>true</disableheader>
- <description>This wizard will guide you through setting up the pfSense traffic shaper. &lt;br/&gt;&lt;br/&gt; The wizard may be stopped at any time by clicking the logo image at the top of the screen.
+ <description>This wizard will provide guidance through setting up the pfSense traffic shaper. &lt;br/&gt;&lt;br/&gt; The wizard may be stopped at any time by clicking the logo image at the top of the screen.
&lt;br/&gt;&lt;br/&gt; Please be aware that Custom Bandwidths should not exceed 30% of the interface/link bandwidth. Keep this in mind during the wizard.
</description>
<fields>
@@ -70,7 +70,7 @@
<name>numberofconnections</name>
<type>input</type>
<validate>^[0-9]+$</validate>
- <description>Number of connections you have</description>
+ <description>Number of connections the system has</description>
<bindstofield>ezshaper->step1->numberofconnections</bindstofield>
</field>
<field>
@@ -78,7 +78,7 @@
<name>numberoflocalinterfaces</name>
<type>input</type>
<validate>^[0-9]+$</validate>
- <description>Number of local interfaces you have</description>
+ <description>Number of local interfaces the system has</description>
<bindstofield>ezshaper->step1->numberoflocalinterfaces</bindstofield>
</field>
<field>
@@ -128,7 +128,7 @@
<field>
<name>Provider</name>
<type>select</type>
- <description>Choose Generic if your provider isn't listed.</description>
+ <description>Choose Generic if the provider isn't listed.</description>
<bindstofield>ezshaper-&gt;step3-&gt;provider</bindstofield>
<options>
<option>
@@ -153,7 +153,7 @@
<displayname>Upstream SIP Server</displayname>
<name>upstream_sip_server</name>
<type>inputalias</type>
- <description>(Optional) If this is chosen, the provider field will be overridden. This allows you to provide the IP address of the &lt;strong&gt;remote&lt;/strong&gt; PBX or SIP Trunk to prioritize. &lt;br /&gt;NOTE: You can also use a Firewall Alias in this location.</description>
+ <description>(Optional) If this is chosen, the provider field will be overridden. This allows providing the IP address of the &lt;strong&gt;remote&lt;/strong&gt; PBX or SIP Trunk to prioritize. &lt;br /&gt;NOTE: A Firewall Alias can also be used in this location.</description>
<bindstofield>ezshaper-&gt;step3-&gt;address</bindstofield>
<message>IP Address field is non-blank and doesn't look like an IP address.</message>
</field>
@@ -191,7 +191,7 @@
<field>
<name>Address</name>
<type>inputalias</type>
- <description>This allows you to just provide the IP address of the computer(s) to penalize. NOTE: You can also use a Firewall Alias in this location.</description>
+ <description>This allows just providing the IP address of the computer(s) to penalize. NOTE: A Firewall Alias can also be used in this location.</description>
<bindstofield>ezshaper-&gt;step4-&gt;address</bindstofield>
<message>IP Address field is non-blank and doesn't look like an IP address.</message>
</field>
@@ -209,7 +209,7 @@
<dontcombinecells>true</dontcombinecells>
<donotdisable>true</donotdisable>
<name>BandwidthSpeed</name>
- <description>The limit you want to apply.</description>
+ <description>The desired limit to apply.</description>
<type>select</type>
<options>
<option>
@@ -254,7 +254,7 @@
<name>Enable</name>
<type>checkbox</type>
<typehint>Lower priority of Peer-to-Peer traffic</typehint>
- <description>This will lower the priority of P2P traffic below all other traffic. Please check the items that you would like to prioritize lower than normal traffic.</description>
+ <description>This will lower the priority of P2P traffic below all other traffic. Please check the items to prioritize lower than normal traffic.</description>
<enablefields>p2pCatchAll,Bandwidth,BandwidthSpeed,Aimster,BitTorrent,BuddyShare,CuteMX,DCplusplus,dcc,DirectConnect,DirectFileExpress,EDonkey2000,FastTrack,Gnutella,grouper,hotComm,HotlineConnect,iMesh,Napster,OpenNap,Scour,Shareaza,SongSpy,WinMX</enablefields>
<bindstofield>ezshaper-&gt;step5-&gt;enable</bindstofield>
</field>
@@ -282,7 +282,7 @@
<dontcombinecells>true</dontcombinecells>
<donotdisable>true</donotdisable>
<name>BandwidthSpeed</name>
- <description>The limit you want to apply.</description>
+ <description>The desired limit to apply.</description>
<type>select</type>
<options>
<option>
@@ -526,13 +526,13 @@
<field>
<name>Battlefield2</name>
<type>checkbox</type>
- <typehint>Battlefield 2 - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Battlefield 2 - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;battlefield2</bindstofield>
</field>
<field>
<name>Battlefield3</name>
<type>checkbox</type>
- <typehint>Battlefield 3 and 4 - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Battlefield 3 and 4 - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;battlefield3</bindstofield>
</field>
<field>
@@ -574,7 +574,7 @@
<field>
<name>DeadSpace2</name>
<type>checkbox</type>
- <typehint>Dead Space2 - this game uses a HUGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Dead Space2 - this game uses a HUGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;deadspace2</bindstofield>
</field>
<field>
@@ -622,7 +622,7 @@
<field>
<name>Everquest</name>
<type>checkbox</type>
- <typehint>Everquest - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>Everquest - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;everquest</bindstofield>
</field>
<field>
@@ -664,7 +664,7 @@
<field>
<name>LeagueofLegends</name>
<type>checkbox</type>
- <typehint>League of Legends - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>League of Legends - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;leagueoflegends</bindstofield>
</field>
<field>
@@ -682,7 +682,7 @@
<field>
<name>MechwarriorOnline</name>
<type>checkbox</type>
- <typehint>MechWarrior: Online - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>MechWarrior: Online - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;mechwarrioronline</bindstofield>
</field>
<field>
@@ -724,7 +724,7 @@
<field>
<name>StarWarsTOR</name>
<type>checkbox</type>
- <typehint>StarWars: The Old Republic - this game uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>StarWars: The Old Republic - this game uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
<bindstofield>ezshaper-&gt;step6-&gt;starwarstor</bindstofield>
</field>
<field>
@@ -1133,7 +1133,7 @@
<value>L</value>
</option>
</options>
- <typehint>iTunes Radio - this rule uses a LARGE port range, be aware that you may need to manually rearrange the resulting rules to correctly prioritize other traffic.</typehint>
+ <typehint>iTunes Radio - this rule uses a LARGE port range, be aware that the resulting rules may need to be manually rearranged to correctly prioritize other traffic.</typehint>
</field>
<field>
<name>StreamingMP3</name>
OpenPOWER on IntegriCloud