fix #8131 - chinese translations
[Pman.Core] / I18n.php
1 <?php
2 /**
3  * 
4  * Either we load this as a standard array at start??
5  * eg. after login...
6  * 
7  * We basically load up all supported languages at the start of the application.
8  * 
9  * By default it returns
10  * 
11  * Pman.I18n.Data = {
12       
13       en : {
14           l :  [ { code : 'en', title : 'English' }, .... ],
15           c :  [ { code : 'UK', title : 'United Kingdom' }, .... ],
16           m :  [ { code : 'USD', title : 'US Dollars' }, .... ],
17       fr : ....
18    }
19  * 
20  * 
21  * other usage:
22  * 
23  * index.php/Pman/I18N/BuildDB -- buildes the database..
24  * .. other formats are depreciated, but are supported by the old code....
25  * 
26  * 
27  * Database language translation should be done using the database table.
28  * So sorting can be done correctly..
29  * 
30  * Configuration in index.php..
31  * 
32  *  'Pman_Core_I18N' => array(
33       'l' => array(
34             'en', 'zh_CN',   'zh_HK',  'zh_TW', 'th', 'ko', 'ja', 'ms', 
35             'id', // indonesian
36             'tl', // tagalog
37             'vi', //vietnamise
38             'hi', // hindi
39             'ta', // tamil
40             '**', // other
41         ), 
42        'c' => '*', // eg. all languages..
43        'm' => array( 'USD', 'HKD', 'GBP', 'CNY', 'SGD', 'JPY' )
44     ), 
45
46  * 
47  */
48 require_once 'Pman.php';
49
50 class Pman_Core_I18n extends Pman
51 {
52  
53     
54      
55     
56      
57     
58     
59     function getAuth()
60     {
61         parent::getAuth(); // load company!
62         //return true;
63         $au = $this->getAuthUser();
64         //if (!$au) {
65         //    $this->jerr("Not authenticated", array('authFailure' => true));
66         //}
67         $this->authUser = $au;
68         
69         $ff= HTML_FlexyFramework::get();
70          
71         
72         $opts = empty($ff->Pman_Core_I18N) ?
73                 (empty($ff->Pman_I18N) ? array() : $ff->Pman_I18N)
74                 : $ff->Pman_Core_I18N;
75         
76          
77         
78         
79         
80         return true;
81     }
82      
83     
84     function guessUsersLanguage()
85     {
86         $this->sessionState(0);
87         
88         $lang = !$this->authUser || empty($this->authUser->lang ) ? 'en' : $this->authUser->lang;
89         
90         /// verify the selected language..
91         $i = DB_DataObject::Factory('I18n');
92         $i->ltype = 'l';                           // string(1)  not_null multiple_key
93         $i->lkey = $lang;                            // string(8)  not_null
94         if (!$i->count()) {    
95             $i = DB_DataObject::Factory('I18n');
96             $i->buildDb();
97             
98             $i = DB_DataObject::Factory('I18n');
99             $i->ltype = 'l';                           // string(1)  not_null multiple_key
100             $i->lkey = $lang;  
101             if (!$i->count()) { 
102                 $this->jerr('invalid lang configured: ' . $lang);
103             }
104         }
105         
106         
107         return explode('_', $lang);
108     }
109      
110     function get($s ='', $opts=array())
111     {
112      
113         $this->sessionState(0);
114         $lbits = $this->guessUsersLanguage();
115          
116         if ($this->authUser && !empty($_REQUEST['_debug'])) {
117             DB_DataObject::debugLevel(1);
118         }
119         
120         
121         
122         $i = DB_DataObject::Factory('I18n');
123         $i->is_active = 1;
124         switch($s) {
125             case 'Lang':
126                  
127                 
128                 $i->ltype = 'l';
129                 $i->applyFilters($_REQUEST, $this->authUser, $this);
130                 $this->jdata($i->toTransList('l',  implode('_',$lbits)));
131                 break;
132
133             case 'Country':
134                 $i->ltype = 'c';
135                 $i->applyFilters($_REQUEST, $this->authUser, $this);
136                 $this->jdata($i->toTransList('c',  implode('_',$lbits)));
137                
138                 break;
139                 
140             case 'Currency':
141                 $i->ltype = 'm';
142                 $i->applyFilters($_REQUEST, $this->authUser, $this);
143                 $this->jdata($i->toTransList('m',  implode('_',$lbits)));
144                 break;
145             
146             case 'Timezone':
147                 $ar = DateTimeZone::listAbbreviations();
148                 $ret = array();
149                 $tza = array();
150                 foreach($ar as $tl => $sar) {
151                     foreach($sar as $tz) {
152                         $tza[]  = $tz['timezone_id'];
153                     
154                     }
155                 }
156                 $tza= array_unique($tza);
157                 sort($tza);
158                 foreach($tza as $tz) {
159                     //filtering..
160                     if (empty($_REQUEST['q']) ||
161                             0 === strcasecmp(
162                                     substr($tz,0, strlen($_REQUEST['q'])),
163                                     $_REQUEST['q'])
164                     ) {
165                         $ret[] = array('tz' => $tz);
166                     }
167                     
168                 }
169                 $this->jdata($ret);
170                 
171                 
172                 
173              
174                 
175         }
176         if (!empty($_REQUEST['debug'])) {
177             DB_DataObject::debugLevel(1);
178         }
179         
180         $i = DB_DataObject::Factory('I18n');
181         $i->buildDB();
182       
183        
184         $i = DB_DataObject::Factory('I18n');
185         $cfg = $i->cfg();
186         $langs = $cfg['t'];
187        // var_dump($langs);exit;
188         $ar = array();
189         foreach($langs as $lang)
190         {
191             //$rlang = array_shift(explode('_', strtoupper($lang)));
192             $ll = explode('_', $lang);
193             $rlang = array_shift($ll);
194             
195             $ar[$lang] = array();
196             $i = DB_DataObject::Factory('I18n');
197             $ar[$lang]['l'] = $i->toTransList('l',  $rlang);
198             $i = DB_DataObject::Factory('I18n');
199             $ar[$lang]['c'] =  $i->toTransList('c', $rlang);
200             $i = DB_DataObject::Factory('I18n');
201             $ar[$lang]['m'] = $i->toTransList('m', $rlang);
202         }
203         require_once 'I18Nv2/CurrencyMap.php';
204         
205         $ar['currency_map'] = I18Nv2_CurrencyMap::$s_map;
206         
207         //echo '<PRE>';print_r($ar);
208         header('Content-type: text/javascript');
209         echo "Roo.namespace('Pman.I18n');";
210         echo 'Pman.I18n.Data = ' .  json_encode($ar);
211         exit;
212         
213         
214         
215     }
216     
217  
218     
219      /**
220      * translate (used by database building);
221      * usage :
222      * require_once 'Pman/Core/I18n.php';
223      * $x = new Pman_Core_I18N();
224      * $x->translate($this->authuser, 'c', 'US');
225      * @param au - auth User
226      * @param type = 'c' or 'l'
227      * @param k - key to translate
228      * 
229      */
230      
231     function translate($au, $type, $k) 
232     {
233       
234         static $cache;
235         if (empty($k)) {
236             return '??';
237         }
238         $fo = &PEAR::getStaticProperty('HTML_Template_Flexy','options');
239         
240         $fallback_lang = empty($fo['locale']) ? 'en' : $fo['locale'];
241             
242         
243         $lang =  empty($au ) ? $fallback_lang : (is_string($au) ? $au : $au->lang);
244         
245         // does it need caching?
246         
247         $i = DB_DataObject::Factory('I18n');
248         return $i->translate($lang,$type,$k);
249         
250         
251          
252         
253         
254     }
255     /**
256      * translate a list of items
257      * @param Pman_Core_DataObjects_Person $au Authenticated user
258      * @param String                      $type  c/l/m
259      * @param String                      $k     'comma' seperated list of keys to translate
260      */
261     
262     function translateList($au, $type, $k)  
263     {
264         $ar = explode(',', $k);
265         $ret = array();
266         foreach($ar as $kk) {
267             $ret[] = $this->translate($au, $type, $kk);
268         }
269         return implode(', ', $ret);
270     }
271     /**
272      * DO NOT USE THIS -- see core_curr_rates dataobject.
273      */
274     
275     
276     function convertCurrency($val, $from, $to)
277     {
278         
279         return DB_DAtaObject::Factory('core_curr_rate')->convert($val,$from,$to);
280     
281     }
282     /**
283      * DO NOT USE THIS -- see core_curr_rates dataobject.
284      *
285      */
286     
287     
288     
289     function loadRates()
290     {   
291         static $rates = array();
292         
293         if (!empty($rates)) {
294             $this->rates = $rates;
295             return;
296         }
297         
298         $this->rates = $rates = DB_DAtaObject::Factory('core_curr_rate')->currentRates();
299         
300     }
301     
302     
303      
304     
305 }