yarisrespect / yii2-i18n
为 Yii 2 框架自动生成语言文件
v1.0
2015-10-16 15:50 UTC
Requires
- yiisoft/yii2: *
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,
],