diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-08-10 11:27:39 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-08-10 11:27:39 -0300 |
commit | 30ee6258919a92935af59f4fa687b3dfd35f3eb6 (patch) | |
tree | cac820008c5a1605dc156763a74fe7581e283ebd /usr/local/www | |
parent | 58c550f6dd211587ef7dff5caac0963e72446e6b (diff) | |
download | pfsense-30ee6258919a92935af59f4fa687b3dfd35f3eb6.zip pfsense-30ee6258919a92935af59f4fa687b3dfd35f3eb6.tar.gz |
Fixing gettext calls on license.php
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/license.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/license.php b/usr/local/www/license.php index 2bd699b..990a31b 100755 --- a/usr/local/www/license.php +++ b/usr/local/www/license.php @@ -150,10 +150,10 @@ include("head.inc"); Peter Curran (<a href="mailto:peter@closeconsultants.com">peter@closeconsultants.com</a>)<br> <em><font color="#666666"><?=gettext("OpenVPN support");?></font></em></p> <hr size="1"> - <p>{$g['product_name']} <?=gettext("is based upon/includes various free software packages, ". + <p><?= "{$g['product_name']} " . gettext("is based upon/includes various free software packages, ". "listed below.");?><br> - <?=gettext("The author of ");?>{$g['product_name']}<?=gettext(" would like to thank the authors of these " . - "software packages for their efforts");?>.</p> + <?php printf(gettext("The author of %s would like to thank the authors of these " . + "software packages for their efforts"),$g['product_name']);?>.</p> <p>FreeBSD (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br> <?=gettext("Copyright");?> ©<?=gettext(" 1994-2003 FreeBSD, Inc. All rights reserved");?>.<br> <br> |