本文整理汇总了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;
}
}