Mark description field's label for translation

This commit is contained in:
Christopher Allan Webber 2011-09-05 18:19:24 -05:00
parent 0bc86f8e5c
commit a237735a70

View 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])