I am at early stage of the development of a Swift package using Fluent database and I am trying to think ahead what I should do to allow easy multiple language support.
In my db, a few tables have a String type id field that will obviously need to be translated in each supported language. Would it be correct to add one field for each language in the model itself (and then select the right field through a localized route), or is there another way to do the translation outside the db, using for example a String Catalog or something ?