Set global language value in Yii2 application

2019-02-12 08:51发布

Where can I set language (based on user's cookie) globally? How to make it work in the whole application (controllers,views, etc.) ?

In documentation I found \Yii::$app->language = ''; but, where I can write my logic to change the language in right way?

7条回答
爷的心禁止访问
2楼-- · 2019-02-12 09:19

Go to application configuration file frontend/main/config.php or backend/main/config.php

$config = ['language' => 'ru-RU']

查看更多
登录 后发表回答