Removing strings that should not have been translated
This commit is contained in:
parent
09b0d5118d
commit
d9271e5d9c
@ -17,10 +17,11 @@
|
|||||||
import wtforms
|
import wtforms
|
||||||
from mediagoblin.tools.translate import lazy_pass_to_ugettext as _
|
from mediagoblin.tools.translate import lazy_pass_to_ugettext as _
|
||||||
|
|
||||||
ACTION_CHOICES = [(_(u'takeaway'),_(u'Take away privilege')),
|
ACTION_CHOICES = [
|
||||||
(_(u'userban'),_(u'Ban the user')),
|
(u'takeaway', _(u'Take away privilege')),
|
||||||
(_(u'sendmessage'),(u'Send the user a message')),
|
(u'userban', _(u'Ban the user')),
|
||||||
(_(u'delete'),_(u'Delete the content'))]
|
(u'sendmessage', _(u'Send the user a message')),
|
||||||
|
(u'delete', _(u'Delete the content'))]
|
||||||
|
|
||||||
class MultiCheckboxField(wtforms.SelectMultipleField):
|
class MultiCheckboxField(wtforms.SelectMultipleField):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user