2017 © Pedro Peláez
 

yii2-extension yii2-translate-manager

Online Translate

image

tonchik-tm/yii2-translate-manager

Online Translate

  • Monday, January 11, 2016
  • by tonchik-tm
  • Repository
  • 1 Watchers
  • 2 Stars
  • 25 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 50 Forks
  • 0 Open issues
  • 32 Versions
  • 0 % Grown

The README.md

Yii2 - Translate Manager

Online Translations, (*1)

Introduction

This module provides a simple translating interface for the multilingual elements of your project. It can auto-detect new language elements (project scan). Duplications are filtered out automatically during project scanning. Unused language elements can be removed from the database with a single click (database optimisation) and translations can be imported and exported. It is possible to translate client side messages too (those stored in JavaScript files) as the project scan collects language elements to be translated from JavaScript files as well., (*2)

It also allows you to translate text on the client side (on the live webpage) without having to log in to the translating interface. (frontendTranslation)., (*3)

On the server side it can handle database or one-dimensional/multidimensional array elements and Yii::t functions. You can exclude files, folders or categories to prevent them from being translated., (*4)

Installation

The preferred way to install this extension is through composer., (*5)

Either run, (*6)

php composer.phar require --prefer-dist lajax/yii2-translate-manager "1.*"

or add, (*7)

"lajax/yii2-translate-manager": "1.*"

to the require section of your composer.json file., (*8)

Migration

Run the following command in Terminal for database migration:, (*9)

Linux/Unix:, (*10)

yii migrate/up --migrationPath=@vendor/lajax/yii2-translate-manager/migrations

Windows:, (*11)

yii.bat migrate/up --migrationPath=@vendor/lajax/yii2-translate-manager/migrations

Config

A simple exmple of turning on Yii database multilingual., (*12)

'language' => 'en-US',
'components' => [
    'i18n' => [
        'translations' => [
            '*' => [
                'class' => 'yii\i18n\DbMessageSource',
                'db' => 'db',
                'sourceLanguage' => 'xx-XX', // Developer language
                'sourceMessageTable' => '{{%language_source}}',
                'messageTable' => '{{%language_translate}}',
                'cachingDuration' => 86400,
                'enableCaching' => true,
            ],
        ],
    ],
],

Turning on the TranslateManager Module:, (*13)

Simple example:, (*14)

'modules' => [
    'translatemanager' => [
        'class' => 'lajax\translatemanager\Module',
    ],
],

A more complex example including database table with multilingual support is below:, (*15)

'modules' => [
    'translatemanager' => [
        'class' => 'lajax\translatemanager\Module',
        'root' => '@app',               // The root directory of the project scan.
        'layout' => 'language',         // Name of the used layout. If using own layout use 'null'.
        'allowedIPs' => ['127.0.0.1'],  // IP addresses from which the translation interface is accessible.
        'roles' => ['@'],               // For setting access levels to the translating interface.
        'tmpDir' => '@runtime',         // Writable directory for the client-side temporary language files. 
                                        // IMPORTANT: must be identical for all applications (the AssetsManager serves the JavaScript files containing language elements from this directory).
        'phpTranslators' => ['::t'],    // list of the php function for translating messages.
        'jsTranslators' => ['lajax.t'], // list of the js function for translating messages.
        'patterns' => ['*.js', '*.php'],// list of file extensions that contain language elements.
        'ignoredCategories' => ['yii'], // these categories won't be included in the language database.
        'ignoredItems' => ['config'],   // these files will not be processed.
        'scanTimeLimit' => null,        // increase to prevent "Maximum execution time" errors, if null the default max_execution_time will be used
        'searchEmptyCommand' => '!',    // the search string to enter in the 'Translation' search field to find not yet translated items, set to null to disable this feature
        'defaultExportStatus' => 1,     // the default selection of languages to export, set to 0 to select all languages by default
        'defaultExportFormat' => 'json',// the default format for export, can be 'json' or 'xml'
        'tables' => [                   // Properties of individual tables
            [
                'connection' => 'db',   // connection identifier
                'table' => '{{%language}}',         // table name
                'columns' => ['name', 'name_ascii'],// names of multilingual fields
                'category' => 'database-table-name',// the category is the database table name
                'categoryPrefix' => 'lx-'           // 
            ]
        ]
    ],
],

IMPORTANT: If you want to modify the value of roles (in other words to start using user roles) you need to enable authManager in the common config., (*16)

Using of authManager., (*17)

examples:, (*18)

