yarisrespect/yii2-i18n

为 Yii 2 框架自动生成语言文件

安装次数: 148

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 1

类型:yii2-extension

v1.0 2015-10-16 15:50 UTC

This package is not auto-updated.

Last update: 2020-09-04 20:38:59 UTC


README

此扩展会将所有翻译自动添加到其语言文件中。

php composer.phar require yarisrespect/yii2-i18n "dev-master"

只需像这样配置您的翻译组件

'i18n' => [
        'class' => \yarisrespect\i18n\I18N::className(),
        'translations' => [
            'app*' => [
                'class' => 'yii\i18n\PhpMessageSource',
                'basePath' => '@app/messages',
                'fileMap' => [
                    'app' => 'app.php',
                    'app/error' => 'error.php',
                ],
            ],
        ],
        'autoGenerate' => YII_DEBUG,
    ],