From 8cd8742981020e315acc4e70bdf3613fcf68e3a8 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 22 Aug 2013 09:14:06 +0200 Subject: [PATCH] Moved translator comment just above the target string --- django/forms/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/forms.py b/django/forms/forms.py index ec51507981..d8d08e18fe 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -526,9 +526,9 @@ class BoundField(object): """ contents = contents or self.label # Only add the suffix if the label does not end in punctuation. + label_suffix = label_suffix if label_suffix is not None else self.form.label_suffix # Translators: If found as last label character, these punctuation # characters will prevent the default label_suffix to be appended to the label - label_suffix = label_suffix if label_suffix is not None else self.form.label_suffix if label_suffix and contents and contents[-1] not in _(':?.!'): contents = format_html('{0}{1}', contents, label_suffix) widget = self.field.widget