2004-04-16 01:56:04 +00:00
|
|
|
<?php
|
2004-05-21 03:26:12 +00:00
|
|
|
$parentpath = dirname(dirname(__FILE__));
|
|
|
|
|
|
|
|
require_once($parentpath.'/wp-config.php');
|
|
|
|
|
2004-04-16 01:56:04 +00:00
|
|
|
$curpath = dirname(__FILE__).'/';
|
|
|
|
|
2004-04-26 02:00:08 +00:00
|
|
|
$locale = '';
|
|
|
|
|
|
|
|
// WPLANG is defined in wp-config.
|
|
|
|
if (defined('WPLANG')) {
|
|
|
|
$locale = WPLANG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($locale)) {
|
|
|
|
$locale = 'en_US';
|
|
|
|
}
|
2004-04-16 01:56:04 +00:00
|
|
|
|
2004-05-19 03:09:49 +00:00
|
|
|
$mofile = $curpath . "languages/$locale.mo";
|
2004-04-16 01:56:04 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2004-10-18 02:27:35 +00:00
|
|
|
$l10n['default'] = new gettext_reader($input);
|
2004-04-16 01:56:04 +00:00
|
|
|
|
|
|
|
// Return a translated string.
|
2004-10-18 02:27:35 +00:00
|
|
|
function __($text, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
return $l10n[$domain]->translate($text);
|
|
|
|
} else {
|
|
|
|
return $text;
|
|
|
|
}
|
2004-04-16 01:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Echo a translated string.
|
2004-10-18 02:27:35 +00:00
|
|
|
function _e($text, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
echo $l10n[$domain]->translate($text);
|
|
|
|
} else {
|
|
|
|
echo $text;
|
|
|
|
}
|
2004-04-16 01:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the plural form.
|
2004-10-18 02:27:35 +00:00
|
|
|
function __ngettext($single, $plural, $number, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
return $l10n[$domain]->ngettext($single, $plural, $number);
|
|
|
|
} else {
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_textdomain($domain, $mofile) {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if ( is_readable($mofile)) {
|
|
|
|
$input = new FileReader($mofile);
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$l10n[$domain] = new gettext_reader($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_plugin_textdomain($domain) {
|
|
|
|
global $locale;
|
|
|
|
|
|
|
|
$mofile = ABSPATH . "wp-content/plugins/$domain-$locale.mo";
|
|
|
|
load_textdomain($domain, $mofile);
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_theme_textdomain($domain) {
|
|
|
|
global $locale;
|
|
|
|
|
2004-10-18 04:38:49 +00:00
|
|
|
$mofile = get_template_directory() . "/$locale.mo";
|
2004-10-18 02:27:35 +00:00
|
|
|
load_textdomain($domain, $mofile);
|
2004-04-16 01:56:04 +00:00
|
|
|
}
|
2004-04-17 05:01:10 +00:00
|
|
|
|
|
|
|
require($curpath . 'locale.php');
|
2004-04-16 01:56:04 +00:00
|
|
|
?>
|