-rw-r--r-- | core/pim/datebook/datebookweeklst.cpp | 4 | ||||
-rw-r--r-- | core/pim/today/plugins/addressbook/addressbook.pro | 19 | ||||
-rw-r--r-- | core/pim/today/plugins/addressbook/addresspluginconfig.cpp | 1 |
3 files changed, 21 insertions, 3 deletions
diff --git a/core/pim/datebook/datebookweeklst.cpp b/core/pim/datebook/datebookweeklst.cpp index 7451abc..9089fe9 100644 --- a/core/pim/datebook/datebookweeklst.cpp +++ b/core/pim/datebook/datebookweeklst.cpp | |||
@@ -100,8 +100,8 @@ DateBookWeekLstDayHdr::DateBookWeekLstDayHdr(const QDate &d, bool /*onM*/, | |||
100 | date=d; | 100 | date=d; |
101 | 101 | ||
102 | static const char *wdays="MTWTFSS"; | 102 | static const char *wdays={"MTWTFSS"}; |
103 | char day=wdays[d.dayOfWeek()-1]; | 103 | char day=wdays[d.dayOfWeek()-1]; |
104 | 104 | ||
105 | label->setText( QString(QChar(day)) + " " + | 105 | label->setText( QString(QObject::tr(QString(QChar(day)))) + " " + |
106 | QString::number(d.day()) ); | 106 | QString::number(d.day()) ); |
107 | add->setText("+"); | 107 | add->setText("+"); |
diff --git a/core/pim/today/plugins/addressbook/addressbook.pro b/core/pim/today/plugins/addressbook/addressbook.pro index fd7d786..3ee5bce 100644 --- a/core/pim/today/plugins/addressbook/addressbook.pro +++ b/core/pim/today/plugins/addressbook/addressbook.pro | |||
@@ -19,4 +19,23 @@ DESTDIR = $(OPIEDIR)/plugins/today | |||
19 | TARGET = todayaddressbookplugin | 19 | TARGET = todayaddressbookplugin |
20 | 20 | ||
21 | TRANSLATIONS = ../../../../../i18n/de/libtodayaddressbookplugin.ts \ | ||
22 | ../../../../../i18n/xx/libtodayaddressbookplugin.ts \ | ||
23 | ../../../../../i18n/en/libtodayaddressbookplugin.ts \ | ||
24 | ../../../../../i18n/es/libtodayaddressbookplugin.ts \ | ||
25 | ../../../../../i18n/fr/libtodayaddressbookplugin.ts \ | ||
26 | ../../../../../i18n/hu/libtodayaddressbookplugin.ts \ | ||
27 | ../../../../../i18n/ja/libtodayaddressbookplugin.ts \ | ||
28 | ../../../../../i18n/ko/libtodayaddressbookplugin.ts \ | ||
29 | ../../../../../i18n/no/libtodayaddressbookplugin.ts \ | ||
30 | ../../../../../i18n/pl/libtodayaddressbookplugin.ts \ | ||
31 | ../../../../../i18n/pt/libtodayaddressbookplugin.ts \ | ||
32 | ../../../../../i18n/pt_BR/libtodayaddressbookplugin.ts \ | ||
33 | ../../../../../i18n/sl/libtodayaddressbookplugin.ts \ | ||
34 | ../../../../../i18n/zh_CN/libtodayaddressbookplugin.ts \ | ||
35 | ../../../../../i18n/zh_TW/libtodayaddressbookplugin.ts \ | ||
36 | ../../../../../i18n/it/libtodayaddressbookplugin.ts \ | ||
37 | ../../../../../i18n/da/libtodayaddressbookplugin.ts | ||
38 | |||
39 | |||
21 | 40 | ||
22 | 41 | ||
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp index 8d7bec6..a234236 100644 --- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp +++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp | |||
@@ -28,5 +28,4 @@ | |||
28 | 28 | ||
29 | 29 | ||
30 | |||
31 | AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* name) | 30 | AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char* name) |
32 | : TodayConfigWidget(parent, name ) { | 31 | : TodayConfigWidget(parent, name ) { |