Any application for i18n models for django in appengine or non-sql?

I work in a project with django and GAE, but I need internationalization for models, I try to use datatrans and django-model-i18n , but both applications use sql in databases heavily and do not work with the application.

Is there any i18n application for level modeling and working with non-SQL databases?

+5
source share
1 answer

It is still the most accurate project for converting the working model field in the modeltranslation application engine , because:

  • Add fields by language in one table and is not a problem in the application engine, possibly in the SQL database.
  • This project “hacks” AdminModel to display a special interface for i18n.
  • Has average activity and is the last
  • To translate in templates and views do not make complex joins, just select.
  • Easy installation
  • In the application, the engine works great for translating third-party models into translators
+1
source