mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
4f267012fd
git-svn-id: http://svn.automattic.com/wordpress/trunk@1086 1a063a9b-81f0-0310-95a4-ce76da25c4cd
42 lines
892 B
PHP
42 lines
892 B
PHP
<?php
|
|
$curpath = dirname(__FILE__).'/';
|
|
|
|
// The locale is hard-coded here for now.
|
|
$locale = 'en_US';
|
|
|
|
$mofile = $curpath . "/languages/$locale.mo";
|
|
|
|
require($curpath . 'streams.php');
|
|
require($curpath . 'gettext.php');
|
|
|
|
// If the mo file does not exist or is not readable, or if the locale is
|
|
// en_US, do not load the mo.
|
|
if ( is_readable($mofile) && ($locale != 'en_US') ) {
|
|
$input = new FileReader($mofile);
|
|
} else {
|
|
$input = false;
|
|
}
|
|
|
|
$l10n = new gettext_reader($input);
|
|
|
|
// Return a translated string.
|
|
function __($text) {
|
|
global $l10n;
|
|
return $l10n->translate($text);
|
|
}
|
|
|
|
// Echo a translated string.
|
|
function _e($text) {
|
|
global $l10n;
|
|
echo $l10n->translate($text);
|
|
}
|
|
|
|
// Return the plural form.
|
|
function __ngettext($single, $plural, $number) {
|
|
global $l10n;
|
|
return $l10n->ngettext($single, $plural, $number);
|
|
}
|
|
|
|
require($curpath . 'locale.php');
|
|
?>
|