diff options
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 09740436c..1dc4b6ced 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1210,6 +1210,8 @@ class TargetKey(models.Model): class Meta: unique_together = ('target', 'key') + verbose_name = _(u"Importer - Target key") + verbose_name_plural = _(u"Importer - Targets keys") def __unicode__(self): return u" - ".join([unicode(self.target), self.key[:50]]) |