summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_out_edit.php
diff options
context:
space:
mode:
authorCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-08-12 09:31:04 -0300
committerCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-08-12 09:31:04 -0300
commit12fbd75b415d22c57112b4a9ce8c31b600ab1c4c (patch)
tree8c61072ebaddded32b693015df05f6a436a59b8d /usr/local/www/firewall_nat_out_edit.php
parent2ca035440f799eb6d04b3cceef134607d4e1fc8e (diff)
downloadpfsense-12fbd75b415d22c57112b4a9ce8c31b600ab1c4c.zip
pfsense-12fbd75b415d22c57112b4a9ce8c31b600ab1c4c.tar.gz
gettext() fixes on firewall_nat_out_edit.php
Diffstat (limited to 'usr/local/www/firewall_nat_out_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_out_edit.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/usr/local/www/firewall_nat_out_edit.php b/usr/local/www/firewall_nat_out_edit.php
index 01af830..6b41ceb 100755
--- a/usr/local/www/firewall_nat_out_edit.php
+++ b/usr/local/www/firewall_nat_out_edit.php
@@ -370,14 +370,14 @@ function sourcesel_change() {
<td width="78%" class="vtable">
<table border="0" cellspacing="1" cellpadding="1">
<tr>
- <td><?=gettext("Type");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Type:");?>&nbsp;&nbsp;</td>
<td>
<select name="source_type" class="formselect" onChange="sourcesel_change()">
<option value="any" <?php if ($pconfig['source'] == "any") echo "selected"; ?>><?=gettext("any");?></option>
<option value="network" <?php if ($pconfig['source'] != "any") echo "selected"; ?>><?=gettext("Network");?></option>
</select>
</td></tr>
- <td><?=gettext("Address");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Address:");?>&nbsp;&nbsp;</td>
<td><input name="source" type="text" class="formfld unknown" id="source" size="20" value="<?=htmlspecialchars($pconfig['source']);?>">/<select name="source_subnet" class="formfld" id="source_subnet">
<?php for ($i = 32; $i >= 0; $i--): ?>
<option value="<?=$i;?>"<?php if ($i == $pconfig['source_subnet']) echo " selected"; ?>><?=$i;?></option>
@@ -389,7 +389,7 @@ function sourcesel_change() {
<td><span class="vexpl"><?=gettext("Enter the source network for the outbound NAT mapping.");?></span></td>
</tr>
<tr>
- <td><?=gettext("Source port");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Source port:");?>&nbsp;&nbsp;</td>
<td><input name="sourceport" type="text" class="formfld unknown" id="sourceport" size="5" value="<?=htmlspecialchars($pconfig['sourceport']);?>"> <?=gettext("(leave
blank for any)");?></td>
</tr>
@@ -404,7 +404,7 @@ blank for any)");?></td>
<br>
<table border="0" cellspacing="1" cellpadding="1">
<tr>
- <td><?=gettext("Type");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Type:");?>&nbsp;&nbsp;</td>
<td><select name="destination_type" class="formselect" onChange="typesel_change()">
<option value="any"<?php if ($pconfig['destination'] == "any") echo " selected"; ?>>
<?=gettext("any");?></option>
@@ -413,7 +413,7 @@ blank for any)");?></td>
</select></td>
</tr>
<tr>
- <td><?=gettext("Address");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Address:");?>&nbsp;&nbsp;</td>
<td><input name="destination" type="text" class="formfld unknown" id="destination" size="20" value="<?=htmlspecialchars($pconfig['destination']);?>">
/
<select name="destination_subnet" class="formselect" id="destination_subnet">
@@ -428,7 +428,7 @@ blank for any)");?></td>
"the outbound NAT mapping.");?></span></td>
</tr>
<tr>
- <td><?=gettext("Destination port");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Destination port:");?>&nbsp;&nbsp;</td>
<td><input name="dstport" type="text" class="formfld unknown" id="dstport" size="5" value="<?=htmlspecialchars($pconfig['dstport']);?>"> <?=gettext("(leave blank for
any)");?></td>
</tr>
@@ -440,7 +440,7 @@ any)");?></td>
<td width="78%" class="vtable">
<table border="0" cellspacing="1" cellpadding="1">
<tr>
- <td><?=gettext("Address");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Address:");?>&nbsp;&nbsp;</td>
<td><select name="target" class="formselect">
<option value=""<?php if (!$pconfig['target']) echo " selected"; ?>><?=gettext("Interface address");?></option>
<?php if (is_array($config['virtualip']['vip'])):
@@ -472,14 +472,14 @@ any)");?></td>
</span>
</td></tr>
<tr>
- <td><?=gettext("Port");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Port:");?>&nbsp;&nbsp;</td>
<td><input name="natport" type="text" class="formfld unknown" id="natport" size="5" value="<?=htmlspecialchars($pconfig['natport']);?>"></td>
</tr>
<tr><td>&nbsp;</td><td>
<span class="vexpl"><?=gettext("Enter the source port for the outbound NAT mapping.");?></span>
</td></tr>
<tr>
- <td><?=gettext("Static-port");?>:&nbsp;&nbsp;</td>
+ <td><?=gettext("Static-port:");?>&nbsp;&nbsp;</td>
<td><input onChange="staticportchange();" name="staticnatport" type="checkbox" class="formfld" id="staticnatport" size="5"<?php if($pconfig['staticnatport']) echo " CHECKED";?>></td>
</tr>
</table>
OpenPOWER on IntegriCloud