From a508e7c4133ef8b511fa736c745db3b2a97d264e Mon Sep 17 00:00:00 2001
From: Shawn Khan <shawn@Shawn-Khans-MacBook-Pro.local>
Date: Wed, 17 Aug 2011 13:49:29 -0400
Subject: [PATCH] Changed the title of the Tags area to be more descriptive
and have people be aware of comma separated.
---
mediagoblin/edit/forms.py | 2 +-
mediagoblin/submit/forms.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py
index 2f3ed20..8a65939 100644
|
a
|
b
|
class EditForm(wtforms.Form):
|
| 30 | 30 | [wtforms.validators.Required(message=_("The slug can't be empty"))]) |
| 31 | 31 | description = wtforms.TextAreaField('Description of this work') |
| 32 | 32 | tags = wtforms.TextField( |
| 33 | | _('Tags'), |
| | 33 | _('Tags for your media that are comma separated'), |
| 34 | 34 | [tag_length_validator]) |
| 35 | 35 | |
| 36 | 36 | class EditProfileForm(wtforms.Form): |
diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py
index 4519b05..3d36c08 100644
|
a
|
b
|
class SubmitStartForm(wtforms.Form):
|
| 28 | 28 | [wtforms.validators.Length(min=0, max=500)]) |
| 29 | 29 | description = wtforms.TextAreaField('Description of this work') |
| 30 | 30 | tags = wtforms.TextField( |
| 31 | | _('Tags'), |
| 32 | | [tag_length_validator]) |
| | 31 | _('Tags for your media that are comma separated'), |
| | 32 | [tag_length_validator]) |
| | 33 | No newline at end of file |