diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-11-03 21:52:07 -0500 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-11-03 21:52:07 -0500 |
commit | a6147ab5ab297728adefdb97aaeedc93114b896d (patch) | |
tree | 49b508439ab2aa0cf4bd039d3b2d2d53e8860df0 /web/html/testpo.php | |
parent | c85dfacc747387b9be6c53b4518ac680b505e0f7 (diff) | |
parent | 100451a9665cb387eeae2cb06cc22870cfd57c82 (diff) | |
download | aurweb-a6147ab5ab297728adefdb97aaeedc93114b896d.tar.xz |
Merge branch 'testing'
Conflicts:
web/html/pkgsubmit.php
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/html/testpo.php')
-rw-r--r-- | web/html/testpo.php | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/web/html/testpo.php b/web/html/testpo.php deleted file mode 100644 index a8a6337..0000000 --- a/web/html/testpo.php +++ /dev/null @@ -1,45 +0,0 @@ -<?php - -set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang'); - -# 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 __() -# 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 -# include file. -# - -# Each AUR PHP script that requires i18n support, needs to -# define an 'xxx_po.inc' file where the i18n mapping will -# reside. -# -include("test_po.inc"); - - -# 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.", - 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>", - "<a href='".$_SERVER['PHP_SELF']."?LANG=fr'>","Français","</a>")); -print "</p>\n"; - -print "<p>\n"; -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 "</ul>\n"; -print "</body>\n</html>"; - -?> |