diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-12-28 15:17:01 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-12-28 15:17:01 +0100 |
commit | b58198bd8233bf97075ecea085bcf103a370670a (patch) | |
tree | 3ef77dc64b91f330e4d3e12982e38470611d6836 /pykolab/xml | |
parent | 602e178e83a32d24f9a3729626b58aa12f14ce63 (diff) | |
download | pykolab-b58198bd8233bf97075ecea085bcf103a370670a.tar.gz |
Fix the order of inprocess/completed
Diffstat (limited to 'pykolab/xml')
-rw-r--r-- | pykolab/xml/attendee.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pykolab/xml/attendee.py b/pykolab/xml/attendee.py index 10fd006..d7b9cbb 100644 --- a/pykolab/xml/attendee.py +++ b/pykolab/xml/attendee.py @@ -11,16 +11,16 @@ participant_status_labels = { "DECLINED": N_("Declined"), "TENTATIVE": N_("Tentatively Accepted"), "DELEGATED": N_("Delegated"), - "COMPLETED": N_("Completed"), "IN-PROCESS": N_("Started"), + "COMPLETED": N_("Completed"), # support integer values, too kolabformat.PartNeedsAction: N_("Needs Action"), kolabformat.PartAccepted: N_("Accepted"), kolabformat.PartDeclined: N_("Declined"), kolabformat.PartTentative: N_("Tentatively Accepted"), kolabformat.PartDelegated: N_("Delegated"), - kolabformat.PartCompleted: N_("Completed"), kolabformat.PartInProcess: N_("Started"), + kolabformat.PartCompleted: N_("Completed"), } def participant_status_label(status): @@ -40,8 +40,8 @@ class Attendee(kolabformat.Attendee): "DECLINED": kolabformat.PartDeclined, "TENTATIVE": kolabformat.PartTentative, "DELEGATED": kolabformat.PartDelegated, - "COMPLETED": kolabformat.PartCompleted, "IN-PROCESS": kolabformat.PartInProcess, + "COMPLETED": kolabformat.PartCompleted, } # See RFC 2445, 5445 |