views:

61

answers:

1

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
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
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
Thanks a lot I will look at hem
Ilian Iliev