From: Matthijs Kooijman Date: Fri, 1 Feb 2008 10:51:20 +0000 (+0100) Subject: * Make the option for Influence.status translatable. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=50d53a0b193e533b67672639c3baadf5bc77f863;p=matthijs%2Fprojects%2Fxerxes.git * Make the option for Influence.status translatable. --- diff --git a/influences/models.py b/influences/models.py index df1ba79..aefa83c 100644 --- a/influences/models.py +++ b/influences/models.py @@ -21,10 +21,10 @@ class Character(models.Model): class Influence(models.Model): STATUS_CHOICES = ( - ('N', 'New'), - ('U', 'Under discussion'), - ('P', 'Processing'), - ('D', 'Done'), + ('N', _('New')), + ('U', _('Under discussion')), + ('P', _('Processing')), + ('D', _('Done')), ) created = models.DateField(auto_now_add=1, verbose_name = _("Creation time")) modified = models.DateField(auto_now=1, verbose_name = _("Modification time"))