PhpManager:, (*19)

'components' => [
    'authManager' => [
        'class' => 'yii\rbac\PhpManager',
    ],
    // ...
],

DbManager:, (*20)

'components' => [
    'authManager' => [
        'class' => 'yii\rbac\DbManager',
    ],
    // ...
],

Front end translation:, (*21)

'bootstrap' => ['translatemanager'],
'component' => [
    'translatemanager' => [
        'class' => 'lajax\translatemanager\Component'
    ]
]

Usage

Register client scripts

To translate static messages in JavaScript files it is necessary to register the files., (*22)

To register your scripts, call the following method in each action:, (*23)

\lajax\translatemanager\helpers\Language::registerAssets();

A simple example for calling the above method at each page load:, (*24)

namespace common\controllers;

use lajax\translatemanager\helpers\Language;

// IMPORTANT: all Controllers must originate from this Controller!
class Controller extends \yii\web\Controller {

    public function init() {
        Language::registerAssets();
        parent::init();
    }
}

ToggleTranslate button

Simple example for displaying a button to switch to front end translation mode. (The button will only appear for users who have the necessary privileges for translating!), (*25)

\lajax\translatemanager\widgets\ToggleTranslate::widget();

A more complex example for displaying the button:, (*26)

\lajax\translatemanager\widgets\ToggleTranslate::widget([
 'position' => \lajax\translatemanager\widgets\ToggleTranslate::POSITION_TOP_RIGHT,
 'template' => '<a href="javascript:void(0);" id="toggle-translate" class="{position}" data-language="{language}" data-url="{url}"><i></i> {text}</a><div id="translate-manager-div"></div>',
 'frontendTranslationAsset' => 'lajax\translatemanager\bundles\FrontendTranslationAsset',
 'frontendTranslationPluginAsset' => 'lajax\translatemanager\bundles\FrontendTranslationPluginAsset',
]);

Placing multilingual elements in the source code.

JavaScript:, (*27)

lajax.t('Apple');
lajax.t('Hello {name}!', {name:'World'});
lajax.t("Don't be so upset.");

PHP methods:, (*28)

Yii::t('category', 'Apple');
Yii::t('category', 'Hello {name}!', ['name' => 'World']);
Yii::t('category', "Don't be so upset.");

PHP functions for front end translation:, (*29)

use lajax\translatemanager\helpers\Language as Lx;

Lx::t('category', 'Apple');
Lx::t('category', 'Hello {name}!', ['name' => 'World']);
Lx::t('category', "Don't be so upset.");

PHP arrays:, (*30)

/**
 * @translate
 */
private $_STATUSES = [
    self::STATUS_INACTIVE => 'Inactive',
    self::STATUS_ACTIVE => 'Active',
    self::STATUS_DELETED => 'Deleted'
];

/**
 * Returning the 'status' array on the site's own language.
 * return array
 */
public function getStatuses() {
    return \lajax\translatemanager\helpers\Language::a($this->_STATUSES);
}

/**
 * @translate
 */
private $_GENDERS = ['Male', 'Female'];

/**
 * Returning the 'genders' array in German
 * return array
 */
public function getGenders() {
    return \lajax\translatemanager\helpers\Language::a($this->_GENDERS, 'de-DE');
}

PHP Database:, (*31)

namespace common\models;

use lajax\translatemanager\helpers\Language;

/**
 * This is the model class for table "category".
 *
 * @property string $category_id
 * @property string $name
 * @property string $description
 */
class Category extends \yii\db\ActiveRecord {

    // afterFind & beforeSave:

    /**
     * @var Returning the 'name' attribute on the site's own language.
     */
    public $name_t;

    /**
     * @var Returning the 'description' attribute on the site's own language.
     */
    public $description_t;

    ...

    public function afterFind() {
        $this->name_t = Language::d($this->name);
        $this->description_t = Language::d($this->descrioption);

        // or If the category is the database table name.
        // $this->name_t = Language::t(static::tableName(), $this->name);
        // $this->description_t = Language::t(static::tableName(), $this->descrioption);
        parent::afterFind();
    }

    public function beforeSave($insert) {
        if (parent::beforeSave($insert)) {
            Language::saveMessage($this->name);
            Language::saveMessage($this->description);

            return true;
        }

        return false;
    }

    // or GETTERS:

    /**
     * @return string Returning the 'name' attribute on the site's own language.
     */
    public function getName($params = [], $language = null) {
        return Language::d($this->name, $params, $language);

        // or If the category is the database table name.
        // return Language::t(static::tableName(), $this->name, $params, $language);
    }

