...
'components' => [
...
'i18n' => [
'translations' => [
'app*' => [
'class' => 'yii\i18n\PhpMessageSource', // default Yii transaltion
'fileMap' => [
'app' => 'app.php',
'app/error' => 'error.php',
],
],
'*' => [
'class' => '\yii\i18n\JsonMessageSource', // Your tranlation fron Translate Center
'basePath' => '@common/messages'
// If you change this path, you shoud change it in//
// `\Kialex\TranslateCenter\Storage\JsonFileStorage` as well
// You may do it via singletons or defenations in config
],
],
]
]
...