sogo/SoObjects/Appointments/SOGoAptMailSwedishUpdate.wo/SOGoAptMailSwedishUpdate.wod
Francis Lachapelle b651794c5a Added Swedish translation.
Monotone-Parent: 12a59355a419419882f630c0b278d47eefbbd116
Monotone-Revision: af080c9cf7ca32f65f9dd328b779029483bc2da6

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-11-18T23:42:49
Monotone-Branch: ca.inverse.sogo
2009-11-18 23:42:49 +00:00

79 lines
1.2 KiB
Plaintext

OldAptStartDate: WOString {
value = oldStartDate;
dateformat = "%d/%m/%y";
escapeHTML = NO;
}
OldAptStartTime: WOString {
value = oldStartDate;
dateformat = "%H:%M";
escapeHTML = NO;
}
IsNotOldAllDay: WOConditional {
condition = previousApt.isAllDay;
negate = YES;
}
NewAptStartDate: WOString {
value = newStartDate;
dateformat = "%d/%m/%y";
escapeHTML = NO;
}
NewAptStartTime: WOString {
value = newStartDate;
dateformat = "%H:%M";
escapeHTML = NO;
}
IsNotNewAllDay: WOConditional {
condition = apt.isAllDay;
negate = YES;
}
Organizer: WOString {
value = organizerName;
escapeHTML = NO;
}
OldAptLocation: WOString {
value = previousApt.location;
escapeHTML = NO;
}
NewAptLocation: WOString {
value = apt.location;
escapeHTML = NO;
}
IsSubject: WOConditional {
condition = isSubject;
}
IsBody: WOConditional {
condition = isSubject;
negate = YES;
}
Summary: WOString {
value = summary;
escapeHTML = NO;
}
HasNewLocation: WOConditional {
condition = hasNewLocation;
}
HasOldLocation: WOConditional {
condition = hasOldLocation;
}
HasSentBy: WOConditional {
condition = hasSentBy;
}
sentBy: WOString {
value = sentBy;
escapeHTML = NO;
}