diff options
Diffstat (limited to 'pykolab/xml/attendee.py')
-rw-r--r-- | pykolab/xml/attendee.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pykolab/xml/attendee.py b/pykolab/xml/attendee.py index a6384e9..cdfe86a 100644 --- a/pykolab/xml/attendee.py +++ b/pykolab/xml/attendee.py @@ -12,13 +12,16 @@ participant_status_labels = { "TENTATIVE": N_("Tentatively Accepted"), "DELEGATED": N_("Delegated"), "COMPLETED": N_("Completed"), - "IN-PROCESS": N_("In Process"), + "IN-PROCESS": N_("Started"), # 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"), + # waiting for libkolabxml to support these (#3472) + #kolabformat.PartCompleted: N_("Completed"), + #kolabformat.PartInProcess: N_("Started"), } def participant_status_label(status): @@ -38,9 +41,9 @@ class Attendee(kolabformat.Attendee): "DECLINED": kolabformat.PartDeclined, "TENTATIVE": kolabformat.PartTentative, "DELEGATED": kolabformat.PartDelegated, - # Not yet implemented - #"COMPLETED": , - #"IN-PROCESS": , + # waiting for libkolabxml to support these (#3472) + #"COMPLETED": kolabformat.PartCompleted, + #"IN-PROCESS": kolabformat.PartInProcess, } # See RFC 2445, 5445 |