我正在尝试将多语言功能添加到我在俄语中找到的模块中,但是当我尝试实现它可能是配置时,我遇到了问题,不确定。
我正在进行文本替换,正如我在应用程序中所做的那样:
'department'=> Yii :: t('app','Departament'),
然后我使用message命令生成了翻译文件,到目前为止一切正常,我得到了正确的结构:
vendor/rico/yii2-ticket/messages/en/app.php
vendor/rico/yii2-ticket/messages/es/app.php
然后我在yii2-ticket模块文件的init中添加了一个函数:
public function init() {
User::$user = ($this->userModel !== false) ? $this->userModel : Yii::$app->user->identityClass;
parent::init();
$this->registerTranslations();
}
/**
* Registration of translation class.
*/
protected function registerTranslations()
{
Yii::$app->i18n->translations['ricco/ticket'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en',
'basePath' => '@ricco/ticket/messages',
'fileMap' => [
'ricco/ticket' => 'app.php',
],
];
}
我在基于高级应用程序的yii2应用程序中使用此模块,在配置文件中我有以下内容:
$config = [
'name' => 'London Literary Scouts',
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'extensions' => require(__DIR__ . '/../../vendor/yiisoft/extensions.php'),
'sourceLanguage' => 'en',
'language' => 'en',
'bootstrap' => ['log'],
'modules' => [
'treemanager' => [
'class' => '\kartik\tree\Module',
// other module settings, refer detailed documentation
],
'newsletter' => [
'class' => 'tikaraj21\newsletter\Newsletter',
],
'comment' => [
'class' => 'yii2mod\comments\Module',
],
'ticket' => [
'class' => 'ricco\ticket\Module'
],
],
...
'i18n' => [
'translations' => [
'app' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
],
'*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
'fileMap' => [
'common' => 'common.php',
'backend' => 'backend.php',
'frontend' => 'frontend.php',
],
'on missingTranslation' => ['\backend\modules\i18n\Module', 'missingTranslation']
],
在开发模式下运行应用程序我在日志中没有出现任何错误。
但是如果我将en / app.php文件复制到我的应用程序的common / messages / en文件夹中就可以了。
但我希望从模块中运行翻译,以便其他人可以在常规配置中使用它。
从csminb回答中游戏并理解后,我从主应用程序中删除了所有i18n配置。
1-我在模块中编写了所有翻译文本,如下所示:
<?= Yii::t('ticket', 'Go back') ?>
2-在console / config文件夹中创建配置文件 ./yii message / config @ app / config / i18n-ricco.php
3-编辑添加语言和正确的路径
return [
'color' => null,
'interactive' => true,
'help' => null,
'sourcePath' => '@vendor/ricco/yii2-ticket',
'messagePath' => '@vendor/ricco/yii2-ticket/messages',
'languages' => ['en','ru','es'],
'translator' => 'Yii::t',
'sort' => false,
'overwrite' => true,
'removeUnused' => false,
'markUnused' => true,
'except' => [
'.svn',
'.git',
'.gitignore',
'.gitkeep',
'.hgignore',
'.hgkeep',
'/messages',
'/BaseYii.php',
],
'only' => [
'*.php',
],
'format' => 'php',
'db' => 'db',
'sourceMessageTable' => '{{%source_message}}',
'messageTable' => '{{%message}}',
'catalog' => 'messages',
'ignoreCategories' => [],
];
4-运行消息命令
./yii message/config @app/config/i18n-ricco.php
message命令使用ticket.php文件生成所有语言文件夹。
5-在模块的init函数中添加了配置:
/**
* @inheritdoc
*/
public function init() {
User::$user = ($this->userModel !== false) ? $this->userModel : Yii::$app->user->identityClass;
parent::init();
$this->registerTranslations();
}
/**
* Registration of translation class.
*/
protected function registerTranslations()
{
Yii::$app->i18n->translations['ticket'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en',
'basePath' => '@ricco/ticket/messages',
'fileMap' => [
'ticket' => 'ticket.php',
],
];
}
答案 0 :(得分:0)
在此处添加我的上一条评论
如果你想要单独的模块转换,我会使用与app不同的范围来处理该模块中的任何内容,并在模块初始化时将该范围添加到应用程序中。
您最不可能出现错误的原因是配置中的*
```
'i18n' => [
'translations' => [
'app' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
],
// you could remove this (at least in your local dev to make sure errors will be thrown if files are not setup)
'*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
'fileMap' => [
'common' => 'common.php',
'backend' => 'backend.php',
'frontend' => 'frontend.php',
],
'on missingTranslation' => ['\backend\modules\i18n\Module', 'missingTranslation']
]
]
```
在模块中设置翻译文件后
/common/modules/Ticket/messages/en/ticket.php
确保在模块初始化时添加此消息源
/common/modules/Ticket/Module.php
...
public function init()
{
parent::init();
if (!isset(Yii::$app->i18n->translations['ticket'])) {
Yii::$app->i18n->translations['ticket'] = [
'class' => 'yii\i18n\PhpMessageSource',
'sourceLanguage' => 'en',
'basePath' => '@vendor/rico/ticket/messages'
];
}
}
这种方式只需包含模块,它将添加特定于模块的翻译,而不会干扰您的应用配置
更新了@vendor/rico
的路径,(@rico
如果您设置了别名也可以使用)
与此同时,另一件可能引起混淆的事情是你的例子中的fileMap
。
```
// this is hard to make sense of, :
// it's a category named `rico/ticket` will point to @vendor/rico/ticket/messages/en/app.php
// are you usinging it like this? Yii:t('rico/ticket', 'sample')
'fileMap' => [
'ricco/ticket' => 'app.php',
],
除非翻译文件太大而无法管理,或者他们的名字太冗长(like this example),我没有看到任何使用它的理由,标准名称映射要简单得多