From 27da0f8bb2a5e8008ee3d5181e003f536c7f9442 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 8 Oct 2015 19:29:19 -0400 Subject: [PATCH] Add missing translation marker. Closes issue GL#201. --- mayan/apps/documents/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/forms.py b/mayan/apps/documents/forms.py index aa2b34bba0..d5dcd94c14 100644 --- a/mayan/apps/documents/forms.py +++ b/mayan/apps/documents/forms.py @@ -104,7 +104,7 @@ class DocumentTypeSelectForm(forms.Form): as form #1 in the document creation wizard """ document_type = forms.ModelChoiceField( - queryset=DocumentType.objects.all(), label=('Document type') + queryset=DocumentType.objects.all(), label=_('Document type') )