diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2013-02-05 16:25:19 +0100 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2013-02-05 16:25:19 +0100 |
commit | accb073e8ca9907b1fe88a775c8fe8632e0e2e7f (patch) | |
tree | 5a5c2b3ec1ebe14f366a439cac2ff2ea7ddfee67 | |
parent | 414ba21fda4e610be49fd05fcae3d7e99a897f18 (diff) | |
download | mediagoblin-accb073e8ca9907b1fe88a775c8fe8632e0e2e7f.tar.lz mediagoblin-accb073e8ca9907b1fe88a775c8fe8632e0e2e7f.tar.xz mediagoblin-accb073e8ca9907b1fe88a775c8fe8632e0e2e7f.zip |
Mark "Collection" for translation in media_collect.
-rw-r--r-- | mediagoblin/user_pages/forms.py | 4 |
1 files changed, 3 insertions, 1 deletions
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()],) |