Hi -
I'm trying to figure out the best way to translate actual database values (strings, not date formats or anything complicated) when i18n-ing my application. The most logical thing I could come up with is either hold a column for every language ('description_en', 'description_de', 'description_fr', etc) or have a different db for every language (schema_en, schema_fr, schema_de, ...). Are these the best options, or is there something else I'm missing? thanks.