Projet

Général

Profil

0001-statistics-add-translation-context-to-done-status-fi.patch

Valentin Deniaud, 06 décembre 2022 15:24

Télécharger (935 octets)

Voir les différences:

Subject: [PATCH] statistics: add translation context to done status filter
 (#72109)

 wcs/statistics/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/statistics/views.py
328 328
                options = [
329 329
                    ('_all', _('All')),
330 330
                    ('pending', pgettext_lazy('statistics', 'Open')),
331
                    ('done', _('Done')),
331
                    ('done', pgettext_lazy('statistics', 'Done')),
332 332
                ]
333 333
                for status in waitpoint_status:
334 334
                    options.append((status.id, status.name))
335
-