Hello,
I would like to translate some objects from the server response without storing it in a JSON file.
For example, i am receiving an object like this:
{
"name": ["Hello", "Hola", "Bon Jour"],
"description": ["This text is in English", "This text is in Spanish", "This text is in French"]
}
I would like to set the value of the string in my app depending on the language selected. How can i achieve this?
Thanks so much.