Saturday, March 19, 2022

[FIXED] How to configure gettext with Yii::t() in Yii2 advanced?

Issue

I'm installed Yii2 advanced template and configure Yii::t() with PhpMessageSource, but i need configure it with GettextMessageSource. I'm added to common/config/main-local.php this code:

'i18n' => [
            'translations' => [
                'app*' => [
                    'class' => 'yii\i18n\GettextMessageSource',
                    'basePath' => '@app/messages',
                    'sourceLanguage' => 'en-US',
                ],
            ],
        ],

Put at frontend/messages/ru-RU app.po file sample text:

msgid "TEST"
msgstr "Текст"

Add in view file:

Yii::t('app', 'TEST');

But it doesn't work, where i need to store .po files or what i'm doing wrong?


Solution

'basePath' => '@app/messages',

change to 'basePath' => '@common/messages', or 'basePath' => '@root/common/messages

and replace your messages to common/messages.



Answered By - zelenin

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.