I18n.php
authorAlan Knowles <alan@akbkhome.com>
Tue, 20 Jul 2010 03:39:46 +0000 (11:39 +0800)
committerAlan Knowles <alan@akbkhome.com>
Tue, 20 Jul 2010 03:39:46 +0000 (11:39 +0800)
I18n.php

index ced2df4..ae0b597 100644 (file)
--- a/I18n.php
+++ b/I18n.php
@@ -53,13 +53,16 @@ class Pman_Core_i18N extends Pman
     
     // these are the default languages we support.
     // they will allways be overlaid with the current configuration (via getAuth)
+    // THESE WILL ALLWAYS BE UPPERCASE!!!
     var $cfg = array(
         // translated versions availalable
+        
         't' => array(
             'en', 'zh_CN',   'zh_HK', 
         ),
         // languages available
         'l' => array(
+            
             'en', 'zh_CN',   'zh_HK',  'zh_TW', 'th', 'ko', 'ja', 'ms', 
             'id', // indonesian
             'tl', // tagalog
@@ -135,6 +138,7 @@ class Pman_Core_i18N extends Pman
                 $ret[] = '**';
                 break;
         }
+        
         foreach ($ret as $k=>$v) {
             $ret[$k] = strtoupper($v);
         }