YII2 语言配置
程序员文章站
2022-05-08 19:22:24
...
1.在公共应用主配置文件添加语言配置项/common/config/main.php
return [
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'language'=>'zh-CN',//默认使用中文
'components' => [
'i18n' => [
'translations' => [
'app' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@common/messages',
// 'sourceLanguage' => 'en-US',
'fileMap' => [
'app' => 'app.php',
'app/error' => 'error.php',
],
],
],
],
],
];
2.在公共目录下建立前后台语言包文件/common/messages/zh-CN/backend.php
/common/messages/zh-CN/frontend.php
return [
'create'=>'创建',
];
3.使用语言包
Yii::t('common', 'create');
上一篇: DELL S4048 10G 交换机配置动态聚合(LACP)
下一篇: 序列化,反序列化