From dd0fc5a714629a4d28866f06ffe142fbd836f2a4 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Sat, 23 May 2009 11:12:34 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: 3b52714060113176005a0886d4a2e1a33ab89ecc Monotone-Revision: 1a93c62b406f528779187ea92a5deb51969697ac Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-05-23T11:12:34 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/Appointments/GNUmakefile | 6 +++++- SoObjects/Appointments/SOGoAptMailDeletion.m | 6 ++++++ SoObjects/Appointments/SOGoAptMailICalReply.m | 6 ++++++ SoObjects/Appointments/SOGoAptMailInvitation.m | 6 ++++++ SoObjects/Appointments/SOGoAptMailUpdate.m | 8 ++++++++ SoObjects/Contacts/GNUmakefile | 2 +- SoObjects/Mailer/GNUmakefile | 2 ++ SoObjects/Mailer/SOGoMailForward.h | 3 +++ SoObjects/Mailer/SOGoMailForward.m | 3 +++ SoObjects/Mailer/SOGoMailReply.h | 3 +++ SoObjects/Mailer/SOGoMailReply.m | 3 +++ UI/Common/GNUmakefile | 2 +- UI/Contacts/GNUmakefile | 2 +- UI/MailPartViewers/GNUmakefile | 2 +- UI/MailerUI/GNUmakefile | 2 +- UI/MainUI/GNUmakefile | 2 +- UI/MainUI/SOGoRootPage.m | 2 +- UI/PreferencesUI/GNUmakefile | 2 +- UI/SOGoUI/SOGoACLAdvisory.h | 9 +++++++++ UI/SOGoUI/SOGoACLAdvisory.m | 9 +++++++++ UI/SOGoUI/SOGoFolderAdvisory.h | 6 ++++++ UI/SOGoUI/SOGoFolderAdvisory.m | 6 ++++++ UI/Scheduler/GNUmakefile | 2 +- 24 files changed, 89 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index e60ee90f8..cdc91d835 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-05-23 Ludovic Marcotte + + * Added Russian tranlation - patch from + Alex Kabakaev + 2009-05-22 Francis Lachapelle * Main/sogod.m (main): verify if the default parameter diff --git a/SoObjects/Appointments/GNUmakefile b/SoObjects/Appointments/GNUmakefile index 13689c16f..056250d54 100644 --- a/SoObjects/Appointments/GNUmakefile +++ b/SoObjects/Appointments/GNUmakefile @@ -38,7 +38,7 @@ Appointments_RESOURCE_FILES += \ Version \ product.plist \ -Appointments_LANGUAGES = Dutch English French German Italian Spanish Welsh +Appointments_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian Appointments_LOCALIZED_RESOURCE_FILES = Localizable.strings @@ -59,6 +59,10 @@ Appointments_COMPONENTS += \ SOGoAptMailGermanICalReply.wo \ SOGoAptMailGermanDeletion.wo \ SOGoAptMailGermanUpdate.wo \ + SOGoAptMailRussianInvitation.wo \ + SOGoAptMailRussianICalReply.wo \ + SOGoAptMailRussianDeletion.wo \ + SOGoAptMailRussianUpdate.wo \ SOGoAptMailItalianInvitation.wo \ SOGoAptMailItalianICalReply.wo \ SOGoAptMailItalianDeletion.wo \ diff --git a/SoObjects/Appointments/SOGoAptMailDeletion.m b/SoObjects/Appointments/SOGoAptMailDeletion.m index 936f39fee..371927667 100644 --- a/SoObjects/Appointments/SOGoAptMailDeletion.m +++ b/SoObjects/Appointments/SOGoAptMailDeletion.m @@ -45,3 +45,9 @@ @implementation SOGoAptMailItalianDeletion @end +@interface SOGoAptMailRussianDeletion : SOGoAptMailNotification +@end + +@implementation SOGoAptMailRussianDeletion +@end + diff --git a/SoObjects/Appointments/SOGoAptMailICalReply.m b/SoObjects/Appointments/SOGoAptMailICalReply.m index 79f7175a5..22a58f517 100644 --- a/SoObjects/Appointments/SOGoAptMailICalReply.m +++ b/SoObjects/Appointments/SOGoAptMailICalReply.m @@ -216,3 +216,9 @@ static NSCharacterSet *wsSet = nil; @implementation SOGoAptMailItalianICalReply @end +@interface SOGoAptMailRussianICalReply : SOGoAptMailICalReply +@end + +@implementation SOGoAptMailRussianICalReply +@end + diff --git a/SoObjects/Appointments/SOGoAptMailInvitation.m b/SoObjects/Appointments/SOGoAptMailInvitation.m index 398c3851b..ffecdf11a 100644 --- a/SoObjects/Appointments/SOGoAptMailInvitation.m +++ b/SoObjects/Appointments/SOGoAptMailInvitation.m @@ -45,3 +45,9 @@ @implementation SOGoAptMailItalianInvitation @end +@interface SOGoAptMailRussianInvitation : SOGoAptMailNotification +@end + +@implementation SOGoAptMailRussianInvitation +@end + diff --git a/SoObjects/Appointments/SOGoAptMailUpdate.m b/SoObjects/Appointments/SOGoAptMailUpdate.m index 3ff6ff326..0898e7238 100644 --- a/SoObjects/Appointments/SOGoAptMailUpdate.m +++ b/SoObjects/Appointments/SOGoAptMailUpdate.m @@ -29,6 +29,14 @@ @implementation SOGoAptMailEnglishUpdate @end +@interface SOGoAptMailRussianUpdate : SOGoAptMailNotification +{ +} +@end + +@implementation SOGoAptMailRussianUpdate +@end + @interface SOGoAptMailFrenchUpdate : SOGoAptMailNotification { } diff --git a/SoObjects/Contacts/GNUmakefile b/SoObjects/Contacts/GNUmakefile index e4801394d..2f02f059a 100644 --- a/SoObjects/Contacts/GNUmakefile +++ b/SoObjects/Contacts/GNUmakefile @@ -22,7 +22,7 @@ Contacts_RESOURCE_FILES += \ Version \ product.plist \ -Contacts_LANGUAGES = Dutch English French German Italian Spanish Welsh +Contacts_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian Contacts_LOCALIZED_RESOURCE_FILES = Localizable.strings diff --git a/SoObjects/Mailer/GNUmakefile b/SoObjects/Mailer/GNUmakefile index 13a464f8d..07863d516 100644 --- a/SoObjects/Mailer/GNUmakefile +++ b/SoObjects/Mailer/GNUmakefile @@ -47,6 +47,8 @@ Mailer_RESOURCE_FILES += \ SOGoMailItalianForward.wo \ SOGoMailSpanishForward.wo \ SOGoMailWelshForward.wo \ + SOGoMailRussianForward.wo \ + SOGoMailRussianReply.wo \ SOGoMailDutchReply.wo \ SOGoMailEnglishReply.wo \ SOGoMailFrenchReply.wo \ diff --git a/SoObjects/Mailer/SOGoMailForward.h b/SoObjects/Mailer/SOGoMailForward.h index c36620bfb..b1ef822d7 100644 --- a/SoObjects/Mailer/SOGoMailForward.h +++ b/SoObjects/Mailer/SOGoMailForward.h @@ -56,4 +56,7 @@ @interface SOGoMailSpanishForward : SOGoMailForward @end +@interface SOGoMailRussianForward : SOGoMailForward +@end + #endif /* SOGOMAILFORWARD_H */ diff --git a/SoObjects/Mailer/SOGoMailForward.m b/SoObjects/Mailer/SOGoMailForward.m index 3957c6292..b51b154c7 100644 --- a/SoObjects/Mailer/SOGoMailForward.m +++ b/SoObjects/Mailer/SOGoMailForward.m @@ -181,3 +181,6 @@ @implementation SOGoMailSpanishForward @end + +@implementation SOGoMailRussianForward +@end diff --git a/SoObjects/Mailer/SOGoMailReply.h b/SoObjects/Mailer/SOGoMailReply.h index 1c396aee0..9f320c27b 100644 --- a/SoObjects/Mailer/SOGoMailReply.h +++ b/SoObjects/Mailer/SOGoMailReply.h @@ -62,4 +62,7 @@ @interface SOGoMailSpanishReply : SOGoMailReply @end +@interface SOGoMailRussianReply : SOGoMailReply +@end + #endif /* SOGOMAILREPLY_H */ diff --git a/SoObjects/Mailer/SOGoMailReply.m b/SoObjects/Mailer/SOGoMailReply.m index c63bc24b9..df5ce7a6b 100644 --- a/SoObjects/Mailer/SOGoMailReply.m +++ b/SoObjects/Mailer/SOGoMailReply.m @@ -109,3 +109,6 @@ @implementation SOGoMailSpanishReply @end + +@implementation SOGoMailRussianReply +@end diff --git a/UI/Common/GNUmakefile b/UI/Common/GNUmakefile index c87282680..200214d87 100644 --- a/UI/Common/GNUmakefile +++ b/UI/Common/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = CommonUI CommonUI_PRINCIPAL_CLASS = CommonUIProduct -CommonUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +CommonUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian CommonUI_OBJC_FILES += \ CommonUIProduct.m \ diff --git a/UI/Contacts/GNUmakefile b/UI/Contacts/GNUmakefile index 5e2207821..a3a5d26e0 100644 --- a/UI/Contacts/GNUmakefile +++ b/UI/Contacts/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = ContactsUI ContactsUI_PRINCIPAL_CLASS = ContactsUIProduct -ContactsUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +ContactsUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian ContactsUI_OBJC_FILES = \ UIxContactsUserFolders.m \ diff --git a/UI/MailPartViewers/GNUmakefile b/UI/MailPartViewers/GNUmakefile index 1f397e237..ed272287f 100644 --- a/UI/MailPartViewers/GNUmakefile +++ b/UI/MailPartViewers/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = MailPartViewers MailPartViewers_PRINCIPAL_CLASS = MailPartViewersProduct -MailPartViewers_LANGUAGES = Dutch English French German Italian Spanish Welsh +MailPartViewers_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian MailPartViewers_OBJC_FILES += \ MailPartViewersProduct.m \ diff --git a/UI/MailerUI/GNUmakefile b/UI/MailerUI/GNUmakefile index 7411c7446..12bda734d 100644 --- a/UI/MailerUI/GNUmakefile +++ b/UI/MailerUI/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = MailerUI MailerUI_PRINCIPAL_CLASS = MailerUIProduct -MailerUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +MailerUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian MailerUI_OBJC_FILES += \ MailerUIProduct.m \ diff --git a/UI/MainUI/GNUmakefile b/UI/MainUI/GNUmakefile index e0b72d000..26e78a548 100644 --- a/UI/MainUI/GNUmakefile +++ b/UI/MainUI/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = MainUI MainUI_PRINCIPAL_CLASS = MainUIProduct -MainUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +MainUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian MainUI_OBJC_FILES += \ MainUIProduct.m \ diff --git a/UI/MainUI/SOGoRootPage.m b/UI/MainUI/SOGoRootPage.m index c3647900d..ce8194299 100644 --- a/UI/MainUI/SOGoRootPage.m +++ b/UI/MainUI/SOGoRootPage.m @@ -51,7 +51,7 @@ static NSArray *supportedLanguages = nil; + (void) initialize { if (!supportedLanguages) - supportedLanguages = [NSArray arrayWithObjects: @"Dutch", @"English", @"French", @"German", @"Italian", @"Spanish", @"Welsh", nil]; + supportedLanguages = [NSArray arrayWithObjects: @"Dutch", @"English", @"French", @"German", @"Italian", @"Spanish", @"Welsh", @"Russian", nil]; } /* accessors */ diff --git a/UI/PreferencesUI/GNUmakefile b/UI/PreferencesUI/GNUmakefile index 019bb371a..22aacc71f 100644 --- a/UI/PreferencesUI/GNUmakefile +++ b/UI/PreferencesUI/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = PreferencesUI PreferencesUI_PRINCIPAL_CLASS = PreferencesUIProduct -PreferencesUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +PreferencesUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian PreferencesUI_OBJC_FILES = \ PreferencesUIProduct.m \ diff --git a/UI/SOGoUI/SOGoACLAdvisory.h b/UI/SOGoUI/SOGoACLAdvisory.h index 844f0a934..bb209792f 100644 --- a/UI/SOGoUI/SOGoACLAdvisory.h +++ b/UI/SOGoUI/SOGoACLAdvisory.h @@ -119,4 +119,13 @@ @interface SOGoACLSpanishRemovalAdvisory : SOGoACLRemovalAdvisory @end +@interface SOGoACLRussianAdditionAdvisory : SOGoACLAdditionAdvisory +@end + +@interface SOGoACLRussianModificationAdvisory : SOGoACLModificationAdvisory +@end + +@interface SOGoACLRussianRemovalAdvisory : SOGoACLRemovalAdvisory +@end + #endif /* SOGOACLADVISORY_H */ diff --git a/UI/SOGoUI/SOGoACLAdvisory.m b/UI/SOGoUI/SOGoACLAdvisory.m index 3637ca137..7bd21fe9f 100644 --- a/UI/SOGoUI/SOGoACLAdvisory.m +++ b/UI/SOGoUI/SOGoACLAdvisory.m @@ -299,3 +299,12 @@ @implementation SOGoACLSpanishRemovalAdvisory @end + +@implementation SOGoACLRussianAdditionAdvisory +@end + +@implementation SOGoACLRussianModificationAdvisory +@end + +@implementation SOGoACLRussianRemovalAdvisory +@end diff --git a/UI/SOGoUI/SOGoFolderAdvisory.h b/UI/SOGoUI/SOGoFolderAdvisory.h index 110af9a74..d45fa216b 100644 --- a/UI/SOGoUI/SOGoFolderAdvisory.h +++ b/UI/SOGoUI/SOGoFolderAdvisory.h @@ -89,4 +89,10 @@ @interface SOGoFolderSpanishRemovalAdvisory : SOGoFolderRemovalAdvisory @end +@interface SOGoFolderRussianAdditionAdvisory : SOGoFolderAdditionAdvisory +@end + +@interface SOGoFolderRussianRemovalAdvisory : SOGoFolderRemovalAdvisory +@end + #endif /* SOGOFOLDERADVISORY_H */ diff --git a/UI/SOGoUI/SOGoFolderAdvisory.m b/UI/SOGoUI/SOGoFolderAdvisory.m index 9a5f49647..e0c4883e4 100644 --- a/UI/SOGoUI/SOGoFolderAdvisory.m +++ b/UI/SOGoUI/SOGoFolderAdvisory.m @@ -254,3 +254,9 @@ @implementation SOGoFolderSpanishRemovalAdvisory @end + +@implementation SOGoFolderRussianAdditionAdvisory +@end + +@implementation SOGoFolderRussianRemovalAdvisory +@end diff --git a/UI/Scheduler/GNUmakefile b/UI/Scheduler/GNUmakefile index 096a92e34..ac32ea9df 100644 --- a/UI/Scheduler/GNUmakefile +++ b/UI/Scheduler/GNUmakefile @@ -6,7 +6,7 @@ BUNDLE_NAME = SchedulerUI SchedulerUI_PRINCIPAL_CLASS = SchedulerUIProduct -SchedulerUI_LANGUAGES = Dutch English French German Italian Spanish Welsh +SchedulerUI_LANGUAGES = Dutch English French German Italian Spanish Welsh Russian SchedulerUI_OBJC_FILES = \ SchedulerUIProduct.m \