Hi,
we are providing a French UI in our application and in some places we are using and displaying confirm fields in the UI. The problem is that they are then displayed with their English value (“yes”), even though everything else is in French.
Is there a way to add a French locale that would replace this “yes”?
Thanks,
Jana
This can be done by the A12 localization API.
The form-engine is creating two localizables.
- A specific key that encodes the document model path in it. (
documentModel.<type>.<model.header.id>.<path>).
- A general key that is accessible by the RESOURCE_KEYS from the form-engine. (
RESOURCE_KEYS.true, RESOURCE_KEYS.false, RESOURCE_KEYS.textOutput.noData).
I recommend to use a LocalizationTreeMap in your case and provide a translation for the general keys in order to cover all occurrences the same.