php - Yii framework possible language -


when using easymultilanguage extension (yii framework) got code:

'params'=>array(     'languages'=>array(         'en' => 'english',         'fr' => 'french',         'ru' => 'Русский',         'de' => 'deutsche',      ),     'default_language' => 'en',     // used in contact page     'adminemail'=>'webmaster@example.com', ), 

my question how many languages yii support, , they?

actually yii supports many languages want to. if it's not included in framework, can translate yourself. included languages can in yii directory under framework/messages. that's message translations stored.

for non-framework messages (strings add yourself) you'll have specify translations via yii::app()->messages-component (this variant of cmessagesource).


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -