From: Elrond Date: Tue, 5 Feb 2013 15:25:19 +0000 (+0100) Subject: Mark "Collection" for translation in media_collect. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=accb073e8ca9907b1fe88a775c8fe8632e0e2e7f;p=mediagoblin.git Mark "Collection" for translation in media_collect. --- diff --git a/mediagoblin/user_pages/forms.py b/mediagoblin/user_pages/forms.py index c7398d84..e9746a6c 100644 --- a/mediagoblin/user_pages/forms.py +++ b/mediagoblin/user_pages/forms.py @@ -35,7 +35,9 @@ class ConfirmCollectionItemRemoveForm(wtforms.Form): _('I am sure I want to remove this item from the collection')) class MediaCollectForm(wtforms.Form): - collection = QuerySelectField(allow_blank=True, blank_text=_('-- Select --'), get_label='title',) + collection = QuerySelectField( + _('Collection'), + allow_blank=True, blank_text=_('-- Select --'), get_label='title',) note = wtforms.TextAreaField( _('Include a note'), [wtforms.validators.Optional()],)