2004-04-15 21:56:04 -04:00
|
|
|
<?php
|
2004-04-25 22:00:08 -04:00
|
|
|
$locale = '';
|
|
|
|
|
|
|
|
// WPLANG is defined in wp-config.
|
|
|
|
if (defined('WPLANG')) {
|
|
|
|
$locale = WPLANG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($locale)) {
|
|
|
|
$locale = 'en_US';
|
|
|
|
}
|
2004-04-15 21:56:04 -04:00
|
|
|
|
2004-12-12 23:39:26 -05:00
|
|
|
$locale = apply_filters('locale', $locale);
|
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
require_once(ABSPATH . 'wp-includes/streams.php');
|
|
|
|
require_once(ABSPATH . 'wp-includes/gettext.php');
|
2004-04-15 21:56:04 -04:00
|
|
|
|
|
|
|
// Return a translated string.
|
2004-10-17 22:27:35 -04:00
|
|
|
function __($text, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
return $l10n[$domain]->translate($text);
|
|
|
|
} else {
|
|
|
|
return $text;
|
|
|
|
}
|
2004-04-15 21:56:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Echo a translated string.
|
2004-10-17 22:27:35 -04:00
|
|
|
function _e($text, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
echo $l10n[$domain]->translate($text);
|
|
|
|
} else {
|
|
|
|
echo $text;
|
|
|
|
}
|
2004-04-15 21:56:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the plural form.
|
2004-10-17 22:27:35 -04: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;
|
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
if (isset($l10n[$domain])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-10-17 22:27:35 -04:00
|
|
|
if ( is_readable($mofile)) {
|
|
|
|
$input = new FileReader($mofile);
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$l10n[$domain] = new gettext_reader($input);
|
|
|
|
}
|
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
function load_default_textdomain() {
|
|
|
|
global $l10n, $locale;
|
|
|
|
|
|
|
|
$mofile = ABSPATH . "wp-includes/languages/$locale.mo";
|
|
|
|
|
|
|
|
load_textdomain('default', $mofile);
|
|
|
|
}
|
|
|
|
|
2004-10-17 22:27:35 -04:00
|
|
|
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 00:38:49 -04:00
|
|
|
$mofile = get_template_directory() . "/$locale.mo";
|
2004-10-17 22:27:35 -04:00
|
|
|
load_textdomain($domain, $mofile);
|
2004-04-15 21:56:04 -04:00
|
|
|
}
|
2004-04-17 01:01:10 -04:00
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
// Load the default domain.
|
|
|
|
load_default_textdomain();
|
|
|
|
|
2005-01-22 11:52:07 -05:00
|
|
|
require_once(ABSPATH . WPINC . '/locale.php');
|
2004-04-15 21:56:04 -04:00
|
|
|
?>
|