yii2mod / yii2-cms

Simple CMS extension
MIT License
44 stars 24 forks source link

Unable to locate message source for category 'yii2mod.cms'. #25

Closed neoacevedo closed 6 years ago

neoacevedo commented 6 years ago

On accessing to cms/index after configure in app-advanced https://github.com/yii2mod/yii2-cms/issues/13#issuecomment-277729747 I get the following: Unable to locate message source for category 'yii2mod.cms'.

neoacevedo commented 6 years ago

I have solved it:

...
'i18n' => [
            'translations' => [
                'yii2mod.comments' => [
                    'class' => 'yii\i18n\PhpMessageSource',
                    'basePath' => '@yii2mod/comments/messages',
                ],
                'yii2mod.cms' => [
                    'class' => 'yii\i18n\PhpMessageSource',
                    'basePath' => '@yii2mod/cms/messages',
                ],
...

Documentation missing it.