I am developing a portal with Django. I need that my users can enter texts in multiple languages and I should be available to get it with the locale name:
E.g. name['en'] , name['de']
So for that case, what Django model should I use? Something like Dictionary?
Edit: I found something for translation:
http://code.google.com/p/django-transmeta/
Any others?
I have used django-modeltranslation in many projects, it works fine.
Features
Update:
You can also use some others
But personally I have experience with django-modeltranslation.