本文整理匯總了PHP中I18n::translations方法的典型用法代碼示例。如果您正苦於以下問題:PHP I18n::translations方法的具體用法?PHP I18n::translations怎麽用?PHP I18n::translations使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類I18n
的用法示例。
在下文中一共展示了I18n::translations方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: load_language
public static function load_language($lang = null)
{
if ($lang && file_exists(self::$options['ENGINE_ROOT'] . 'lang/' . $lang . '.php')) {
self::$translations = (include self::$options['ENGINE_ROOT'] . 'lang/' . $lang . '.php');
} elseif (file_exists(self::$options['ENGINE_ROOT'] . 'lang/' . self::default_lang . '.php')) {
self::$translations = (include self::$options['ENGINE_ROOT'] . 'lang/' . self::default_lang . '.php');
}
}
示例2: get_text
/**
*
* Translates $string into language I18n::$locale and caches all found translations on the first call
*
* @return The translated String
* @param string $string The String to translate
*/
public static function get_text($string)
{
if (!I18n::$translations) {
$locale = explode('_', I18n::get_locale(FALSE));
// Get the translation files
$translation_files = Kohana::find_file('i18n', $locale[0]);
if ($local_translation_files = Kohana::find_file('i18n', $locale[0] . '/' . $locale[1])) {
$translation_files = array_merge($translation_files, $local_translation_files);
}
if ($translation_files) {
// Merge the translations
foreach ($translation_files as $file) {
include $file;
I18n::$translations = array_merge(I18n::$translations, $translations);
}
}
}
if (isset(I18n::$translations[$string])) {
return I18n::$translations[$string];
} else {
return $string;
}
}