Model field translations

Hey everyone, I’m in need of translations on my model fields (i.e. name). I see there are quite a few solutions in the field, however I’m unsure of which is most practical. I can’t share full context but let’s say that I have a model for news articles:

class Article(models.Model):
    title = models.CharField(max_length=200)

Ideally my API would return the title in the locale of the user. Any suggestions from Django experts? I would like to prevent overcomplexity.

Hello there.
Have you considered django-modeltranslation?

Thanks! Just gave it a try and seems to work very well.