Localization Service
The Localization Service is a simple service that features storage and retrieval of text snippets, translated into multiple languages. A snippet is identified by a key, for example mail_closing
, and has associated values in all translated languages.
The Notification Service as well as the Template Service are aware of the Localization Service, and have built-in support for localizations. They both use the Localization Service in order to generate notifications, emails and PDFs in appropriate languages based on a pre-defined template, which in turn are filled with localization keys that can be managed by the Localization Service.
Localizations
Translated text snippets can be stored in Localization objects, which are uniquely identified by the key
attribute. The translations and their respective language codes (ISO 639-1) are stored as key-value pairs in the text
attribute.
Tip: It is recommended to compose text snippets with complete sentences because the order of words in a sentence can differ between languages due to their unique set of grammar rules.
Managing localizations
The easiest way to manage your localizations is by using the ExH CLI.
The ExH CLI allows you to simply define your localizations as a list of key/value pairs per language. When instructed, the CLI will combine these into localization objects and sync them with the Localization Service.
Example file structure:
Syncing the localizations with the CLI will result in a localization matching the example mentioned in the Localizations section above:
See the ExH CLI documentation regarding localizations for more information.
Using localizations
Once you have configured your localizations, you can use them in your application or within ExH services which have localization support.
Support in Extra Horizon services
As mentioned before, the Template Service has built-in support for localizations. This also affects the Mail Service, which uses the Template Service to generate emails. Allowing you to create fully localized emails.
See the Template Service documentation on how to use localizations in your templates. See the Mail Service on how to send emails based on templates.
In your application(s)
You can also use the Localization Service directly in your application(s) by using the ExH SDK.
For example, to retrieve translated texts form the mail_closing
localization in Dutch and English:
Last updated