diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-11-05 14:43:01 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-11-05 14:43:01 -0600 |
commit | d9271e5d9c7f7608f209c6fb57cc6823fc71bcdd (patch) | |
tree | 661c6b42f578efce575ade362c86ce8f6ce07b57 /mediagoblin/moderation/forms.py | |
parent | 09b0d5118d794daffecf34849126be34b6dae22b (diff) | |
download | mediagoblin-d9271e5d9c7f7608f209c6fb57cc6823fc71bcdd.tar.lz mediagoblin-d9271e5d9c7f7608f209c6fb57cc6823fc71bcdd.tar.xz mediagoblin-d9271e5d9c7f7608f209c6fb57cc6823fc71bcdd.zip |
Removing strings that should not have been translated
Diffstat (limited to 'mediagoblin/moderation/forms.py')
-rw-r--r-- | mediagoblin/moderation/forms.py | 9 |
1 files 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): """ |