當前位置: 首頁>>代碼示例>>PHP>>正文


PHP I18n::translations方法代碼示例

本文整理匯總了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');
     }
 }
開發者ID:DhariniJeeva,項目名稱:berta,代碼行數:8,代碼來源:class.i18n.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;
     }
 }
開發者ID:assad2012,項目名稱:gallery3-appfog,代碼行數:30,代碼來源:I18n.php


注:本文中的I18n::translations方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。