diff options
author | Seth Mos <seth.mos@xs4all.nl> | 2007-04-25 20:34:27 +0000 |
---|---|---|
committer | Seth Mos <seth.mos@xs4all.nl> | 2007-04-25 20:34:27 +0000 |
commit | 53bf5f1d4a1b4f41ec73d0f3214b40cb81f0bf3f (patch) | |
tree | 1b5318896e025a6c1686f82c9a6ff9667fc8d251 /usr/local | |
parent | bdee20c620f29a193b17cbfbd924e8d60409989d (diff) | |
download | pfsense-53bf5f1d4a1b4f41ec73d0f3214b40cb81f0bf3f.zip pfsense-53bf5f1d4a1b4f41ec73d0f3214b40cb81f0bf3f.tar.gz |
Alter outbound nat descriptions to match operation
MFC: Soon?
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_nat_out.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/firewall_nat_out.php b/usr/local/www/firewall_nat_out.php index 55d273d..6bc7610 100755 --- a/usr/local/www/firewall_nat_out.php +++ b/usr/local/www/firewall_nat_out.php @@ -62,7 +62,7 @@ if ($_POST['apply']) { if (isset($_POST['save']) && $_POST['save'] == "Save") { - /* mutually exclusive settings - if user wants advanced NAT, we don't help with IPSec */ + /* mutually exclusive settings - if user wants advanced NAT, we don't generate automatic rules */ switch ($_POST['advancedoripsec']) { case "ipsecpassthru": $config['nat']['ipsecpassthru']['enable'] = true; @@ -205,13 +205,13 @@ include("head.inc"); <tr> <td class="vtable"><p> <input name="advancedoripsec" type="radio" id="ipsecpassthru" value="ipsecpassthru" <?php if (isset($config['nat']['ipsecpassthru']['enable'])) echo "checked";?>> - <strong>Enable IPSec passthru</strong></p> + <strong><?=gettext("Automatic outbound NAT rule generation (IPSEC passthrough)");?></strong></p> </td> </tr> <tr> <td class="vtable"><p> <input name="advancedoripsec" type="radio" id="advancedoutbound" value="advancedoutboundnat" <?php if (isset($config['nat']['advancedoutbound']['enable'])) echo "checked";?>> - <strong>Enable advanced outbound NAT</strong></p></td> + <strong><?=gettext("Manual Outbound NAT rule generation (Advanced Outbound NAT (AON))");?></strong></p></td> </tr> <tr> <td> <input name="save" type="submit" class="formbtn" value="Save"> |