I am looking to have a screen in my app translated to a language that is selected on a previous screen. I created the screen in English and would like to use it as the source for translation. I ran into a limit with the number of screens I could create by manually translating screens related to the language selected. Any recommendations? I have attached two screens from my app here
What you want to do is called 'localization'. This link discusses several ways you might do it within your app How do I create multiple language app? .
The link suggests changing the app's translation with a List or a Dictionary or more complex, using Yandex.
You probably do not need a separate screen for each language. You can use a single screen and reuse it depending on the language you select. Change the language; not the screen.
Thank you! I will try this option.