我有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,
];
当然,我必须混淆一些东西,但我无法找到 - 有些帮助会很好!
答案 0 :(得分:10)
您的配置看起来是正确的。我假设您的fr
文件夹中有common/messages
文件夹,用于自定义翻译。
您需要使用Yii::t('app','your_custom_word');
。
your_custom_word
应在common/messages/fr/app.php
文件中定义。