aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2012-09-24 14:00:00 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2012-09-24 14:00:34 -0500
commita648102890a8c97ece1f6315fde8aa1976581da6 (patch)
tree5cbf3c71722a1b8c49ddbfaa0220d39b11de963c
parent2b28f95b31121e14247770dca1f6a9b6ce8c2d0f (diff)
downloadmediagoblin-a648102890a8c97ece1f6315fde8aa1976581da6.tar.lz
mediagoblin-a648102890a8c97ece1f6315fde8aa1976581da6.tar.xz
mediagoblin-a648102890a8c97ece1f6315fde8aa1976581da6.zip
Too much was marked for translation this gettext message.
Thanks for catching AVRS!
-rw-r--r--mediagoblin/edit/views.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/edit/views.py b/mediagoblin/edit/views.py
index 37fe3ba8..f96301fa 100644
--- a/mediagoblin/edit/views.py
+++ b/mediagoblin/edit/views.py
@@ -284,7 +284,9 @@ def edit_collection(request, collection):
if existing_collection and existing_collection.id != collection.id:
messages.add_message(
- request, messages.ERROR, _('You already have a collection called "%s"!' % request.POST['title']))
+ request, messages.ERROR,
+ _('You already have a collection called "%s"!') % \
+ request.POST['title'])
elif slug_used:
form.slug.errors.append(
_(u'A collection with that slug already exists for this user.'))