Hello,
I have a form-like report in German and I need to translate it in French and Italian. But the language of the report should be dynamically chosen, based on the account language of the user that runs the report. The issue is that almost all elements(row headers, column headers, text boxes with terms and conditions etc.) that needs to be translated are hardcoded now.
I've come up with a solution, using SQL - I can create a procedure that takes the account language of the user and based on this, using CASEs, it will populate the elements with the right language, but as there are a lot of fields, this seems like a lot of work.
I'm looking for smarter ways to achieve this behavior. Any ideas?
Thank you!