mam Yii2 zaawansowany szablon, chcę ustawić tłumaczenie dla moich poglądów frontend, oto co zrobiłem:Yii2 tłumaczenie nie działa
frontend/config/main.php:
'sourceLanguage'=>'en-US',
'language'=>'en-US',
'components' => [
'i18n' => [
'translations' => [
'app*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
'sourceLanguage' => 'en-US',
'fileMap' => [
'app' => 'app.php',
'app/error' => 'error.php',
],
],
],
],
]
potem dodałem i18n.php
w common/config:
<?php
return [
'sourcePath' => __DIR__. '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR,
'languages' => ['fr-FR','en-US'], //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,
];
i common/messages/en-US/app.php:
<?php
return[
// Menu texts
'menu.login'=>'login',
];
i użyłem go w poglądach jak: Yii::t('app', 'menu.login');
ale tłumaczenie nie działa, to wyświetlane jako menu.login
Aby używać plików wiadomości opartych na kluczach, należy włączyć opcję 'forceTranslation', ponieważ aplikacje w domyślnym języku nie będą automatycznie tłumaczyć wiadomości –