uran1980/yii2-translate-panel
Composer 安装命令:
composer require uran1980/yii2-translate-panel
包简介
Yii2 Translate Panel makes the translation of your application awesome!
README 文档
README
Yii2 Translate Panel makes the translation of your application awesome!
This module based on i18n (internalization) module with greatly improved usability in mind (see screen shots below).
Installation
Install Yii2
Install and configure Yii2 App Advanced Template
Composer
The preferred way to install this extension is through Composer.
Either run
php composer.phar require uran1980/yii2-translate-panel "dev-master"
or add
"uran1980/yii2-translate-panel": "dev-master"
to the require section of your composer.json
Usage
Configure urlManager and "Yii2 Translate Panel" component in common/config/main.php:
return [ ... 'components' => [ ... 'urlManager' => [ 'class' => yii\web\UrlManager::className(), 'enablePrettyUrl' => true, 'showScriptName' => false, // false - means that index.php will not be part of the URLs ], 'i18n' => [ 'class' => uran1980\yii\modules\i18n\components\I18N::className(), 'languages' => ['en', 'de', 'fr', 'it', 'es', 'pt', 'ru'], // Or, if you manage languages in database //'languages' => function() { // /* /!\ Make sure the result is a mere list of language codes, and the // * one used in views is the first one */ // return \namespace\of\your\LanguageClass::find()->where(['active' => true'])->orderBy('default' => SORT_DESC])->select('code')->column(); //}, 'format' => 'db', 'sourcePath' => [ __DIR__ . '/../../frontend', __DIR__ . '/../../backend', __DIR__ . '/../../common', ], 'messagePath' => __DIR__ . '/../../messages', // Whether database messages are to be used instead of view ones. // Enables editing messages in locale specified by // Yii::$app->sourceLanguage // Can be set per translation category too //'forceTranslation' => true, 'translations' => [ '*' => [ 'class' => yii\i18n\DbMessageSource::className(), 'enableCaching' => true, 'cachingDuration' => 60 * 60 * 2, // cache on 2 hours // Whether database messages are to be used instead of view // ones. Enables editing messages in view code locale. // Can be set globally too. //'forceTranslation' => true, ], ], ], ... ], ... ];
Configure "Yii2 Translate Panel" module in backend/config/main.php:
return [ ... 'modules' => [ ... 'i18n' => [ 'class' => uran1980\yii\modules\i18n\Module::className(), 'controllerMap' => [ 'default' => uran1980\yii\modules\i18n\controllers\DefaultController::className(), ], // example for set access control to module (if required): 'as access' => [ 'class' => yii\filters\AccessControl::className(), 'rules' => [ [ 'controllers' => ['i18n/default'], 'actions' => ['index', 'save', 'update', 'rescan', 'clear-cache', 'delete', 'restore', 'clear-deleted'], 'allow' => true, 'roles' => ['translator'], ] ], ], ], ... ], ... ]
Run:
php yii migrate --migrationPath=@uran1980/yii/modules/i18n/migrations
Go to http://backend.yourdomain.com/translations for translating your messages
PHP to DB import
If you have an old project with PHP-based i18n you may migrate to DbSource via console.
Run:
php yii i18n/import @common/messages
where @common/messages is path for app translations
DB to PHP export
Run:
php yii i18n/export @uran1980/yii/modules/i18n/messages uran1980/modules/i18n
where @uran1980/yii/modules/i18n/messages is path for app translations and uran1980/modules/i18n is translations category in DB
Using yii category with DB
Import translations from PHP files
php yii i18n/import @yii/messages
Info
Component uses yii\i18n\MissingTranslationEvent for auto-add of missing translations to database
See Yii2 i18n guide
Author
Ivan Yakovlev, e-mail: uran1980@gmail.com
uran1980/yii2-translate-panel 适用场景与选型建议
uran1980/yii2-translate-panel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 18.27k 次下载、GitHub Stars 达 24, 最近一次更新时间为 2015 年 03 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「i18n」 「translation」 「translations」 「yii2」 「translate-panel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 uran1980/yii2-translate-panel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 uran1980/yii2-translate-panel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 uran1980/yii2-translate-panel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easy to use i18n translation PHP class for multi-language websites
A custom URL rule class for Yii 2 which allows to create translated URL rules
A Laravel Eloquent model trait for translatable resource
Deepl Automated translations for Laravel lang files
Bureaux A Partager Edit - Parse, validate, manipulate, and display dates in PHP w/ i18n support. Inspired by moment.js
Nette Framework adapter for I18n package
统计信息
- 总下载量: 18.27k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 25
- 点击次数: 25
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-05
