diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2016-07-22 15:28:21 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2016-07-22 15:28:21 +0200 |
commit | eb2aeb99ae7eb3b278a5ec9ca52c81ebd669dcf5 (patch) | |
tree | 9b9840d6e37eb0e421b926c9ed12645cfb1c82ba /pykolab/xml | |
parent | d71e26c1a39ddf0cda75b66399810745861631a7 (diff) | |
download | pykolab-eb2aeb99ae7eb3b278a5ec9ca52c81ebd669dcf5.tar.gz |
T1373: Fix untraslated "PENDING" label in invitation notification
Summary:
Fixes T1373
Note: This could be also fixed by using "NEEDS-ACTION" label in wallace intead of "PENDING".
Reviewers: #pykolab_developers, vanmeeuwen
Reviewed By: #pykolab_developers, vanmeeuwen
Maniphest Tasks: T1373
Differential Revision: https://git.kolab.org/D198
Diffstat (limited to 'pykolab/xml')
-rw-r--r-- | pykolab/xml/attendee.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pykolab/xml/attendee.py b/pykolab/xml/attendee.py index d7b9cbb..e7d0e23 100644 --- a/pykolab/xml/attendee.py +++ b/pykolab/xml/attendee.py @@ -13,6 +13,7 @@ participant_status_labels = { "DELEGATED": N_("Delegated"), "IN-PROCESS": N_("Started"), "COMPLETED": N_("Completed"), + "PENDING": N_("Pending"), # support integer values, too kolabformat.PartNeedsAction: N_("Needs Action"), kolabformat.PartAccepted: N_("Accepted"), |