diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:42:46 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:42:46 -0300 |
commit | 3119dcde2b4f33fceafdfd4240810e91f960bcf6 (patch) | |
tree | 65dbcec6064e4edc24c846af981b426eb09edf49 /usr/local/www/interfaces_vlan.php | |
parent | 1b42d9b6eda6fed587b0105bcab8a52e2ae53415 (diff) | |
download | pfsense-3119dcde2b4f33fceafdfd4240810e91f960bcf6.zip pfsense-3119dcde2b4f33fceafdfd4240810e91f960bcf6.tar.gz |
Fix gettext implementation on interfaces_vlan.php
Diffstat (limited to 'usr/local/www/interfaces_vlan.php')
-rwxr-xr-x | usr/local/www/interfaces_vlan.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/interfaces_vlan.php b/usr/local/www/interfaces_vlan.php index c75190f..629df99 100755 --- a/usr/local/www/interfaces_vlan.php +++ b/usr/local/www/interfaces_vlan.php @@ -122,7 +122,7 @@ include("head.inc"); <?=htmlspecialchars($vlan['descr']);?> </td> <td valign="middle" nowrap class="list"> <a href="interfaces_vlan_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a> - <a href="interfaces_vlan.php?act=del&id=<?=$i;?>" onclick="return confirm(<?=gettext("Do you really want to delete this VLAN?");?>)"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> + <a href="interfaces_vlan.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this VLAN?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> </tr> <?php $i++; endforeach; ?> <tr> @@ -131,9 +131,9 @@ include("head.inc"); </tr> <tr> <td colspan="3" class="list"><p class="vexpl"><span class="red"><strong> - <?=gettext("Note:");?><br> + <?=gettext("Note");?>:<br> </strong></span> - <?=gettext("Not all drivers/NICs support 802.1Q VLAN tagging properly. On cards that do not explicitly support it, VLAN tagging will still work, but the reduced MTU may cause problems. See the ");?><?=$g['product_name']?><?=gettext(" handbook for information on supported cards.");?> </p> + <?php printf(gettext("Not all drivers/NICs support 802.1Q VLAN tagging properly. On cards that do not explicitly support it, VLAN tagging will still work, but the reduced MTU may cause problems. See the %s handbook for information on supported cards."),$g['product_name']);?> </p> </td> <td class="list"> </td> </tr> |