Mark description field's label for translation
authorChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 5 Sep 2011 23:19:24 +0000 (18:19 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 5 Sep 2011 23:19:24 +0000 (18:19 -0500)
mediagoblin/submit/forms.py

index 17df6be6c4ed8180efd620ca07059a581fbe4b24..a999c714a747aa05a2fe467d070b013a29ebff3f 100644 (file)
@@ -26,7 +26,8 @@ class SubmitStartForm(wtforms.Form):
     title = wtforms.TextField(
         _('Title'),
         [wtforms.validators.Length(min=0, max=500)])
-    description = wtforms.TextAreaField('Description of this work')
+    description = wtforms.TextAreaField(
+        _('Description of this work'))
     tags = wtforms.TextField(
         _('Tags'),
         [tag_length_validator])