How to add a DropDown Language Picker (i18n) to the Menu

Comparing #6 with #7

Revision #7 was created by JQL JQL on Nov 24, 2023, 7:46:36 PM.

Hopefully the last edit to fix formatting

Content

[...]
```php
'language' => 'en',
'sourceLanguage' => 'en',
```

Note: you should always use the `'sourceLanguage' => 'en'` as it is, usually, easier and cheaper to translate from English into another language. If the
`sourceLanguage` is not set it defaults to 'en'.

Add the following to the `'components' => [...]` section:
[...]
add:

 
```php
'encodeLabels' => false, // Required to enter HTML into the labels
```

like so:
[...]