diff --git a/ucs/kolab-ucs-syntax-classes.py b/ucs/kolab-ucs-syntax-classes.py index 5cc7706..e065ec3 100644 --- a/ucs/kolab-ucs-syntax-classes.py +++ b/ucs/kolab-ucs-syntax-classes.py @@ -1,31 +1,31 @@ -class KolablInvitationPolicies(select): +class KolabInvitationPolicies(select): choices = [ ('',''), ('ALL_MANUAL', 'Manually handle all invitations'), ('ALL_ACCEPT', 'Accept all invitations'), ('ALL_REJECT', 'Reject all invitations'), ('ALL_UPDATE', 'Update all invitations'), ('ALL_UPDATE_AND_NOTIFY', 'Update all invitations and notify user'), ('ALL_SAVE_TO_FOLDER', 'Save all invitations to folder'), ('ALL_SAVE_AND_FORWARD', 'Save all invitations to folder and forward invitation'), ('ALL_CANCEL_DELETE', 'Delete canceled invitations'), ('ALL_CANCEL_DELETE_AND_NOTIFY', 'Delete canceled invitations and notify user'), ('EVENT_MANUAL', 'Manually handle event invitations'), ('EVENT_ACCEPT', 'Accept event invitations'), ('EVENT_ACCEPT_IF_NO_CONFLICT', 'Accept event invitations if there is no conflict'), ('EVENT_TENTATIVE', 'Accept event invitations tentatively'), ('EVENT_TENTATIVE_IF_NO_CONFLICT', 'Accept event invitations tentatively if there is no conflict'), ('EVENT_REJECT', 'Reject event invitations'), ('EVENT_REJECT_IF_CONFLICT', 'Reject event invitations in case of a conflict'), ('EVENT_SAVE_TO_FOLDER', 'Save events to folder'), ('EVENT_SAVE_AND_FORWARD', 'Save events to folder and forward original invitation'), ('TASK_MANUAL', 'Manually handle task invitations'), ('TASK_ACCEPT', 'Accept task invitations '), ('TASK_REJECT', 'Reject task invitations'), ('TASK_UPDATE', 'Update task invitations'), ('TASK_UPDATE_AND_NOTIFY', 'Update tasks and notify user'), ('TASK_SAVE_TO_FOLDER', 'Save tasks invitations to folder'), ('TASK_SAVE_AND_FORWARD', 'Save task invitations to folder and forward invitation'), ('TASK_CANCEL_DELETE', 'Delete canceled tasks'), ('TASK_CANCEL_DELETE_AND_NOTIFY', 'Delete canceled tasks and notify user'), ]