From 047f48d39f7c97b4d2cbe236fb9f1af6e5a9f54f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 8 Jun 2019 21:28:43 -0400 Subject: [PATCH] Rename the label and description field for clarity Add the 'document' prefix to the field labels for clarirty. Signed-off-by: Roberto Rosario --- mayan/apps/document_states/workflow_actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/document_states/workflow_actions.py b/mayan/apps/document_states/workflow_actions.py index 0646cb25e0..1e1eb5fe01 100644 --- a/mayan/apps/document_states/workflow_actions.py +++ b/mayan/apps/document_states/workflow_actions.py @@ -19,7 +19,7 @@ DEFAULT_TIMEOUT = 4 # 4 seconds class DocumentPropertiesEditAction(WorkflowAction): fields = { 'document_label': { - 'label': _('Label'), + 'label': _('Document label'), 'class': 'django.forms.CharField', 'kwargs': { 'help_text': _( 'The new label to be assigned to the document. Can be a ' @@ -27,7 +27,7 @@ class DocumentPropertiesEditAction(WorkflowAction): ), 'required': False }, }, 'document_description': { - 'label': _('Description'), + 'label': _('Document description'), 'class': 'django.forms.CharField', 'kwargs': { 'help_text': _( 'The new description to be assigned to the document. '