    /**
     * @return string Returning the 'description' attribute on the site's own language.
     */
    public function getDescription($params = [], $language = null) {
        return Language::d($this->description, $params, $language);

        // or If the category is the database table name.
        // return Language::t(static::tableName(), $this->description, $params, $language);
    }
}

URLs

URLs for the translating tool:, (*32)

/translatemanager/language/list         // List of languages and modifying their status
/translatemanager/language/create       // Create languages
/translatemanager/language/scan         // Scan the project for new multilingual elements
/translatemanager/language/optimizer    // Optimise the database

Example implementation of the Yii2 menu into your own menu., (*33)

$menuItems = [
    ['label' => Yii::t('language', 'Language'), 'items' => [
            ['label' => Yii::t('language', 'List of languages'), 'url' => ['/translatemanager/language/list']],
            ['label' => Yii::t('language', 'Create'), 'url' => ['/translatemanager/language/create']],
        ]
    ],
    ['label' => Yii::t('language', 'Scan'), 'url' => ['/translatemanager/language/scan']],
    ['label' => Yii::t('language', 'Optimize'), 'url' => ['/translatemanager/language/optimizer']],
    ['label' => Yii::t('language', 'Im-/Export'), 'items' => [
        ['label' => Yii::t('language', 'Import'), 'url' => ['/translatemanager/language/import']],
        ['label' => Yii::t('language', 'Export'), 'url' => ['/translatemanager/language/export']],
    ]
];

Console commands

Register the command, (*34)

'controllerMap' => [
    'translate' => \lajax\translatemanager\commands\TranslatemanagerController::className()
],

Use it with the Yii CLI, (*35)

./yii translate/scan
./yii translate/optimize

Screenshots

List of languages

translate-manager-0 2-screen-1, (*36)

Scanning project

translate-manager-0 2-screen-2, (*37)

Optimise database

translate-manager-0 2-screen-3, (*38)

Translate on the admin interface

translate-manager-0 2-screen-4, (*39)

Front end in translating mode

translate-manager-0 2-screen-6, (*40)

Translate on the front end

translate-manager-0 2-screen-7, (*41)

The Versions

11/01 2016

dev-master

9999999-dev

Online Translate

  Sources   Download

MIT

The Requires

 

language extension yii2 module translate

11/01 2016

1.5.5

1.5.5.0

Online Translate

  Sources   Download

MIT

The Requires

 

language extension yii2 module translate

11/01 2016

1.5.4

1.5.4.0

Online Translate

  Sources   Download

MIT

The Requires

 

language extension yii2 module translate

11/01 2016

1.5.3

1.5.3.0

Online Translate

  Sources   Download

MIT

The Requires

 

language extension yii2 module translate

17/12 2015

1.5.2

1.5.2.0

Online Translate

  Sources   Download

MIT

The Requires

 

language extension yii2 module translate

16/11 2015

1.5.1

1.5.1.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

01/09 2015

1.5.0

1.5.0.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

24/07 2015

1.4.9

1.4.9.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

27/06 2015

1.4.8

1.4.8.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

21/05 2015

1.4.7

1.4.7.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

19/05 2015

1.4.6

1.4.6.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

08/05 2015

1.4.5

1.4.5.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

05/04 2015

1.4.4

1.4.4.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

12/03 2015

1.4.3

1.4.3.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

28/02 2015

1.4.2

1.4.2.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

23/02 2015

1.4.1

1.4.1.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

22/02 2015

1.4.0

1.4.0.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

16/02 2015

1.3.1

1.3.1.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

15/02 2015

1.3.0

1.3.0.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

10/02 2015

1.2.8

1.2.8.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

08/02 2015

1.2.7

1.2.7.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

25/01 2015

1.2.6

1.2.6.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

21/01 2015

1.2.5

1.2.5.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

21/01 2015

1.2.4

1.2.4.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

18/01 2015

1.2.3

1.2.3.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

17/01 2015

1.2.2

1.2.2.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

17/01 2015

1.2.1

1.2.1.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

17/01 2015

1.2.0

1.2.0.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

03/12 2014

1.1.3

1.1.3.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

03/12 2014

1.1.2

1.1.2.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

02/12 2014

1.1.1

1.1.1.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate

23/11 2014

1.0.0

1.0.0.0

Online Translate

  Sources   Download

MIT

The Requires

 

by Lajos Molnar

language extension yii2 module translate