From a648102890a8c97ece1f6315fde8aa1976581da6 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 24 Sep 2012 14:00:00 -0500 Subject: [PATCH] Too much was marked for translation this gettext message. Thanks for catching AVRS! --- mediagoblin/edit/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.')) -- 2.25.1