-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
The old format of I18n messages is deprecated and will be changed soon - need to migrate to new one.
Check out the warning message:
WARNING:
Such I18nManager 'register' method signature is deprecated and its support will be removed soon!
Instead of using locale bundles sturcture like this:
[
{locales: ['en'], messages: {yes: 'jes'}}
{locales: ['de'], messages: {yes: 'ja'}}
]
use the following structure:
{
'en': {yes: 'jes'},
'de': {yes: 'ja'}
}