diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-09-05 18:19:24 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-09-05 18:19:24 -0500 |
commit | a237735a70fb7d4a4ffabbf09fdb8f104a24698d (patch) | |
tree | 255924c720b51220a8933489f8d0f00a3c1ae35e | |
parent | 0bc86f8e5c621257ad1b9f8dc77bfff73bf312c7 (diff) | |
download | mediagoblin-a237735a70fb7d4a4ffabbf09fdb8f104a24698d.tar.lz mediagoblin-a237735a70fb7d4a4ffabbf09fdb8f104a24698d.tar.xz mediagoblin-a237735a70fb7d4a4ffabbf09fdb8f104a24698d.zip |
Mark description field's label for translation
-rw-r--r-- | mediagoblin/submit/forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py index 17df6be6..a999c714 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -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]) |