1. Go to this page and download the library: Download skeeks/yii2-multi-language library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
skeeks / yii2-multi-language example snippets
"bootstrap" => ["multiLanguage"],
"language" => "ru", //Your current application language
"components" => [
"request" => [
"class" => \skeeks\yii2\multiLanguage\MultiLangRequest::class
],
"urlManager" => [
"class" => \skeeks\yii2\multiLanguage\MultiLangUrlManager::class,
'enablePrettyUrl' => true,
'showScriptName' => false,
],
"multiLanguage" => [
"class" => \skeeks\yii2\multiLanguage\MultiLangComponent::class,
'langs' => ['ru', 'en'],
'default_lang' => 'ru', //Language to which no language settings are added.
'lang_param_name' => 'lang',
]
]