kuainiu / yii2-i18n-js
Installs: 1 783
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 5
Type:yii2-extension
Requires
- w3lifer/php-helper: ^4
- yiisoft/yii2: ^2
README
Installation
composer require kuainiu/yii2-i18n-js
- Add this to your application configuration:
<?php return [ // ... 'components' => [ // ... 'i18nJs' => [ 'class' => 'kuainiu\yii2\I18nJs', ], // ... ], // ... ];
- Initialize the component anywhere, for example in
@app/views/layouts/main.php
:
Yii::$app->i18nJs;
Note, you do not need to register the component in the places that will be processed with AJAX-requests (for example, in @app/config/web.php
-> bootstrap
, on afterRequest
, etc), because it will be loaded twice, and it makes no sense.
Usage
window.addEventListener('DOMContentLoaded', function () { console.log(yii.t('app', 'Hello')); console.log(yii.t('app', 'Hello, World!')); console.log(yii.t('app', 'Hello, {username}!', {username: 'John'})); console.log(yii.t('app', 'Hello, {0}!', ['John'])); console.log(yii.t('app', 'Hello, {0} {1}!', ['John', 'Doe'])); console.log(yii.t('app', 'Hello, {0} {1}!', ['John', 'Doe'], 'en-US')); });