Yii v2 snippet guide

Comparing #60 with #61

Revision #61 was created by rackycz rackycz on Sep 20, 2019, 1:48:14 PM.

edit

Content

[...]
], // end of 'components'

```

You surely saw that
Iin views and models there are texts saved like this:

```php
[...]
```

It means that this text belongs to category "app" and its English version (and also its ID) is "New password". So this ID will be searched in the
file you just created. In my case it was the Czech file:

- "C:\xampp\htdocs\basic\messages\cs-CZ\app.php"
[...]
```php
<?php
 
return [
 
    'New password' => 'NovĂ© heslo',
 
];
 
?>

```

Switching languages + session + dropdown in the top menu
---
... text ...
[...]