From 6caf6631239d8e19987176da1a03cd72c364bd32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 22 Oct 2016 10:11:37 +0200 Subject: [PATCH] admin: mark string for translation (#13715) --- wcs/admin/workflows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcs/admin/workflows.py b/wcs/admin/workflows.py index fd129b4..24cc6b6 100644 --- a/wcs/admin/workflows.py +++ b/wcs/admin/workflows.py @@ -597,8 +597,8 @@ class WorkflowStatusPage(Directory): return r.getvalue() def reassign(self): - options = [(None, 'Do nothing'), - ('remove', _('Remove these forms'))] + options = [(None, _('Do nothing')), + ('remove', _('Remove these forms'))] for status in self.workflow.get_waitpoint_status(): if status.id == self.status.id: continue -- 2.9.3