I have an app that I want to set up with multi language support. Most of the translations need to be added manually which is not the issue for me. I would like to create a translation table that is filled vertically (w.r.t. language) since I want to make it easy to expand it for multiple languages. For example
id, text, language, key
0, welcome, en, welcome
1, bienvenue, fr, welcome
Ideally, I would refer from other tables to the key field and set a language in the app to determine which text value is shown. I am not sure how to set this up via relationships in dataverse. Is there a good way to do this?