What multinlingual database support for Django 1.3?
I am using Django for quite a while but each time I ask myself the same question again and again.
W开发者_C百科hich multilingual database backend should I use ?
I used django-multilingual
on Django 1.1, django-multilingual-ng
on Django 1.2
I add a look at django-nani
for Django 1.3 but there quite few problems :
- No ModelAdmin API support :
- I cannot modify the TranslatedFields on the save() method since the object is created by a post_signal after.
I which some people overthere could help me find a way to handle multilingual websites.
I like the way multilingual, multilingual-ng and nani handle languages in the admin with tabs.
Take a look a these ressource pages:
- Django Packages Model translation
- Django Packages Internationalization
- Django Wiki Model Internationalization
one solution is to use this projet that is made by the creator of django-multilingual-ng (
django-hvad )
but the probleme is that it's in alpha state.
Have a look at django-transmeta
http://code.google.com/p/django-transmeta/
精彩评论