django-modeltranslation
django-modeltranslation copied to clipboard
Translates Django models using a registration approach.
Hi, I'm asking for help cause I can't figured out why below is happening. I've got two models in one app. In Django admin, for one model I have language...
I get the following error when registering a native JSONField on Django 1.10: > `django.core.exceptions.ImproperlyConfigured: JSONField is not supported by modeltranslation` Is there anyway to get it properly registered/configured? The...
Hi, I have a suggestion to make, for consistency of django class naming why don't rename the class translation.TranslationOptions to translation.TranslationOption. What do you think?
I would like to know the best way to translate authorization models, like Group and Permission (standard way, meaning, not customized). Modeltranslation works perfectly with my apps, but I don’t...
Add support for `readonly_fields` in tabbed translation fields. This turns out to be not as easy as it sounds. `ModelAdmin` doesn't render readonly fields as form fields. As `tabbed_translation_fields.js` is...
Documentation section on MODELTRANSLATION_LANGUAGES: [github installation.rst](https://github.com/deschler/django-modeltranslation/blob/master/docs/modeltranslation/installation.rst#modeltranslation_languages) / [readthedocs installation.html](http://django-modeltranslation.readthedocs.io/en/latest/installation.html#modeltranslation-languages) states: ``` Default: same as LANGUAGES ``` This is not true if `LANGUAGES` is of following form: ``` LANGUAGES = (...
Hello django-modeltranslation dev team. I'm using Django-modeltranlation 0.12 with Django 1.10 i'm not able to registered my model for translation in **setting.py** ``` import os BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start...
Hi, i'm trying to implement the quill rich text and I have some trouble implementing that in the admin because it don't put the tabs and don't group them. I...
I encounter a problem when I use the django command dumpdata. The initial field on database aren't saved but remplace by the traducted field. A short exemple: ``` models.py ---------...
Hi, Like @russian-master in issue #243, I need to to let users to edit some fields in several languages on frontend (not in admin). But in spite of reviewing the...