php-Yii2 Translations在错误的文件夹中查找
作者:互联网
我正在使用Yii2高级模板.我已经实现了this tutorial之后并审阅this SO question的translations(i18n).是的,我阅读了文档.
我的翻译无法正常工作,我在调试器中发现它正在前端文件夹中而不是在消息/摘录创建翻译文件的公共文件夹中查找他的翻译:
The message file for category 'app' does not exist: localhost/frontend/messages/es/app.php
我知道最简单的方法是将message文件夹移动到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,
这是我的common / 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');
解决方法:
您的代码是正确的,但是从错误消息看来您正在调用:
Yii::t('app', '...');
而是在common / config / main中声明了“ frontend *”和“ backend *”的条目,但没有声明“ app *”的条目.因此Yii将继续在前端存储库文件夹中搜索.
common / config / main应该包含(如果要使用Yii :: t(‘app’,…’)):
'app*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
],
标签:yii2,yii2-advanced-app,php,internationalization 来源: https://codeday.me/bug/20191027/1942065.html