I would like to implement an app with multiple languages support.
I would like to use core data but I don’t know how to feature the different languages.
Do I have to create two separate databases? What is the best approach?!
Thanks you all guys, yassa
I have finally found a working solution, but I don’t know if this is the best approach.
I’ve only one database, but in its schema, for each main entity, I’ve create another entity to store translations in many different languages:
entity (1:M) entity_translation
In my translation tables, I’ve a “language” column to store information about the locale to with the row is referring to.
Hope it helps,
yassa