Merge remote branch 'remotes/manolinux/683_text_separate_tags_by_commas_and_spaces'

* remotes/manolinux/683_text_separate_tags_by_commas_and_spaces:
  Fix the text "Seperate tags by commas and spaces" since spaces are not used to seperate anymore.
This commit is contained in:
Elrond 2011-11-27 23:23:20 +01:00
commit 088c59545f
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class EditForm(wtforms.Form):
_('Tags'), _('Tags'),
[tag_length_validator], [tag_length_validator],
description=_( description=_(
"Seperate tags by commas or spaces.")) "Seperate tags by commas."))
slug = wtforms.TextField( slug = wtforms.TextField(
_('Slug'), _('Slug'),
[wtforms.validators.Required(message=_("The slug can't be empty"))], [wtforms.validators.Required(message=_("The slug can't be empty"))],

View File

@ -32,4 +32,4 @@ class SubmitStartForm(wtforms.Form):
_('Tags'), _('Tags'),
[tag_length_validator], [tag_length_validator],
description=_( description=_(
"Seperate tags by commas or spaces.")) "Seperate tags by commas."))