Revision #63 has been created by rackycz on Sep 20, 2019, 1:55:20 PM with the memo:
i18n
« previous (#62) next (#64) »
Changes
Title
unchanged
Yii v2 for beginners
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
i18n translations
---
Translations are fairly simple, but I probably didnt read manuals carefully so it took me some time.
First create following folders and file.
- "C:\xampp\htdocs\basic\messages\cs-CZ\app.php"
- "C:\xampp\htdocs\basic\messages\de-DE\app.php"
*(Note that cs-CZ is for Czech Lanuage. For German you should use de-DE etc.)
*
The idea behind is that in the code ther are used only English texts and if you want to change from English to some other language th
eis file
s bellow are used.
- "C:\xampp\htdocs\basic\messages\cs-CZ\app.php"
- "C:\xampp\htdocs\basic\messages\de-DE\app.php" will be used.
Now go to file config/web.php, find section "components" and paste this code:
```php
'components' => [[...]