I have a model that has multiple text properties - title, short and long description etc. I want to have multilanguage site so I need a way to easy by able to add new languages and translations for this field for every item. What is the best way to achieve this?
+1
A:
Django has built-in support for I18N (read internationalization):
Some possible multilingual model candidates:
The MYYN
2010-09-11 11:00:20
I know this but as far as I know i18n is used to translate static text. In my case I want users to be able to write these text in multiple languages for single object.
Ilian Iliev
2010-09-11 11:02:31
Included a link to list of 9 django add-ons for multiple languages in models. I haven't tried any of these yet, though.
The MYYN
2010-09-11 11:06:46
Thanks a lot I will look at hem
Ilian Iliev
2010-09-11 12:56:39