How to translate dynamic attributes?

0
Hello, My application needs to support 6 different languages. Static strings are no problem.   The problem is that I have forms with dynamic values ​​in a drop-down list (by using comboboxes), and I want to translate these values, which is not possible with Mendix's default language manager.   Translations will be done manually via a form (if possible).   Do you have any solution?
asked
1 answers
1

Hi Simon,

For dynamic values, you need to store the values in the database and then manage visibility using language codes.

For example, if you select the English value "Simon" from a dropdown, you should store "Simon" in multiple languages using separate attributes (e.g., English, Arabic, German, etc., based on your requirements). Then, when the user changes the language, you can control the visibility based on Mendix’s default language code.

 

Alternatively, you can also use third-party translation services if needed.

answered