From 7dc260046b79e03063c5dc6d2366aa80fd91c351 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 21 Mar 2016 16:25:16 -0400 Subject: [PATCH] Update the document type quick label model verbose name from 'Quick rename template' to 'Quick label'. --- mayan/apps/documents/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/documents/models.py b/mayan/apps/documents/models.py index 74e1a7b76a..7f32be5832 100644 --- a/mayan/apps/documents/models.py +++ b/mayan/apps/documents/models.py @@ -629,8 +629,8 @@ class DocumentTypeFilename(models.Model): class Meta: ordering = ('filename',) unique_together = ('document_type', 'filename') - verbose_name = _('Quick rename template') - verbose_name_plural = _('Quick rename templates') + verbose_name = _('Quick label') + verbose_name_plural = _('Quick labels') def __str__(self): return self.filename