Skip to content

Yii2 Translate Panel makes the translation of your application so simple.

License

Notifications You must be signed in to change notification settings

cybercog/yii2-translate-panel

 
 

Repository files navigation

Yii2 Translate Panel

Yii2 Translate Panel makes the translation of your application so simple.

This module based on i18n (internalization) module with greatly improved usability in mind (see screen shots below).

Yii2 Translate Panel screens

Installation

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'],
            'translations' => [
                '*' => [
                    'class'           => yii\i18n\DbMessageSource::className(),
                    'enableCaching'   => true,
                    'cachingDuration' => 60 * 60 * 2, // cache on 2 hourse
                ],
            ],
        ],
        ...
    ],
    ...
];

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 to module (if required):
            'as access' => [
                'class' => yii\filters\AccessControl::className(),
                'rules' => [
                    'controllers'   => ['i18n/default'],
                    'actions'       => ['index', 'update', 'rescan', 'clear-cache'],
                    'allow'         => true,
                    'roles'         => ['admin'],
                ],
            ],
        ],
        ...
    ],
    ...
]

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

About

Yii2 Translate Panel makes the translation of your application so simple.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Languages

  • HTML 36.4%
  • CSS 26.4%
  • JavaScript 24.2%
  • PHP 13.0%