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.

link|improve this question

72% accept rate
also, this is a really small and simple app with perhaps 5 or less tiny tables. – sa125 Jan 7 '10 at 9:44
Is every installation supposed to have 1 single language, as opposed to have a language setting per user? – extraneon Jan 7 '10 at 9:59
the app supports language selection per user, so it must support all implemented translations in a single instance – sa125 Jan 7 '10 at 11:39
Duplicate of stackoverflow.com/questions/1984327/… – Van Gale Jan 7 '10 at 15:10
feedback

2 Answers

up vote 2 down vote accepted

I was reading up on my django extensions, and found the django-modeltranslation plugin. It seems to do exactly what you want it to do. If not, leave a comment and I'll delete this answer :)

link|improve this answer
looks good at first glance, I'll have to play with it a bit - thanks! – sa125 Jan 9 '10 at 13:24
feedback

You could take a look at the following thread which seems to be the same question you're asking here.

I wouldn't mind hearing the solution you eventually will be using as sometime in the future I might have the same question:)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.