欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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');