From 58907e0bffb5a7d2d0bfc05cec28f366432bb3e8 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 22 Jun 2011 20:57:07 +0200 Subject: use php's gettext module Signed-off-by: Florian Pritz --- web/template/template.phps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/template/template.phps') diff --git a/web/template/template.phps b/web/template/template.phps index 841277b8..8f112967 100644 --- a/web/template/template.phps +++ b/web/template/template.phps @@ -10,10 +10,10 @@ check_sid(); # see if they're still logged in html_header(); # print out the HTML header -# Any text you print out to the visitor, use the __() function +# Any text you print out to the visitor, use the _() function # for i18n support. See web/lib/translator.inc.php for more info. # -print __("Hi, this is worth reading!")."
\n"; +print _("Hi, this is worth reading!")."
\n"; html_footer(AUR_VERSION); -- cgit v1.2.3-24-g4f1b