Simple app containing a mixin model that integrates modeltranslation (https://github.com/deschler/django-modeltranslation) into wagtail panels system.
Find a file
Diogo Marques 238e265ec7
Merge pull request #153 from dmarcelino/fix_makemigrations
Fix makemigrations bug when Page has dependencies
2018-01-03 15:05:02 +00:00
docs Remove WagtailTranslationOptions and update docs 2017-12-27 19:43:09 +00:00
wagtail_modeltranslation Merge pull request #153 from dmarcelino/fix_makemigrations 2018-01-03 15:05:02 +00:00
.gitignore Gitignore: add GitEye's/Eclipse's project 2017-12-22 11:40:03 +00:00
.travis.yml Fixed tox and travis for python 3.3 as the latest Django supported is 1.8. 2017-03-06 14:39:43 +00:00
AUTHORS.rst Added package info. 2017-03-06 17:27:39 +00:00
CHANGELOG.txt Added package info. 2017-03-06 17:27:39 +00:00
MANIFEST.in Added package info. 2017-03-06 17:27:39 +00:00
PKG-INFO Added package info. 2017-03-06 17:27:39 +00:00
README.rst Adds caveat to README 2017-12-28 19:48:15 +00:00
runtests.py Adds sub-module makemigrations to override django's 'makemigrations' 2017-12-22 11:40:03 +00:00
screenshot.png Added package info. 2017-03-06 17:27:39 +00:00
setup.py Move Page translation fields to Page table (breaking changes!) 2017-12-22 11:40:03 +00:00
tox.ini Fixed tox and travis for python 3.3 as the latest Django supported is 1.8. 2017-03-06 14:39:43 +00:00

================
Wagtail Modeltranslation
================

This app is built using core features of django-modeltranslation: https://github.com/deschler/django-modeltranslation

It's an alternative approach for i18n support on Wagtail CMS websites.

The wagtail-modeltranslation application is used to translate dynamic content of
existing Wagtail 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 add translations to existing or new projects and is
fully integrated into the Wagtail admin UI.

The advantage of a registration approach is the ability to add translations to
models on a per-app basis. You can use the same app in different projects,
whether or not they use translations, and without touching the original
model class.


.. image:: https://github.com/infoportugal/wagtail-modeltranslation/blob/master/screenshot.png?raw=true
    :target: https://github.com/infoportugal/wagtail-modeltranslation/blob/master/screenshot.png?raw=true


Features
========

- Add translations without changing existing models or views
- Translation fields are stored in the same table (no expensive joins)
- Supports inherited models (abstract and multi-table inheritance)
- Handle more than just text fields
- Wagtail admin integration
- Flexible fallbacks, auto-population and more!
- Default Page model fields has translatable fields by default
- StreamFields are now supported!


Caveat
======

:code:`wagtail-modeltranslation` patches Wagtail's :code:`Page` model with translations fields
:code:`title_xx`, :code:`slug_xx`, :code:`seo_title_xx`, :code:`search_description_xx` and :code:`url_path_xx` where "xx" represents the language code for each translated language. This
is done without migrations through command :code:`sync_page_translation_fields`. Since :code:`Page` model belongs to
Wagtail it's within the realm of possibility that one day Wagtail may add a conflicting field to :code:`Page` thus interfering with :code:`wagtail-modeltranslation`.


Quick start
===========

1. Install :code:`wagtail-modeltranslation`::

    pip install wagtail-modeltranslation

2. Add "wagtail_modeltranslation" to your INSTALLED_APPS setting like this (before all apps that you want to translate)::

    INSTALLED_APPS = (
        ...
        'wagtail_modeltranslation',
        'wagtail_modeltranslation.makemigrations',
    )

3. Add "django.middleware.locale.LocaleMiddleware" to MIDDLEWARE_CLASSES on your settings.py::

    MIDDLEWARE_CLASSES = (
        ...
        'django.middleware.locale.LocaleMiddleware',
    )

4. Enable i18n on settings.py::

    USE_I18N = True

5. Define available languages on settings.py::

    LANGUAGES = (
        ('pt', u'Português'),
        ('es', u'Espanhol'),
        ('fr', u'Francês'),
    )

6. Create translation.py inside the root folder of the app where the model you want to translate exists::

    from .models import Foo
    from modeltranslation.translator import TranslationOptions
    from modeltranslation.decorators import register


    @register(Foo)
    class FooTR(TranslationOptions):
        fields = (
            'body',
        )

7. Run :code:`python manage.py makemigrations` followed by :code:`python manage.py migrate` (repeat every time you add a new language)

8. Run :code:`python manage.py sync_page_translation_fields` (repeat every time you add a new language)

9. If you're adding :code:`wagtail-modeltranslation`:: to an existing site run :code:`python manage.py update_translation_fields`


Upgrade considerations (v0.8)
======================

This version includes breaking changes as some key parts of the app have been re-written. The most important change is that
``Page`` is now patched with translation fields.

To upgrade to this version you need to:

- Replace the ``WagtailTranslationOptions`` with ``TranslationOption`` in all translation.py files
- While optional it's recommended to add ``'wagtail_modeltranslation.makemigrations'`` to your INSTALLED_APPS

Upgrade considerations (v0.6)
======================

This version has some important changes as there was a refactoring to include django-modeltranslation as a dependency instead of
duplicating their code in our version. This allow us to focus on Wagtail admin integration features as django-modeltranslation is
very well mantained and is very quickly to fix problems with the latest Django versions. This way we also keep all the django-modeltranslation
features (if you want you can also customize django-admin, for example). We also provide a new class to create the translation options classes: **WagtailTranslationOptions**
Most of the changes are related to imports as they change from wagtail-modeltranslation to modeltranslation.

To upgrade to this version you need to:

- Replace the ``TranslationOption`` with ``WagtailTranslationOptions`` in all translation.py files
- The import of the register decorator is now ``from modeltranslation.decorators import register``
- The import of translator is now ``from modeltranslation.translator import translator``


Project Home
------------
https://github.com/infoportugal/wagtail-modeltranslation

Documentation
-------------
http://wagtail-modeltranslation.readthedocs.io/