From 2f82559a5cb0e51655a0672fa4cd1c17fa45ab61 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 26 Jun 2019 00:12:08 -0400 Subject: [PATCH] Add verbose name for the Redaction model Signed-off-by: Roberto Rosario --- mayan/apps/redactions/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mayan/apps/redactions/models.py b/mayan/apps/redactions/models.py index e47ccef411..06af3f4c20 100644 --- a/mayan/apps/redactions/models.py +++ b/mayan/apps/redactions/models.py @@ -13,3 +13,5 @@ from mayan.apps.converter.models import Transformation class Redaction(Transformation): class Meta: proxy = True + verbose_name = _('Redaction') + verbose_name_plural = _('Redactions')