diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:20:30 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:20:30 -0300 |
commit | e686e4d920d1b9b7019a24d0d257074798a73350 (patch) | |
tree | aaa9c908cd44cbb1748e5781ce782dfb9f8f5cf3 /usr/local/www/interfaces_gre.php | |
parent | b0e30881319e57c902123fa11fc0506358faa737 (diff) | |
download | pfsense-e686e4d920d1b9b7019a24d0d257074798a73350.zip pfsense-e686e4d920d1b9b7019a24d0d257074798a73350.tar.gz |
Fix gettext implementation for interfaces_gre.php
Diffstat (limited to 'usr/local/www/interfaces_gre.php')
-rw-r--r-- | usr/local/www/interfaces_gre.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces_gre.php b/usr/local/www/interfaces_gre.php index af10a52..6a9c3cf 100644 --- a/usr/local/www/interfaces_gre.php +++ b/usr/local/www/interfaces_gre.php @@ -120,7 +120,7 @@ include("head.inc"); <?=htmlspecialchars($gre['descr']);?> </td> <td valign="middle" nowrap class="list"> <a href="interfaces_gre_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a> - <a href="interfaces_gre.php?act=del&id=<?=$i;?>" onclick="return confirm(<?=gettext("Do you really want to delete this GRE tunnel?");?>)"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> + <a href="interfaces_gre.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this GRE tunnel?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> </tr> <?php $i++; endforeach; ?> <tr> @@ -129,7 +129,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("Here you can configure Generic Routing Encapsulation (GRE - RFC 2784) tunnels.");?></span></p> + <p><span class="vexpl"><span class="red"><strong><?=gettext("Note");?>:<br></strong></span><?=gettext("Here you can configure Generic Routing Encapsulation (GRE - RFC 2784) tunnels.");?></span></p> </td> </tr> </table> |