django-modeltranslation icon indicating copy to clipboard operation
django-modeltranslation copied to clipboard

Translates Django models using a registration approach.

Results 131 django-modeltranslation issues
Sort by recently updated
recently updated
newest added

I added some fields in my Translation Options I had this error when running sync_translation_fields before or after update_translation_fields: ``` File "....modeltranslation/management/commands/sync_translation_fields.py", line 79, in handle field = list(fields)[0] IndexError:...

I need to show/hide some fields depending on other fields values, but `TabbedTranslationAdmin` ignores the fields returned by the `get_fields` method. This is the initial admin class, where the get_fields...

When I try to extends the translations of an app with models already registered for translation, either I get an error or I get an incompletely patched model. Lets say,...

bug

We currently force `null=True` on all translation fields (except for `BooleanField` which has no such option) through the `TranslationField` constructor. Is it really wise to do so? Shouldn't we better...

question
need-decision

Any work around to keep just ONE language tab in the very top of the admin page, and hide each language tab for each field. Sometimes with many fields all...

In Django 1.9 using Postgresql, we have a extra field, JsonField https://docs.djangoproject.com/es/1.9/ref/contrib/postgres/fields/#jsonfield Or can use: https://github.com/bradjasper/django-jsonfield/ This way, you can use a dynamic translation for each field, just store the...

#### I have this special use case : - **Multiple countries** ``` python # settings.py COUNTRY_NAMES = { 'ch': 'Switzerland', 'fr': 'France', 'jp': 'Japan', } ``` - **Each having their...

When fixing issue #204, a slightly different MRO creation was introduced. This unfortunately doesn't work right on Django 1.5/1.4. If there exists get_query_set method in a original manager it's patched....

Hello! Django==1.7.11 django-modeltranslation==0.10.2 When I use `qs.values(...)` for some fields I get KeyError at: https://github.com/deschler/django-modeltranslation/blob/0.10.2/modeltranslation/manager.py#L434 when do `for obj in qs.values(...):`

Modeltranslate already includes convenience admin classes for tabbed translation (e.g. TabbedTranslationAdmin) and it would be great to have equivalent classes for tabbed inlines (i.e. TabbedTranslationStackedInline and TabbedTranslationTabularInline convenience classes).