1👍
✅
This is solved.
-
First of all the fuzzy had to be removed.
-
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
- [Answer]-Video.js scub bar not working?
- [Answer]-Restricting access to Django generic views
- [Answer]-Regex search from django.db.connection?
Source:stackexchange.com