Monotone-Parent: 3ba428cb7437bcf800f19f8b140f409be05bc889

Monotone-Revision: c96deb18e014638530c03d2784a58f6015e64407

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-03-24T19:56:15
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-03-24 19:56:15 +00:00
parent e344082bd1
commit b13dfdd3d8
27 changed files with 1529 additions and 0 deletions
@@ -0,0 +1,11 @@
<#IsSubject>L'appuntamento fissato in data <#OldAptStartDate /> alle ore <#OldAptStartTime /> &egrave; stato modificato </#IsSubject>
<#IsBody>
Questo appuntamento, fissato precedentemete in data <#OldAptStartDate />
alle ore <#OldAptStartTime /> &egrave; ora programmato il <#NewAptStartDate
/> alle ore <#NewAptStartTime
/>
<#HasHomePageURL>
Per confermare o disdire vai alla pagina <#HomePageURL
/>.
</#HasHomePageURL>
</#IsBody>
@@ -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;
}