My application will be available in two languages: English and German. The application will have several XType objects with a description field. How can I translate the XType description field? Does Django support this, or will I have to use another Django application?
class XType(models.Model):
description = models.CharField(max_length=50)
def __unicode__(self):
return self.description
class X(models.Model):
type = models.ForeignKey(XType)
source
share