Skip to content

cybercog/yii2-translation

 
 

Repository files navigation

Yii2 Translation Manager

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist krok/yii2-translation "*"

or add

"krok/yii2-translation": "*"

to the require section of your composer.json file.

Configure

Add to config file (config/web.php or common/config/main.php)

    'bootstrap' => [
        'translation',
    ],
    'modules' => [
        'translation' => [
            'class' => 'krok\translation\Translation',
        ],
    ],

register modules

    'modules' => [
        'cp' => [
            'class' => 'krok\cp\Cp',
            'modules' => [
                'translation' => [
                    'class' => 'krok\translation\Manage',
                ],
            ],
        ],
    ],
    'components' => [
        'i18n' => [
            'translations' => [
                'db' => [
                    'sourceLanguage' => 'ru-RU',
                    'class' => 'yii\i18n\DbMessageSource',
                    'messageTable' => '{{%i18n_message}}',
                    'sourceMessageTable' => '{{%i18n_source}}',
                    'enableCaching' => YII_DEBUG ? false : true,
                    'on missingTranslation' => [
                        'krok\translation\components\TranslationEventHandler',
                        'handleMissingTranslation'
                    ],
                ],
                'yii' => [
                    'class' => 'yii\i18n\PhpMessageSource',
                    'sourceLanguage' => 'en-US',
                    'basePath' => '@app' . DIRECTORY_SEPARATOR . 'messages',
                ],
            ],
        ],
    ],

Add to config file (config/params.php or common/config/params.php)

    'nav' => [
        [
            'label' => ['category' => 'cp', 'context' => 'Administration'],
            'items' => [
                [
                    'label' => ['category' => 'translation', 'context' => 'Translation'],
                    'url' => ['/cp/translation'],
                ],
                '<li class="divider"></li>',
            ],
        ],
    ],

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages

  • PHP 100.0%