From d9271e5d9c7f7608f209c6fb57cc6823fc71bcdd Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 5 Nov 2013 14:43:01 -0600 Subject: [PATCH] Removing strings that should not have been translated --- mediagoblin/moderation/forms.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mediagoblin/moderation/forms.py b/mediagoblin/moderation/forms.py index 5582abdd..72305b29 100644 --- a/mediagoblin/moderation/forms.py +++ b/mediagoblin/moderation/forms.py @@ -17,10 +17,11 @@ import wtforms from mediagoblin.tools.translate import lazy_pass_to_ugettext as _ -ACTION_CHOICES = [(_(u'takeaway'),_(u'Take away privilege')), - (_(u'userban'),_(u'Ban the user')), - (_(u'sendmessage'),(u'Send the user a message')), - (_(u'delete'),_(u'Delete the content'))] +ACTION_CHOICES = [ + (u'takeaway', _(u'Take away privilege')), + (u'userban', _(u'Ban the user')), + (u'sendmessage', _(u'Send the user a message')), + (u'delete', _(u'Delete the content'))] class MultiCheckboxField(wtforms.SelectMultipleField): """ -- 2.25.1