Beispiel #1
0
 private function __load($path, $lang, $clear = false)
 {
     if ((bool) $clear === true || !self::$_dictionary instanceof Dictionary) {
         self::$_dictionary = new Dictionary(array());
         self::$_transliterations = array();
     }
     $include = sprintf($path, $lang);
     if (file_exists($include)) {
         require $include;
     }
     if (is_array($dictionary)) {
         self::$_dictionary->merge($dictionary);
     }
     if (is_array($transliterations)) {
         self::$_transliterations = array_merge(self::$_transliterations, $transliterations);
     }
     if (empty(self::$_transliterations)) {
         include TOOLKIT . '/include.transliterations.php';
         self::$_transliterations = $transliterations;
     }
 }
 /**
  * Load language file. Each language file contains three arrays:
  * about, dictionary and transliterations.
  *
  * @param string $path
  *	Path of the language file that should be loaded
  * @param boolean $clear
  *	True, if the current dictionary should be cleared, defaults to false
  */
 public static function load($path, $clear = false)
 {
     // Initialize or clear dictionary
     if (!self::$_dictionary instanceof Dictionary || $clear === true) {
         self::initialize();
     }
     // Load language file
     if (file_exists($path)) {
         require $path;
     }
     // Define default dates
     if (empty(self::$_dates)) {
         $dates = array('yesterday', 'today', 'tomorrow', 'now', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', 'sec', 'second', 'min', 'minute', 'hour', 'day', 'fortnight', 'forthnight', 'month', 'year', 'secs', 'seconds', 'mins', 'minutes', 'hours', 'days', 'fortnights', 'forthnights', 'months', 'years', 'weekday', 'weekdays', 'week', 'weeks', 'first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh', 'eighth', 'ninth', 'tenth', 'eleventh', 'twelfth', 'next', 'last', 'previous', 'this');
         foreach ($dates as $date) {
             self::$_dates[$date] = $date;
         }
     }
     // Merge dictionaries
     if (isset($dictionary) && is_array($dictionary)) {
         self::$_dictionary->merge($dictionary);
         // Add date translations
         foreach (self::$_dates as $key => $value) {
             self::$_dates[$key] = __($key);
         }
     }
     // Populate transliterations
     if (isset($transliterations) && is_array($transliterations)) {
         self::$_transliterations = array_merge(self::$_transliterations, $transliterations);
     }
     // Use default if no transliterations are provided with the translations
     if (empty(self::$_transliterations)) {
         include LANG . '/lang.en.php';
         self::$_transliterations = $transliterations;
     }
 }
Beispiel #3
0
 /**
  * Clear the current dictionary and transliteration arrays
  */
 public static function clear()
 {
     self::$_dictionary = new Dictionary(array());
     self::$_transliterations = array();
 }
 /**
  * Load language file. Each language file contains three arrays:
  * about, dictionary and transliterations.
  *
  * @param string $path
  *  Path of the language file that should be loaded
  */
 private static function load($path)
 {
     // Load language file
     if (file_exists($path)) {
         require $path;
     }
     // Populate dictionary ($dictionary is declared inside $path)
     if (isset($dictionary) && is_array($dictionary)) {
         self::$_dictionary = array_merge(self::$_dictionary, $dictionary);
     }
     // Populate transliterations ($transliterations is declared inside $path)
     if (isset($transliterations) && is_array($transliterations)) {
         self::$_transliterations = array_merge(self::$_transliterations, $transliterations);
     }
 }