diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:26:14 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:26:14 -0300 |
commit | 3dc62a65946c41eddd7ac89bcf35d95388bf44ac (patch) | |
tree | 4a9e98fccf5d240cfc5e676c090ecc6be46ccc48 /usr/local | |
parent | e686e4d920d1b9b7019a24d0d257074798a73350 (diff) | |
download | pfsense-3dc62a65946c41eddd7ac89bcf35d95388bf44ac.zip pfsense-3dc62a65946c41eddd7ac89bcf35d95388bf44ac.tar.gz |
Fix gettext implementation for interfaces_groups.php
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/interfaces_groups.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces_groups.php b/usr/local/www/interfaces_groups.php index 954bcf6..e893597 100755 --- a/usr/local/www/interfaces_groups.php +++ b/usr/local/www/interfaces_groups.php @@ -124,7 +124,7 @@ include("head.inc"); <table border="0" cellspacing="0" cellpadding="1"> <tr> <td valign="middle"><a href="interfaces_groups_edit.php?id=<?=$i;?>"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" title="<?=gettext("edit group");?>"></a></td> - <td><a href="interfaces_groups.php?act=del&id=<?=$i;?>" onclick="return confirm(<?=gettext("Do you really want to delete this group? All elements that still use it will become invalid (e.g. filter rules)!");?>)"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" title="<?=gettext("delete ifgroupentry");?>"></a></td> + <td><a href="interfaces_groups.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this group? All elements that still use it will become invalid (e.g. filter rules)!");?>')"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" title="<?=gettext("delete ifgroupentry");?>"></a></td> </tr> </table> </td> @@ -144,7 +144,7 @@ include("head.inc"); </tr> <tr> <td class="tabcont" colspan="3"> - <p><span class="vexpl"><span class="red"><strong><?=gettext("Note:");?><br></strong></span><?=gettext("Interface Groups allow you to create rules that apply to multiple interfaces without duplicating the rules. If you remove members from an interface group, the group rules no longer apply to that interface.");?></span></p> + <p><span class="vexpl"><span class="red"><strong><?=gettext("Note");?>:<br></strong></span><?=gettext("Interface Groups allow you to create rules that apply to multiple interfaces without duplicating the rules. If you remove members from an interface group, the group rules no longer apply to that interface.");?></span></p> </td> </tr> </table> |