Language¶
By default the client uses English as it's default- and fallback language.
Default means, English is used when the browser / environment uses an unknown language. Currently we support German, English, French and Spanish. If another language is requested the client will use English. Fallback means, that if a string is not available in the currently used language, the English translation will be shown.
Customers should set the default- and fallback language based on the language that is used in their configurations. As long as the configurations are written with english strings nothing needs to be changed. If configurations are written, for example, in German the settings should be set to that language.
Example, set to German:
{ // config.js
[...],
i18n: {
fallbackLanguage: "de",
preferredLanguage: "de"
},
[...]
}