forked from evildmp/Arkestra
-
Notifications
You must be signed in to change notification settings - Fork 1
Multi lingual content
evildmp edited this page Jun 10, 2012
·
8 revisions
https://code.google.com/p/django-modeltranslation/
- has a simple and elegant model registration system
- may not be easy to adapt for to PlaceholderField
https://github.com/fivethreeo/simple-translation
- will require breaking every model in two, for translatable/untranslatable fields - a horrific business.
- known to work with PlaceholderFields (an example in https://github.com/fivethreeo/cmsplugin-blog).
https://github.com/ojii/django-nani https://github.com/KristianOellegaard/django-hvad
- requires changes to every model field requiring translation
- more seriously, incompatible with fields on abstract base classes
http://code.google.com/p/django-transmeta/
- making models translatable looks quite simple
https://github.com/dokterbob/django-multilingual-model django-multilingual-model
- not clear whether it will support FKs
- seems to be a minimal solution
http://code.google.com/p/transdb
- appears abandoned, last updated 2008
http://code.google.com/p/django-multilingual/
- appears abandoned
https://github.com/ojii/django-multilingual-ng
- based on django-multilingual
- abandoned by the developer for nani/hvad's approach