kuainiu/yii2-i18n-js

Installs: 1 652

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 7

Type:yii2-extension

3.0.0 2022-08-08 06:54 UTC

This package is auto-updated.

Last update: 2024-04-08 10:50:13 UTC


README

Installation

composer require kuainiu/yii2-i18n-js
  1. Add this to your application configuration:
<?php

return [
    // ...
    'components' => [
        // ...
        'i18nJs' => [
            'class' => 'kuainiu\yii2\I18nJs',
        ],
        // ...
    ],
    // ...
];
  1. 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'));
});