Nuiton I18n Best Practices

Choose a pattern and follow it

In an application or a library, you should choose a pattern for the i18n keys. You can either choose to use keys like myapplication.key1 or sentences like 'My application string'. Once you made your choice, stick to it to keep a consistency in your application. Note that in an application, you can choose a different pattern than the one used in the dependencies.

Always use DefaultI18nInitializer in final applications

This is not an obligation, but as it makes you gain time at your application initialisation, it is really advised to use DefaultI18nInitializer for all your final applications.