[Answer]-Django translations not working with Django-cms and djangocms-blog

1👍

This is solved.

  1. First of all the fuzzy had to be removed.

  2. I had to add the parler settings correct into my general settings:

In the documentation of Django-parler (https://pypi.python.org/pypi/django-parler ) they suggest the next settings:

PARLER_LANGUAGES = {
    None: (
        {'code': 'nl',},
        {'code': 'en',},
        {'code': 'fr',},
    ),
}

Instead of

PARLER_LANGUAGES = {
    1: (
        {'code': 'nl',},
        {'code': 'en',},
        {'code': 'fr',},
    ),
}
👤RVE

0👍

AFAIK translations marked as fuzzy are not compiled in the mo files and you must “unfuzzy” them before being available

👤yakky

Leave a comment