I am building django admin application with multi language translation feature. I have tested with django-transmeta, django-linguo and a couple of libraries. The problem with the above libraries is, for instance i am using 20 languages and I have a model called Product and it contains 10 fields. Now the situation is, 20 languages * 10 fields = 200 fields will be shown in add Product, edit Product. It looks nasty. Is there any other alternative to make translation very crispy and simple ?
One more thing, I wanna to translate the whole content in the admin panel depends on the language choose. For example, the following screenshot gives more information https://docs.google.com/file/d/0B6j95vYIfu8eem1OdkNVbXNudm8/edit
Thanks for Advance !!