sogo/SoObjects/Appointments/SOGoAptMailRussianUpdate.wo/SOGoAptMailRussianUpdate.wod
Ludovic Marcotte f53dcdd10d Added missing Russian files and updated German translation
Monotone-Parent: 6bcbf38fda24078ff8ec9c45526f9457cf006d0e
Monotone-Revision: ef6a3721ce15e46898bf17beffc20e0a010566e8

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-05-24T10:11:59
Monotone-Branch: ca.inverse.sogo
2009-05-24 10:11:59 +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;
}