diff options
author | Joar Wandborg <joar@wandborg.se> | 2013-01-22 14:38:53 +0100 |
---|---|---|
committer | Joar Wandborg <joar@wandborg.se> | 2013-01-22 14:38:53 +0100 |
commit | 55a04f01b881830f164e8a1b0a695dead6cddba3 (patch) | |
tree | 98d3e886e194d16931510127f4f703bddbbb48ba /mediagoblin/user_pages/forms.py | |
parent | 69b5623552a86a7cad92571e937384836cf6165c (diff) | |
download | mediagoblin-55a04f01b881830f164e8a1b0a695dead6cddba3.tar.lz mediagoblin-55a04f01b881830f164e8a1b0a695dead6cddba3.tar.xz mediagoblin-55a04f01b881830f164e8a1b0a695dead6cddba3.zip |
Moved MediaComment form descriptions to apt. place
Diffstat (limited to 'mediagoblin/user_pages/forms.py')
-rw-r--r-- | mediagoblin/user_pages/forms.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mediagoblin/user_pages/forms.py b/mediagoblin/user_pages/forms.py index 9e8ccf01..c7398d84 100644 --- a/mediagoblin/user_pages/forms.py +++ b/mediagoblin/user_pages/forms.py @@ -20,8 +20,11 @@ from mediagoblin.tools.translate import fake_ugettext_passthrough as _ class MediaCommentForm(wtforms.Form): comment_content = wtforms.TextAreaField( - '', - [wtforms.validators.Required()]) + _('Comment'), + [wtforms.validators.Required()], + description=_(u'You can use ' + u'<a href="http://daringfireball.net/projects/markdown/basics">' + u'Markdown</a> for formatting.')) class ConfirmDeleteForm(wtforms.Form): confirm = wtforms.BooleanField( |