aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/moderation/forms.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-11-05 14:43:01 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-11-05 14:43:01 -0600
commitd9271e5d9c7f7608f209c6fb57cc6823fc71bcdd (patch)
tree661c6b42f578efce575ade362c86ce8f6ce07b57 /mediagoblin/moderation/forms.py
parent09b0d5118d794daffecf34849126be34b6dae22b (diff)
downloadmediagoblin-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.py9
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):
"""