From 598715430626e583c9967b9c260a638c47491d4a Mon Sep 17 00:00:00 2001 From: wolfgang Date: Wed, 21 May 2008 14:58:41 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1427 d1b88da0-ebda-0310-925b-ed51d893ca5b --- .../SOGoAptMailDutchDeletion.html | 4 ++ .../SOGoAptMailDutchDeletion.wod | 34 ++++++++++++++ .../SOGoAptMailDutchICalReply.html | 4 ++ .../SOGoAptMailDutchICalReply.wod | 33 +++++++++++++ .../SOGoAptMailDutchInvitation.html | 7 +++ .../SOGoAptMailDutchInvitation.wod | 34 ++++++++++++++ .../SOGoAptMailDutchRemoval.html | 4 ++ .../SOGoAptMailDutchRemoval.wod | 34 ++++++++++++++ .../SOGoAptMailDutchUpdate.html | 8 ++++ .../SOGoAptMailDutchUpdate.wod | 46 +++++++++++++++++++ .../SOGoAptMailSpanishDeletion.html | 4 ++ .../SOGoAptMailSpanishDeletion.wod | 34 ++++++++++++++ .../SOGoAptMailSpanishICalReply.html | 4 ++ .../SOGoAptMailSpanishICalReply.wod | 33 +++++++++++++ .../SOGoAptMailSpanishInvitation.html | 7 +++ .../SOGoAptMailSpanishInvitation.wod | 34 ++++++++++++++ .../SOGoAptMailSpanishRemoval.html | 4 ++ .../SOGoAptMailSpanishRemoval.wod | 34 ++++++++++++++ .../SOGoAptMailSpanishUpdate.html | 8 ++++ .../SOGoAptMailSpanishUpdate.wod | 46 +++++++++++++++++++ 20 files changed, 416 insertions(+) create mode 100644 SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.html create mode 100644 SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.wod create mode 100644 SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.html create mode 100644 SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.wod create mode 100644 SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.html create mode 100644 SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.wod create mode 100644 SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.html create mode 100644 SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.wod create mode 100644 SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.html create mode 100644 SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.wod create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.html create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.wod create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.html create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.wod create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.html create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.wod create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.html create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.wod create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.html create mode 100644 SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.wod diff --git a/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.html b/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.html new file mode 100644 index 00000000..2353f8f3 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.html @@ -0,0 +1,4 @@ +<#IsSubject>Appointment <#AptStartDate /> at <#AptStartTime /> has been cancelled +<#IsBody> +The appointment at <#AptStartDate /> <#AptStartTime /> has been cancelled by <#Organizer />. + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.wod b/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchDeletion.wo/SOGoAptMailDutchDeletion.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.html b/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.html new file mode 100644 index 00000000..c861c271 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.html @@ -0,0 +1,4 @@ +<#IsSubject>Re: rendez-vous le <#AptStartDate/> à <#AptStartTime/> +<#IsBody> +<#Attendee/> has <#HasAccepted>accepted<#HasDeclined>declined your invitation. + diff --git a/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.wod b/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.wod new file mode 100644 index 00000000..71a95461 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchICalReply.wo/SOGoAptMailDutchICalReply.wod @@ -0,0 +1,33 @@ +AptStartDate: WOString { + value = startDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = startDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Attendee: WOString { + value = attendee.cnWithoutQuotes; + escapeHTML = NO; +} + +HasAccepted: WOConditional { + condition = hasAccepted; +} + +HasDeclined: WOConditional { + condition = hasDeclined; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.html b/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.html new file mode 100644 index 00000000..4d6bbab4 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.html @@ -0,0 +1,7 @@ +<#IsSubject>Appointment on <#AptStartDate /> at <#AptStartTime /> +<#IsBody> +You're invited by <#Organizer /> to a meeting. +<#HasHomePageURL> +Please make a decision for this invitation at <#HomePageURL />. + + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.wod b/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchInvitation.wo/SOGoAptMailDutchInvitation.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.html b/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.html new file mode 100644 index 00000000..32fdc262 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.html @@ -0,0 +1,4 @@ +<#IsSubject>Removed from appointment <#AptStartDate /> at <#AptStartTime /> +<#IsBody> +You have been removed by <#Organizer /> from the appointment scheduled at <#AptStartDate /> <#AptStartTime />. + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.wod b/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchRemoval.wo/SOGoAptMailDutchRemoval.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.html b/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.html new file mode 100644 index 00000000..6a733247 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.html @@ -0,0 +1,8 @@ +<#IsSubject>The appointment for the <#OldAptStartDate /> at <#OldAptStartTime /> has changed +<#IsBody> +This appointment, previously set for <#OldAptStartDate /> +at <#OldAptStartTime /> is now scheduled for <#NewAptStartDate /> at <#NewAptStartTime /> +<#HasHomePageURL> +Please make a decision for these new settings at <#HomePageURL />. + + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.wod b/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.wod new file mode 100644 index 00000000..3dccef2a --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailDutchUpdate.wo/SOGoAptMailDutchUpdate.wod @@ -0,0 +1,46 @@ +OldAptStartDate: WOString { + value = oldStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +OldAptStartTime: WOString { + value = oldStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +NewAptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +NewAptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.html b/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.html new file mode 100644 index 00000000..2353f8f3 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.html @@ -0,0 +1,4 @@ +<#IsSubject>Appointment <#AptStartDate /> at <#AptStartTime /> has been cancelled +<#IsBody> +The appointment at <#AptStartDate /> <#AptStartTime /> has been cancelled by <#Organizer />. + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.wod b/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishDeletion.wo/SOGoAptMailSpanishDeletion.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.html b/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.html new file mode 100644 index 00000000..c861c271 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.html @@ -0,0 +1,4 @@ +<#IsSubject>Re: rendez-vous le <#AptStartDate/> à <#AptStartTime/> +<#IsBody> +<#Attendee/> has <#HasAccepted>accepted<#HasDeclined>declined your invitation. + diff --git a/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.wod b/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.wod new file mode 100644 index 00000000..71a95461 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishICalReply.wo/SOGoAptMailSpanishICalReply.wod @@ -0,0 +1,33 @@ +AptStartDate: WOString { + value = startDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = startDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Attendee: WOString { + value = attendee.cnWithoutQuotes; + escapeHTML = NO; +} + +HasAccepted: WOConditional { + condition = hasAccepted; +} + +HasDeclined: WOConditional { + condition = hasDeclined; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.html b/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.html new file mode 100644 index 00000000..4d6bbab4 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.html @@ -0,0 +1,7 @@ +<#IsSubject>Appointment on <#AptStartDate /> at <#AptStartTime /> +<#IsBody> +You're invited by <#Organizer /> to a meeting. +<#HasHomePageURL> +Please make a decision for this invitation at <#HomePageURL />. + + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.wod b/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishInvitation.wo/SOGoAptMailSpanishInvitation.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.html b/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.html new file mode 100644 index 00000000..32fdc262 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.html @@ -0,0 +1,4 @@ +<#IsSubject>Removed from appointment <#AptStartDate /> at <#AptStartTime /> +<#IsBody> +You have been removed by <#Organizer /> from the appointment scheduled at <#AptStartDate /> <#AptStartTime />. + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.wod b/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.wod new file mode 100644 index 00000000..3e37496c --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishRemoval.wo/SOGoAptMailSpanishRemoval.wod @@ -0,0 +1,34 @@ +AptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +AptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} diff --git a/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.html b/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.html new file mode 100644 index 00000000..6a733247 --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.html @@ -0,0 +1,8 @@ +<#IsSubject>The appointment for the <#OldAptStartDate /> at <#OldAptStartTime /> has changed +<#IsBody> +This appointment, previously set for <#OldAptStartDate /> +at <#OldAptStartTime /> is now scheduled for <#NewAptStartDate /> at <#NewAptStartTime /> +<#HasHomePageURL> +Please make a decision for these new settings at <#HomePageURL />. + + \ No newline at end of file diff --git a/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.wod b/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.wod new file mode 100644 index 00000000..3dccef2a --- /dev/null +++ b/SoObjects/Appointments/SOGoAptMailSpanishUpdate.wo/SOGoAptMailSpanishUpdate.wod @@ -0,0 +1,46 @@ +OldAptStartDate: WOString { + value = oldStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +OldAptStartTime: WOString { + value = oldStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +NewAptStartDate: WOString { + value = newStartDate; + dateformat = "%d/%m/%y"; + escapeHTML = NO; +} + +NewAptStartTime: WOString { + value = newStartDate; + dateformat = "%H:%M"; + escapeHTML = NO; +} + +Organizer: WOString { + value = newApt.organizer.cnWithoutQuotes; + escapeHTML = NO; +} + +HasHomePageURL: WOConditional { + condition = homePageURL.length; +} + +HomePageURL: WOString { + value = appointmentURL; + escapeHTML = NO; +} + +IsSubject: WOConditional { + condition = isSubject; +} + +IsBody: WOConditional { + condition = isSubject; + negate = YES; +} -- 2.39.5