models: translate default value for AttributeRelease.attribute_name

This commit is contained in:
Benjamin Dauvergne 2014-07-16 10:29:37 +02:00
parent 1dcf52823b
commit 3ccf3946b8
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class AttributeRelease(models.Model):
name = models.CharField(verbose_name=_('name'), max_length=64)
attribute_name = models.CharField(max_length=64,
verbose_name=_('attribute name'),
choices=(('', 'None'),))
choices=(('', _('None')),))
class Meta:
verbose_name = _('OAuth2 attribute release')