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

Is it possible to apply fallback also during queries? Suppose to have 2 languages, english and french, and to use django-modeltranslation to translate articles. Active language is french. All articles...

Consider the following model: ``` class AdvanceBill(models.Model): date = models.DateField() total = models.DecimalField(max_digits=12, decimal_places=2) number = models.CharField(max_length=10) # other fields class Meta: ordering = ("-date", "-number") ``` If I try...

Am I missing something? When I change language in Django's current view slug in url stays the same – it is not translated to newly changed language. Does `django-modeltranslation` supports...

I'm working to implement model translation on several plugins for a site, which has been going fine, but I've noticed an issue with plugins that inherit from the AbstractText class....

At first I must admit that I now use macOS Catalina because my work computer with Linux is not accessable to me because Coronavirus. So, I have init implementation like...

I have a model with 2 fields that are marked as unique_together. One of the fields is being translated by django-modeltranslation. Using standard Django admin on this model works fine,...

bug
need-help

I wrote a Mixin for the django-restframework API View to automatically deliver translations. Here is an example for German and English activated: ``` class AchievementSerializer(TranslatableSerializerMixin, serializers.ModelSerializer): class Meta: model =...

Hi everybody , i think i have a big problem I keep fields like title , rating ,popularity ,... on Production Model. my `rating` and `popularity` fields are integer and...

Project with `MODELTRANSLATION_AUTO_POPULATE = True` now crashes if I register a model that is inherited by another model. My model hierarchy is as follows: ``` class BaseBusinessUnit(Model): # fields class...

_Original author: [email protected] (November 14, 2010 14:26:39)_ Currently it is so, that you have to go through all your models to find untranslated items, and it is counterproductive if you...

enhancement
imported
priority-low
admin