django-modeltranslation
django-modeltranslation copied to clipboard
Translates Django models using a registration approach.
I'm writing an app which has translation for `en` and `fa`. I've added `content` to translation fields, when I want to add a post to my app it shows me...
I've noticed that it can be very confusing when fields are translated but the list-display in admin only shows one field in the current language. I thought to render the...
Hey guys, django as this feature in admin to display to or more properties in the same line  You can add this...
I got an exception after upgrading modeltranslation and after some debugging i finally found the cause that i like to share here. It's not said the issue is with modeltranslation.......
Hi guys, I'm using your package (v0.12.1) and it works great except one "styling" glitch. In the django admin (django 1.11.5) the default language tab is rendered twice when selecting...
Hello! In my Django project I want to use your app. I successfully install app and make settings, also registered models for translation as it was recommended in docs. **Question**:...
In model I have FK. In admin sorting by this field rely on default value (but not language-specific). There is example of the query ``` ... ORDER BY "some"."name" DESC...
Hello! I'm using Django 1.10.7 and i got problems with modeltranslation. I have models with multiple languages, default is Slovene (sl), so when i'am trying to do next things, i'm...
We have a legacy database with fields like: `widget_name`, `widget_name_es`, `widget_name_de` The main language is English and this is stored in `widget_name`. The other columns contain the respective translations. We're...
Is it somehow possible to gain such a functionality: - I have multiple fields which have translations - in admin for every field are generated language tabs - I need...