Skip to content

Commit

Permalink
make Listed localizable (bug 639222)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Balogh committed Mar 7, 2011
1 parent 4f909cb commit bf67e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/addons/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ class AddonUser(caching.CachingMixin, models.Model):
user = UserForeignKey()
role = models.SmallIntegerField(default=amo.AUTHOR_ROLE_OWNER,
choices=amo.AUTHOR_CHOICES)
listed = models.BooleanField(default=True)
listed = models.BooleanField(_(u'Listed'), default=True)
position = models.IntegerField(default=0)

objects = caching.CachingManager()
Expand Down

0 comments on commit bf67e51

Please sign in to comment.