Yii 本地化

Yii 本地化

国际化(I18N) 是设计一个能够适应不同语言的应用程序的过程。Yii提供了全面的I18N功能。

地区是指定用户语言和国家的一组参数。例如,en-US代表英文地区和美国。Yii提供了两种类型的语言:源语言和目标语言。源语言是应用程序中所有文本消息所写的语言。目标语言是应用于向最终用户显示内容的语言。

消息翻译组件将文本消息从源语言翻译为目标语言。为了翻译消息,消息翻译服务必须在消息源中查找它。

要使用消息翻译服务,您应该 −

  • 在您想要翻译的文本消息中使用Yii::t()方法进行包装。
  • 配置消息源。
  • 将消息存储在消息源中。

步骤1 - Yii::t() 方法可以像这样使用。

echo \Yii::t('app', 'This is a message to translate!');

在上述代码片段中,’app’代表一条消息的类别。

步骤2 - 现在,修改 config/web.php 文件。

<?php
   params = require(__DIR__ . '/params.php');config = [
      'id' => 'basic',
      'basePath' => dirname(__DIR__),
      'bootstrap' => ['log'],
      'components' => [
         'request' => [
            // !!! insert a secret key in the following (if it is empty) - this
               //is required by cookie validation
            'cookieValidationKey' => 'ymoaYrebZHa8gURuolioHGlK8fLXCKjO',
         ],
         'cache' => [
            'class' => 'yii\caching\FileCache',
         ],
         'i18n' => [
            'translations' => [
               'app*' => [
                  'class' => 'yii\i18n\PhpMessageSource',
                  'fileMap' => [
                     'app' => 'app.php'
                  ],
               ],
            ],
         ],
         'user' => [
            'identityClass' => 'app\models\User',
            'enableAutoLogin' => true,
         ],
         'errorHandler' => [
            'errorAction' => 'site/error',
         ],
         'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => true,
         ],
         'log' => [
            'flushInterval' => 1,
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
               [
                  'class' => 'yii\log\FileTarget',
                  'exportInterval' => 1,
                  'logVars' => [],
               ],
            ],
         ],
         'db' => require(__DIR__ . '/db.php'),
      ],
      // set target language to be Russian
      'language' => 'ru-RU',
      // set source language to be English
      'sourceLanguage' => 'en-US',
      'modules' => [
         'hello' => [
            'class' => 'app\modules\hello\Hello',
         ],
      ],
      'params' => params,
   ];
   if (YII_ENV_DEV) {
      // configuration adjustments for 'dev' environmentconfig['bootstrap'][] = 'debug';
      config['modules']['debug'] = [
         'class' => 'yii\debug\Module',
      ];config['bootstrap'][] = 'gii';
      config['modules']['gii'] = [
         'class' => 'yii\gii\Module',
      ];
   }
   returnconfig;
?>

在上面的代码中,我们定义了源语言和目标语言。我们还指定了一个由yii\i18n\PhpMessageSource支持的消息源。app*模式表示以app开头的所有消息类别都必须使用此特定的消息源进行翻译。在上述配置中,所有俄语翻译将位于messages/ru-RU/app.php文件中。

步骤3 - 现在,创建messages/ru-RU目录结构。在ru-RU文件夹内创建一个名为app.php的文件。这将存储所有英文→俄语的翻译。

<?php
   return [
      'This is a string to translate!' => 'Эта строка для перевода!'
   ];
?>

步骤4 − 在SiteController中创建一个名为actionTranslation()的函数。

public function actionTranslation() {
   echo \Yii::t('app', 'This is a string to translate!');
}

步骤5 − 在网页浏览器中输入以下网址 http://localhost:8080/index.php?r=site/translation ,你会看到以下内容。

Yii 本地化

将消息翻译成俄语,因为我们将目标语言设置为ru-RU。我们可以动态地更改应用程序的语言。

步骤6 - 修改 actionTranslation() 方法。

public function actionTranslation() {
   \Yii::$app->language = 'en-US';
   echo \Yii::t('app', 'This is a string to translate!');
}

现在,信息以英文显示 –

Yii 本地化

步骤7 − 在翻译的信息中,您可以插入一个或多个参数。

public function actionTranslation() {
   username = 'Vladimir';
   // display a translated message with username being "Vladimir"
   echo \Yii::t('app', 'Hello, {username}!', [
      'username' =>username,
   ]), "<br>";
   username = 'John';
   // display a translated message with username being "John"
   echo \Yii::t('app', 'Hello, {username}!', [
      'username' =>username,
   ]), "<br>";
   price = 150;count = 3;
   subtotal = 450;
   echo \Yii::t('app', 'Price: {0}, Count: {1}, Subtotal: {2}', [price, count,subtotal]);
}

以下将是输出结果。

Yii 本地化

您可以翻译整个视图脚本,而不是逐个翻译文本消息。例如,如果目标语言是ru-RU,并且您想要翻译views/site/index.php视图文件,您应该翻译该视图并将其保存在views/site/ru-RU目录下。

步骤8 - 创建views/site/ru-RU目录结构。然后,在ru-RU文件夹内创建一个名为index.php的文件,其中包含以下代码。

<?php
   /* @var this yii\web\View */this->title = 'My Yii Application';
?>

<div class = "site-index">
   <div class = "jumbotron">
      <h1>Добро пожаловать!</h1>
   </div>
</div>

步骤9 − 目标语言是ru-RU,所以如果你输入以下网址: http://localhost:8080/index.php?r=site/index ,你将看到有俄语翻译的页面。

Yii 本地化

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程