Yii2翻译在错误的文件夹中查找

时间:2016-04-15 14:44:45

标签: php internationalization yii2 yii2-advanced-app

我正在使用Yii2高级模板。我已在this tutorial之后实施了翻译(i18n)并审核了this SO question。是的,我阅读了文档。

我的翻译不起作用,我在调试器中发现它正在寻找他在前端文件夹中的翻译,而不是在其中消息/提取创建翻译文件的公共文件夹:

    The message file for category 'app' does not exist: localhost/frontend/messages/es/app.php

我知道最简单的方法是将messages文件夹移动到frontend文件夹,因为我没有在后端使用翻译,但我想了解我做错了什么。

这是我的i18n文件位于common / config:

'sourcePath' => __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR,
'languages' => ['es'], //Add languages to the array for the language files to be generated.
'translator' => 'Yii::t',
'sort' => false,
'removeUnused' => false,
'only' => ['*.php'],
'except' => [
    '.svn',
    '.git',
    '.gitignore',
    '.gitkeep',
    '.hgignore',
    '.hgkeep',
    '/messages',
    '/vendor',
],
'format' => 'php',
'messagePath' => __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages',
'overwrite' => true,

这是我的常用/ config / main文件

'i18n' => [
        'translations' => [
            'frontend*' => [
                'class' => 'yii\i18n\PhpMessageSource',
                'basePath' => '@common/messages',
            ],
            'backend*' => [
                'class' => 'yii\i18n\PhpMessageSource',
                'basePath' => '@common/messages',
            ],
        ],
    ],

这是定义别名的地方(默认.common / config / bootstrap),回显@common返回common:

Yii::setAlias('@common', dirname(__DIR__));
Yii::setAlias('@frontend', dirname(dirname(__DIR__)) . '/frontend');
Yii::setAlias('@backend', dirname(dirname(__DIR__)) . '/backend');
Yii::setAlias('@console', dirname(dirname(__DIR__)) . '/console');

2 个答案:

答案 0 :(得分:3)

Your code is correct, but from the error message seems that you are calling:

Yii::t('app', '...');

Instead in your common/config/main you have declared entries for 'frontend*' and 'backend*', but not for 'app*'. So Yii will continue search inside frontend repository folder.

The common/config/main should contain (if you want to use Yii::t('app',...') ):

            'app*' => [
                'class' => 'yii\i18n\PhpMessageSource',
                'basePath' => '@common/messages',
            ],

答案 1 :(得分:1)

使用您的配置,必须使用以下方式调用翻译:

Yii::t('frontend','Frontend_string');

用于前端

Yii::t('backend','Backend_string');

用于后端内容。

请参阅tutorial

中的第6点