In my models, I have two options...when I get to a variable that necessitates a selection menu, I can either use a new class or use "choices"...
ie.
class Title(models.Model):
title = models.CharField(max_length=4)
def __unicode__(self):
return self.title
or
LANG_CHOICES = (
('E', 'English'),
('F', 'Francais'),
)
Which method would be better for translation in my project?