Yii CDbMessageSource不使用de数据库

时间:2014-04-01 20:41:44

标签: yii translation

这是我的config / main.php:

'components' => array(
    'messages' => array(
        'class' => 'CDbMessageSource',
    ),

当我执行命令时: -Yiic消息c:/ my ... files / protected / messages / config.php

return array(
'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'../..',
'messagePath'=>dirname(__FILE__),
'languages'=>array('fr','en'),
'fileTypes'=>array('php'),
'overwrite'=>true,
'exclude'=>array(
    '.git',
    '/assets',
    '/protected/migrations',
    '/protected/messages',
    '/protected/runtime',
    '/protected/extentions/gii',
    '/files',
),

);

系统保存不使用de数据库,但文件就像我使用CMessageSource ...

任何想法?

非常感谢

1 个答案:

答案 0 :(得分:0)

您没有在数组中指定de:

'languages'=>array('fr','en','de'),