Yii2翻译

时间:2015-03-09 20:35:34

标签: internationalization yii2

我有Yii2 - 高级模板 我保持源语言英语 目标语言是法语 系统消息翻译如下: Yii :: t(' yii','更新')已翻译成"修饰符"

但是我的所有自定义翻译都不起作用 - 这就是我所做的:

已修改:backend \ config \ main.php:

    'i18n' => [
        'translations' => [
            'app*' => [
                'class' => 'yii\i18n\PhpMessageSource',
                'basePath' => '@common/messages',
                'sourceLanguage' => 'en-US',
                'fileMap' => [
                    'app' => 'app.php',
                    'app/error' => 'error.php',
                ],
            ],
        ],
    ],
],
'language' => 'fr',

created:common \ config \ i18n.php

<?php
return [
    'sourcePath' => __DIR__. '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR,
    'languages' => ['fr-FR','en-EN'], //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,
];

当然,我必须混淆一些东西,但我无法找到 - 有些帮助会很好!

1 个答案:

答案 0 :(得分:10)

您的配置看起来是正确的。我假设您的fr文件夹中有common/messages文件夹,用于自定义翻译。

您需要使用Yii::t('app','your_custom_word');

your_custom_word应在common/messages/fr/app.php文件中定义。