2012-10-16 14:52:37 +00:00
|
|
|
================
|
|
|
|
|
Modeltranslation
|
|
|
|
|
================
|
|
|
|
|
|
|
|
|
|
The modeltranslation application can be used to translate dynamic content of
|
2012-10-17 15:02:36 +00:00
|
|
|
existing Django models to an arbitrary number of languages without having to
|
|
|
|
|
change the original model classes. It uses a registration approach (comparable
|
|
|
|
|
to Django's admin app) to be able to add translations to existing or new
|
|
|
|
|
projects and is fully integrated into the Django admin backend.
|
2012-10-16 14:52:37 +00:00
|
|
|
|
|
|
|
|
The advantage of a registration approach is the ability to add translations to
|
2012-10-17 15:02:36 +00:00
|
|
|
models on a per-app basis. You can use the same app in different projects,
|
2012-10-16 14:52:37 +00:00
|
|
|
may they use translations or not, and you never have to touch the original
|
|
|
|
|
model class.
|
|
|
|
|
|
|
|
|
|
|
2012-11-10 23:24:27 +00:00
|
|
|
.. image:: https://travis-ci.org/deschler/django-modeltranslation.png?branch=master
|
2012-10-24 15:46:39 +00:00
|
|
|
:target: https://travis-ci.org/deschler/django-modeltranslation
|
|
|
|
|
|
|
|
|
|
|
2012-10-16 14:52:37 +00:00
|
|
|
Features
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
- Add translations without changing existing models
|
2012-11-17 00:36:41 +00:00
|
|
|
- Fast, because translation fields are stored in the same table
|
2012-10-16 14:52:37 +00:00
|
|
|
- Supports inherited models
|
2012-11-17 00:36:41 +00:00
|
|
|
- Django admin support
|
|
|
|
|
- Unlimited number of target languages
|
2012-10-16 14:52:37 +00:00
|
|
|
|
|
|
|
|
|
2012-10-22 09:57:52 +00:00
|
|
|
Project Home
|
2012-10-17 13:02:22 +00:00
|
|
|
------------
|
|
|
|
|
https://github.com/deschler/django-modeltranslation
|
2012-10-16 14:52:37 +00:00
|
|
|
|
2012-10-17 13:02:22 +00:00
|
|
|
Documentation
|
|
|
|
|
-------------
|
2012-11-14 14:21:22 +00:00
|
|
|
https://django-modeltranslation.readthedocs.org/en/latest/
|
2012-10-16 14:52:37 +00:00
|
|
|
|
2012-10-22 09:57:52 +00:00
|
|
|
Mailing List
|
2012-10-17 13:02:22 +00:00
|
|
|
------------
|
|
|
|
|
http://groups.google.com/group/django-modeltranslation
|