Projet

Général

Profil

0001-admin-mark-string-for-translation-13715.patch

Frédéric Péters, 22 octobre 2016 10:12

Télécharger (941 octets)

Voir les différences:

Subject: [PATCH] admin: mark string for translation (#13715)

 wcs/admin/workflows.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
wcs/admin/workflows.py
597 597
        return r.getvalue()
598 598

  
599 599
    def reassign(self):
600
        options = [(None, 'Do nothing'),
601
                    ('remove', _('Remove these forms'))]
600
        options = [(None, _('Do nothing')),
601
                   ('remove', _('Remove these forms'))]
602 602
        for status in self.workflow.get_waitpoint_status():
603 603
            if status.id == self.status.id:
604 604
                continue
605
-