summaryrefslogtreecommitdiffstats
path: root/web/html/testpo.php
diff options
context:
space:
mode:
authoreric <eric>2004-06-19 00:42:07 +0200
committereric <eric>2004-06-19 00:42:07 +0200
commit74594e516d699a3a95a4e8112c914b9225853de7 (patch)
tree9e07a66a712c17a81873eefbf592b46ebb787cbc /web/html/testpo.php
parentd92682fbfdd9dec43939678b3c5b80c512f148d3 (diff)
downloadaur-74594e516d699a3a95a4e8112c914b9225853de7.tar.gz
aur-74594e516d699a3a95a4e8112c914b9225853de7.tar.xz
renamed _() function to __() to avoid gettext conflict
Diffstat (limited to 'web/html/testpo.php')
-rw-r--r--web/html/testpo.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/web/html/testpo.php b/web/html/testpo.php
index fbb0fa84..7f2f1d90 100644
--- a/web/html/testpo.php
+++ b/web/html/testpo.php
@@ -1,7 +1,7 @@
<?
# This is a sample script to demonstrate how the AUR will
# handle i18n. Note: When the PHP script is finished, and
-# has the proper include file (see below), and the _()
+# has the proper include file (see below), and the __()
# function has been used (see below), use the web/utils/genpopo
# script to parse the PHP script and pull out the text
# that requires translation and puts the mapping into the
@@ -15,14 +15,14 @@
include("test_po.inc");
-# Use the _() function to identify text that requires
+# Use the __() function to identify text that requires
# translation to other languages. The examples below
# show how to use %-substitution.
#
print "<html><body bgcolor='white'>\n";
print "<p>\n";
-print _("Select your language here: %h%s%h, %h%s%h, %h%s%h, %h%s%h.",
+print __("Select your language here: %h%s%h, %h%s%h, %h%s%h, %h%s%h.",
array("<a href='".$_SERVER['PHP_SELF']."?LANG=en'>","English","</a>",
"<a href='".$_SERVER['PHP_SELF']."?LANG=es'>","Espaņol","</a>",
"<a href='".$_SERVER['PHP_SELF']."?LANG=de'>","Deutsch","</a>",
@@ -30,12 +30,12 @@ print _("Select your language here: %h%s%h, %h%s%h, %h%s%h, %h%s%h.",
print "</p>\n";
print "<p>\n";
-print _("My current language tag is: '%s'.", array($LANG));
+print __("My current language tag is: '%s'.", array($LANG));
print "</p>\n";
print "<ul>\n";
-print _("Hello, world!")."<br/>\n";
-print _("Hello, again!")."<br/>\n";
+print __("Hello, world!")."<br/>\n";
+print __("Hello, again!")."<br/>\n";
print "</ul>\n";
print "</body>\n</html>";