在使用YII创建新站点后,我在protected/messages中添加了一个文件夹'fr',并添加了一个文件'site.php',其中包含:
return array('hello'=>'bonjour');
在view/layout/main.php中,我添加了以下代码:
<?php
// I change the language to english and french using session.
// This is just for example.
Yii::app()->language = 'fr';
// I also used Yii::app()->setLanguage('fr');
echo Yii::t('site','hello');
?>
Run Code Online (Sandbox Code Playgroud)
但语言没有翻译.我错在哪里.请建议