mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
036efdfdc2
git-svn-id: http://svn.automattic.com/wordpress/trunk@1941 1a063a9b-81f0-0310-95a4-ce76da25c4cd
98 lines
1.8 KiB
PHP
98 lines
1.8 KiB
PHP
<?php
|
|
$parentpath = dirname(dirname(__FILE__));
|
|
|
|
require_once($parentpath.'/wp-config.php');
|
|
|
|
$locale = '';
|
|
|
|
// WPLANG is defined in wp-config.
|
|
if (defined('WPLANG')) {
|
|
$locale = WPLANG;
|
|
}
|
|
|
|
if (empty($locale)) {
|
|
$locale = 'en_US';
|
|
}
|
|
|
|
$locale = apply_filters('locale', $locale);
|
|
|
|
require_once(ABSPATH . 'wp-includes/streams.php');
|
|
require_once(ABSPATH . 'wp-includes/gettext.php');
|
|
|
|
// Return a translated string.
|
|
function __($text, $domain = 'default') {
|
|
global $l10n;
|
|
|
|
if (isset($l10n[$domain])) {
|
|
return $l10n[$domain]->translate($text);
|
|
} else {
|
|
return $text;
|
|
}
|
|
}
|
|
|
|
// Echo a translated string.
|
|
function _e($text, $domain = 'default') {
|
|
global $l10n;
|
|
|
|
if (isset($l10n[$domain])) {
|
|
echo $l10n[$domain]->translate($text);
|
|
} else {
|
|
echo $text;
|
|
}
|
|
}
|
|
|
|
// Return the plural form.
|
|
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 (isset($l10n[$domain])) {
|
|
return;
|
|
}
|
|
|
|
if ( is_readable($mofile)) {
|
|
$input = new FileReader($mofile);
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
$l10n[$domain] = new gettext_reader($input);
|
|
}
|
|
|
|
function load_default_textdomain() {
|
|
global $l10n, $locale;
|
|
|
|
$mofile = ABSPATH . "wp-includes/languages/$locale.mo";
|
|
|
|
load_textdomain('default', $mofile);
|
|
}
|
|
|
|
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;
|
|
|
|
$mofile = get_template_directory() . "/$locale.mo";
|
|
load_textdomain($domain, $mofile);
|
|
}
|
|
|
|
// Load the default domain.
|
|
load_default_textdomain();
|
|
|
|
require($curpath . 'locale.php');
|
|
?>
|