123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- error_reporting(E_ALL | E_STRICT);
- define('PROJECT_DIR', realpath('./'));
- define('LOCALE_DIR', PROJECT_DIR .'/locale');
- define('DEFAULT_LOCALE', 'en_US');
- require_once('../gettext.inc');
- $supported_locales = array('en_US', 'sr_CS', 'de_CH');
- $encoding = 'UTF-8';
- $locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE;
- T_setlocale(LC_MESSAGES, $locale);
- $domain = 'messages';
- T_bindtextdomain($domain, LOCALE_DIR);
- T_bind_textdomain_codeset($domain, $encoding);
- T_textdomain($domain);
- header("Content-type: text/html; charset=$encoding");
- ?>
- <html>
- <head>
- <title>PHP-gettext fallback example</title>
- </head>
- <body>
- <h1>PHP-gettext as a fallback solution</h1>
- <p>Example showing how to use PHP-gettext as a fallback solution if the native gettext library is not available or the system does not support the requested locale.</p>
- <?php
- print "<p>";
- foreach ($supported_locales as $l) {
- print "[<a href=\"?lang=$l\">$l</a>] ";
- }
- print "</p>\n";
- if (!locale_emulation()) {
- print "<p>locale '$locale' is supported by your system, using native gettext implementation.</p>\n";
- } else {
- print "<p>locale '$locale' is <strong>not</strong> supported on your system, using custom gettext implementation.</p>\n";
- }
- ?>
- <hr />
- <?php
- print "<pre>";
- print T_("This is how the story goes.\n\n");
- for ($number=6; $number>=0; $number--) {
- print sprintf(
- T_ngettext(
- "%d pig went to the market\n",
- "%d pigs went to the market\n",
- $number
- ),
- $number
- );
- }
- print "</pre>\n";
- ?>
- <hr />
- <p>« <a href="./">back</a></p>
- </body>
- </html>
|