Change language in YII

后端 未结 3 1210
借酒劲吻你
借酒劲吻你 2021-01-23 02:47

After creating a new site with YII, I added a folder \'fr\' in protected/messages and added a file \'site.php\' which contains:

return array(\'hello\' =>

3条回答
  •  灰色年华
    2021-01-23 03:17

    You forgot to set source language.

    Into config:

    return array(
       'sourceLanguage'=>'en',
    ),
    

    Or app:

    Yii::app()->sourceLanguage = 'en';
    

提交回复
热议问题