From: Christopher Allan Webber Date: Mon, 24 Sep 2012 19:00:00 +0000 (-0500) Subject: Too much was marked for translation this gettext message. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a648102890a8c97ece1f6315fde8aa1976581da6;p=mediagoblin.git Too much was marked for translation this gettext message. Thanks for catching AVRS! --- 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.'))