Currently, the UI is provided only in US English. You can translate the UI and specify that your own locale is used. The following example shows how to translate the UI into French.
-
Copy the default locale to
openidm/ui/extension/locales:$ cd /path/to/openidm/ui/default/admin/public/ $ cp -r locales ../../../extension/
The
extension/localesfolder now contains one locale,en-US. -
Create a copy of the
en-USlocale, in a new folder namedfr-FR.$ cd /path/to/openidm/ui/extension/locales $ cp -r en-US fr-FR
-
Translate the values of the properties in the
fr-FR/translate.jsonfile. Do not translate the property names. For example:... "user" : { "user" : "Utilisateur" "login" : "Login", "profile" : "Profil", .... -
Change the UI configuration to use the new locale by setting the value of the
languageproperty in theopenidm/conf/ui-configuration.jsonfile, as follows:"language" : "fr-FR", -
Refresh your browser window for the modification to be applied.

