2004-04-15 21:56:04 -04:00
|
|
|
<?php
|
2005-01-29 18:17:10 -05:00
|
|
|
function get_locale() {
|
|
|
|
global $locale;
|
2004-04-25 22:00:08 -04:00
|
|
|
|
2005-01-29 18:17:10 -05:00
|
|
|
if (isset($locale))
|
2006-12-03 16:09:24 -05:00
|
|
|
return apply_filters( 'locale', $locale );
|
2005-01-29 18:17:10 -05:00
|
|
|
|
|
|
|
// WPLANG is defined in wp-config.
|
2006-01-10 17:53:40 -05:00
|
|
|
if (defined('WPLANG'))
|
|
|
|
$locale = WPLANG;
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2006-01-10 17:53:40 -05:00
|
|
|
if (empty($locale))
|
2007-01-18 12:40:05 -05:00
|
|
|
$locale = '';
|
2004-04-15 21:56:04 -04:00
|
|
|
|
2005-01-29 18:17:10 -05:00
|
|
|
$locale = apply_filters('locale', $locale);
|
2004-12-12 23:39:26 -05:00
|
|
|
|
2005-01-29 18:17:10 -05:00
|
|
|
return $locale;
|
|
|
|
}
|
2004-04-15 21:56:04 -04:00
|
|
|
|
2006-11-19 02:56:05 -05:00
|
|
|
// Return a translated string.
|
2004-10-17 22:27:35 -04:00
|
|
|
function __($text, $domain = 'default') {
|
|
|
|
global $l10n;
|
|
|
|
|
2006-01-10 17:53:40 -05:00
|
|
|
if (isset($l10n[$domain]))
|
|
|
|
return apply_filters('gettext', $l10n[$domain]->translate($text), $text);
|
|
|
|
else
|
2004-10-17 22:27:35 -04:00
|
|
|
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;
|
|
|
|
|
2006-01-10 17:53:40 -05:00
|
|
|
if (isset($l10n[$domain]))
|
|
|
|
echo apply_filters('gettext', $l10n[$domain]->translate($text), $text);
|
|
|
|
else
|
2004-10-17 22:27:35 -04:00
|
|
|
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 {
|
2005-03-17 13:15:18 -05:00
|
|
|
if ($number != 1)
|
|
|
|
return $plural;
|
|
|
|
else
|
|
|
|
return $single;
|
2004-10-17 22:27:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_textdomain($domain, $mofile) {
|
|
|
|
global $l10n;
|
|
|
|
|
2006-01-10 17:53:40 -05:00
|
|
|
if (isset($l10n[$domain]))
|
2004-10-18 20:18:12 -04:00
|
|
|
return;
|
|
|
|
|
2006-01-10 17:53:40 -05:00
|
|
|
if ( is_readable($mofile))
|
|
|
|
$input = new CachedFileReader($mofile);
|
|
|
|
else
|
2004-10-17 22:27:35 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
$l10n[$domain] = new gettext_reader($input);
|
|
|
|
}
|
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
function load_default_textdomain() {
|
2005-01-29 18:17:10 -05:00
|
|
|
global $l10n;
|
2004-10-18 20:18:12 -04:00
|
|
|
|
2005-01-29 18:17:10 -05:00
|
|
|
$locale = get_locale();
|
2007-01-18 12:40:05 -05:00
|
|
|
if ( empty($locale) )
|
|
|
|
$locale = 'en_US';
|
|
|
|
|
2006-09-21 16:46:39 -04:00
|
|
|
$mofile = ABSPATH . LANGDIR . "/$locale.mo";
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2004-10-18 20:18:12 -04:00
|
|
|
load_textdomain('default', $mofile);
|
|
|
|
}
|
|
|
|
|
2006-09-21 16:46:39 -04:00
|
|
|
function load_plugin_textdomain($domain, $path = false) {
|
2005-01-29 18:17:10 -05:00
|
|
|
$locale = get_locale();
|
2007-01-18 12:40:05 -05:00
|
|
|
if ( empty($locale) )
|
|
|
|
$locale = 'en_US';
|
|
|
|
|
2006-09-21 16:46:39 -04:00
|
|
|
if ( false === $path )
|
|
|
|
$path = PLUGINDIR;
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-09-16 18:30:03 -04:00
|
|
|
$mofile = ABSPATH . "$path/$domain-$locale.mo";
|
2004-10-17 22:27:35 -04:00
|
|
|
load_textdomain($domain, $mofile);
|
|
|
|
}
|
|
|
|
|
|
|
|
function load_theme_textdomain($domain) {
|
2005-01-29 18:17:10 -05:00
|
|
|
$locale = get_locale();
|
2007-01-18 12:40:05 -05:00
|
|
|
if ( empty($locale) )
|
|
|
|
$locale = 'en_US';
|
2006-02-12 02:53:23 -05:00
|
|
|
|
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
|
|
|
|
2006-09-21 16:46:39 -04:00
|
|
|
?>
|