Localization

The localization of the framework, modules and applications is organized in the i18n folders in the corresponding directories.

To translate a string for a specific locale, you need to add it and its translation to:

<корень фреймворка, приложения или модуля>/i18n/<код локали>/index.js

to the exported object, for example:

module.exports = {
    'Контрольная панель': `Control panel`
};

The string ‘Контрольная панель’ in Russian, when loaded will be translated as ‘Control Panel’