renamed _() function to __() to avoid gettext conflict

This commit is contained in:
eric 2004-06-18 22:42:07 +00:00
parent d92682fbfd
commit 74594e516d
9 changed files with 145 additions and 19 deletions

View file

@ -4,10 +4,10 @@ include("index_po.inc"); # use some form of this for i18n support
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 'testpo.php' for more details.
#
print _("Hi, this is worth reading!")."<br/>\n";
print __("Hi, this is worth reading!")."<br/>\n";
html_footer("\$Id$"); # Use the $Id$ keyword