Many translation fixes - see ChangeLog for details

Monotone-Parent: dbdc0f3b0ca4763169734e68363edeeedb85e5d4
Monotone-Revision: edc58b2d2e9fe75c03976eae92aa72c68619ed2b

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-08-05T11:30:23
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2009-08-05 11:30:23 +00:00
parent cc3e9cef5d
commit c3df2a4b46
8 changed files with 227 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-08-05 Ludovic Marcotte <lmarcotte@inverse.ca>
* Added missing files for Hungarian translation
* Fixed the reply / forward ops for many translations
2009-08-03 Ludovic Marcotte <lmarcotte@inverse.ca>
* Dropped the current caching subsystem based on

View File

@ -39,6 +39,9 @@
@end
@interface SOGoMailBrazilianPortugueseForward : SOGoMailForward
@end
@interface SOGoMailCzechForward : SOGoMailForward
@end
@ -54,6 +57,9 @@
@interface SOGoMailGermanForward : SOGoMailForward
@end
@interface SOGoMailHungarianForward : SOGoMailForward
@end
@interface SOGoMailItalianForward : SOGoMailForward
@end
@ -63,4 +69,7 @@
@interface SOGoMailRussianForward : SOGoMailForward
@end
@interface SOGoMailWelshForward : SOGoMailForward
@end
#endif /* SOGOMAILFORWARD_H */

View File

@ -225,6 +225,9 @@
@end
@implementation SOGoMailBrazilianPortugueseForward
@end
@implementation SOGoMailCzechForward
@end
@ -240,6 +243,9 @@
@implementation SOGoMailGermanForward
@end
@implementation SOGoMailHungarianForward
@end
@implementation SOGoMailItalianForward
@end
@ -248,3 +254,6 @@
@implementation SOGoMailRussianForward
@end
@implementation SOGoMailWelshForward
@end

View File

@ -0,0 +1,79 @@
subject: WOString {
value = subject;
escapeHTML = NO;
}
date: WOString {
value = date;
escapeHTML = NO;
}
from: WOString {
value = from;
escapeHTML = NO;
}
newLine: WOString {
value = newLine;
escapeHTML = NO;
}
hasReplyTo: WOConditional {
condition = hasReplyTo;
}
replyTo: WOString {
value = replyTo;
escapeHTML = NO;
}
hasOrganization: WOConditional {
condition = hasOrganization;
}
organization: WOString {
value = organization;
escapeHTML = NO;
}
to: WOString {
value = to;
escapeHTML = NO;
}
hasCc: WOConditional {
condition = hasCc;
}
cc: WOString {
value = cc;
escapeHTML = NO;
}
hasNewsGroups: WOConditional {
condition = hasNewsGroups;
}
newsgroups: WOString {
value = newsgroups;
escapeHTML = NO;
}
hasReferences: WOConditional {
condition = hasReferences;
}
references: WOString {
value = references;
escapeHTML = NO;
}
messageBody: WOString {
value = messageBody;
escapeHTML = NO;
}
signature: WOString {
value = signature;
escapeHTML = NO;
}

View File

@ -0,0 +1,106 @@
outlookMode: WOConditional {
condition = outlookMode;
}
standardMode: WOConditional {
condition = outlookMode;
negate = YES;
}
subject: WOString {
value = subject;
escapeHTML = NO;
}
date: WOString {
value = date;
escapeHTML = NO;
}
from: WOString {
value = from;
escapeHTML = NO;
}
newLine: WOString {
value = newLine;
escapeHTML = NO;
}
hasReplyTo: WOConditional {
condition = hasReplyTo;
}
replyTo: WOString {
value = replyTo;
escapeHTML = NO;
}
hasOrganization: WOConditional {
condition = hasOrganization;
}
organization: WOString {
value = organization;
escapeHTML = NO;
}
to: WOString {
value = to;
escapeHTML = NO;
}
hasCc: WOConditional {
condition = hasCc;
}
cc: WOString {
value = cc;
escapeHTML = NO;
}
hasNewsGroups: WOConditional {
condition = hasNewsGroups;
}
newsgroups: WOString {
value = newsgroups;
escapeHTML = NO;
}
hasReferences: WOConditional {
condition = hasReferences;
}
references: WOString {
value = references;
escapeHTML = NO;
}
messageBody: WOString {
value = messageBody;
escapeHTML = NO;
}
signature: WOString {
value = signature;
escapeHTML = NO;
}
replyPlacementOnTop: WOConditional {
condition = replyPlacementOnTop;
}
replyPlacementOnBottom: WOConditional {
condition = replyPlacementOnTop;
negate = YES;
}
signaturePlacementOnTop: WOConditional {
condition = signaturePlacementOnTop;
}
signaturePlacementOnBottom: WOConditional {
condition = signaturePlacementOnTop;
negate = YES;
}

View File

@ -44,6 +44,9 @@
@end
@interface SOGoMailBrazilianPortugueseReply : SOGoMailReply
@end
@interface SOGoMailCzechReply : SOGoMailReply
@end
@ -59,6 +62,9 @@
@interface SOGoMailGermanReply : SOGoMailReply
@end
@interface SOGoMailHungarianReply : SOGoMailReply
@end
@interface SOGoMailItalianReply : SOGoMailReply
@end
@ -68,4 +74,7 @@
@interface SOGoMailRussianReply : SOGoMailReply
@end
@interface SOGoMailWelshReply : SOGoMailReply
@end
#endif /* SOGOMAILREPLY_H */

View File

@ -108,6 +108,9 @@
@end
@implementation SOGoMailBrazilianPortugueseReply
@end
@implementation SOGoMailCzechReply
@end
@ -123,6 +126,9 @@
@implementation SOGoMailGermanReply
@end
@implementation SOGoMailHungarianReply
@end
@implementation SOGoMailItalianReply
@end
@ -131,3 +137,6 @@
@implementation SOGoMailRussianReply
@end
@implementation SOGoMailWelshReply
@end

View File

@ -5,7 +5,7 @@
Testun: <#subject/><#newLine/>
Dyddiad: <#date/><#newLine/>
Oddi wrth: <#from/><#newLine/>
<#hasReplyTo>Ymateb i: <#replyTo/><#hasOrganization>Sefydliad: <#organization/></#hasOrganization>I: <#to/><#newLine/>
<#hasReplyTo>Ymateb i: <#replyTo/></#hasReplyTo><#hasOrganization>Sefydliad: <#organization/></#hasOrganization>I: <#to/><#newLine/>
<#hasCc>CC: <#cc/></#hasCc><#hasNewsGroups>Grwpiau newyddion: <#newsgroups/></#hasNewsGroups><#hasReferences>Cyfeirnodau: <#references/></#hasReferences><#newLine/>
<#newLine/>
<#messageBody/><#newLine/>