mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-03 22:22:19 +00:00
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:
@@ -0,0 +1,11 @@
|
||||
<#IsSubject>L'appuntamento fissato in data <#OldAptStartDate /> alle ore <#OldAptStartTime /> è stato modificato </#IsSubject>
|
||||
<#IsBody>
|
||||
Questo appuntamento, fissato precedentemete in data <#OldAptStartDate />
|
||||
alle ore <#OldAptStartTime /> è 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;
|
||||
}
|
||||
Reference in New Issue
Block a user