summaryrefslogtreecommitdiff
authorsandman <sandman>2002-12-11 01:18:52 (UTC)
committer sandman <sandman>2002-12-11 01:18:52 (UTC)
commitd67ad1a6ef93d358beab268153cf2b0694e5f633 (patch) (unidiff)
treed34c8a35cb8c2dbae6c33707edd572aba64dfb3f
parent7e71955ef58a502d6a6dd2384c3f55bd852d649a (diff)
downloadopie-d67ad1a6ef93d358beab268153cf2b0694e5f633.zip
opie-d67ad1a6ef93d358beab268153cf2b0694e5f633.tar.gz
opie-d67ad1a6ef93d358beab268153cf2b0694e5f633.tar.bz2
applied a patch from "Tais M. Hansen" <tais.hansen@osd.dk> to add danish
language support
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xcore/apps/embeddedkonsole/embeddedkonsole.pro3
-rw-r--r--core/launcher/launcher.pro3
-rw-r--r--core/pim/datebook/datebook.pro3
-rw-r--r--core/settings/security/security.pro3
-rw-r--r--inputmethods/multikey/multikey.pro1
-rw-r--r--noncore/settings/appearance2/appearance2.pro15
6 files changed, 24 insertions, 4 deletions
diff --git a/core/apps/embeddedkonsole/embeddedkonsole.pro b/core/apps/embeddedkonsole/embeddedkonsole.pro
index 913cb89..236e52e 100755
--- a/core/apps/embeddedkonsole/embeddedkonsole.pro
+++ b/core/apps/embeddedkonsole/embeddedkonsole.pro
@@ -1,53 +1,54 @@
1QMAKE_CFLAGS = -DHAVE_OPENPTY 1QMAKE_CFLAGS = -DHAVE_OPENPTY
2QMAKE_LIBS = -lutil 2QMAKE_LIBS = -lutil
3TEMPLATE = app 3TEMPLATE = app
4CONFIG += qt warn_on release 4CONFIG += qt warn_on release
5DESTDIR = $(OPIEDIR)/bin 5DESTDIR = $(OPIEDIR)/bin
6HEADERS = TEWidget.h \ 6HEADERS = TEWidget.h \
7 TEScreen.h \ 7 TEScreen.h \
8 TECommon.h \ 8 TECommon.h \
9 TEHistory.h \ 9 TEHistory.h \
10 TEmulation.h \ 10 TEmulation.h \
11 TEmuVt102.h \ 11 TEmuVt102.h \
12 session.h \ 12 session.h \
13 keytrans.h \ 13 keytrans.h \
14 konsole.h \ 14 konsole.h \
15 commandeditdialog.h \ 15 commandeditdialog.h \
16 commandeditwidget.h \ 16 commandeditwidget.h \
17 playlistselection.h \ 17 playlistselection.h \
18 MyPty.h 18 MyPty.h
19SOURCES = TEScreen.cpp \ 19SOURCES = TEScreen.cpp \
20 TEWidget.cpp \ 20 TEWidget.cpp \
21 TEHistory.cpp \ 21 TEHistory.cpp \
22 TEmulation.cpp \ 22 TEmulation.cpp \
23 TEmuVt102.cpp \ 23 TEmuVt102.cpp \
24 session.cpp \ 24 session.cpp \
25 keytrans.cpp \ 25 keytrans.cpp \
26 konsole.cpp \ 26 konsole.cpp \
27 commandeditdialog.cpp \ 27 commandeditdialog.cpp \
28 commandeditwidget.cpp \ 28 commandeditwidget.cpp \
29 playlistselection.cpp \ 29 playlistselection.cpp \
30 MyPty.cpp \ 30 MyPty.cpp \
31 main.cpp 31 main.cpp
32INTERFACES = commandeditdialogbase.ui smallcommandeditdialogbase.ui 32INTERFACES = commandeditdialogbase.ui smallcommandeditdialogbase.ui
33TARGET = embeddedkonsole 33TARGET = embeddedkonsole
34INCLUDEPATH += $(OPIEDIR)/include 34INCLUDEPATH += $(OPIEDIR)/include
35DEPENDPATH += $(OPIEDIR)/include 35DEPENDPATH += $(OPIEDIR)/include
36LIBS += -lqpe -lopie 36LIBS += -lqpe -lopie
37TMAKE_CXXFLAGS += -DQT_QWS_OPIE 37TMAKE_CXXFLAGS += -DQT_QWS_OPIE
38 38
39TRANSLATIONS = ../../../i18n/de/embeddedkonsole.ts \ 39TRANSLATIONS = ../../../i18n/de/embeddedkonsole.ts \
40 ../../../i18n/en/embeddedkonsole.ts \ 40 ../../../i18n/en/embeddedkonsole.ts \
41 ../../../i18n/es/embeddedkonsole.ts \ 41 ../../../i18n/es/embeddedkonsole.ts \
42 ../../../i18n/fr/embeddedkonsole.ts \ 42 ../../../i18n/fr/embeddedkonsole.ts \
43 ../../../i18n/hu/embeddedkonsole.ts \ 43 ../../../i18n/hu/embeddedkonsole.ts \
44 ../../../i18n/ja/embeddedkonsole.ts \ 44 ../../../i18n/ja/embeddedkonsole.ts \
45 ../../../i18n/ko/embeddedkonsole.ts \ 45 ../../../i18n/ko/embeddedkonsole.ts \
46 ../../../i18n/no/embeddedkonsole.ts \ 46 ../../../i18n/no/embeddedkonsole.ts \
47 ../../../i18n/pl/embeddedkonsole.ts \ 47 ../../../i18n/pl/embeddedkonsole.ts \
48 ../../../i18n/pt/embeddedkonsole.ts \ 48 ../../../i18n/pt/embeddedkonsole.ts \
49 ../../../i18n/pt_BR/embeddedkonsole.ts \ 49 ../../../i18n/pt_BR/embeddedkonsole.ts \
50 ../../../i18n/sl/embeddedkonsole.ts \ 50 ../../../i18n/sl/embeddedkonsole.ts \
51 ../../../i18n/zh_CN/embeddedkonsole.ts \ 51 ../../../i18n/zh_CN/embeddedkonsole.ts \
52 ../../../i18n/zh_TW/embeddedkonsole.ts \ 52 ../../../i18n/zh_TW/embeddedkonsole.ts \
53 ../../../i18n/it/embeddedkonsole.ts 53 ../../../i18n/it/embeddedkonsole.ts \
54 ../../../i18n/da/embeddedkonsole.ts
diff --git a/core/launcher/launcher.pro b/core/launcher/launcher.pro
index 83f8b5c..802975b 100644
--- a/core/launcher/launcher.pro
+++ b/core/launcher/launcher.pro
@@ -1,120 +1,121 @@
1 TEMPLATE= app 1 TEMPLATE= app
2 CONFIG = qt warn_on release 2 CONFIG = qt warn_on release
3 DESTDIR = ../../bin 3 DESTDIR = ../../bin
4 HEADERS = background.h \ 4 HEADERS = background.h \
5 desktop.h \ 5 desktop.h \
6 screensaver.h \ 6 screensaver.h \
7 qprocess.h \ 7 qprocess.h \
8 mediummountgui.h \ 8 mediummountgui.h \
9 info.h \ 9 info.h \
10 appicons.h \ 10 appicons.h \
11 taskbar.h \ 11 taskbar.h \
12 sidething.h \ 12 sidething.h \
13 runningappbar.h \ 13 runningappbar.h \
14 stabmon.h \ 14 stabmon.h \
15 inputmethods.h \ 15 inputmethods.h \
16 systray.h \ 16 systray.h \
17 wait.h \ 17 wait.h \
18 shutdownimpl.h \ 18 shutdownimpl.h \
19 launcher.h \ 19 launcher.h \
20 launcherview.h \ 20 launcherview.h \
21 ../../core/apps/calibrate/calibrate.h \ 21 ../../core/apps/calibrate/calibrate.h \
22 startmenu.h \ 22 startmenu.h \
23 transferserver.h \ 23 transferserver.h \
24 qcopbridge.h \ 24 qcopbridge.h \
25 packageslave.h \ 25 packageslave.h \
26 irserver.h \ 26 irserver.h \
27 ../../rsync/buf.h \ 27 ../../rsync/buf.h \
28 ../../rsync/checksum.h \ 28 ../../rsync/checksum.h \
29 ../../rsync/command.h \ 29 ../../rsync/command.h \
30 ../../rsync/emit.h \ 30 ../../rsync/emit.h \
31 ../../rsync/job.h \ 31 ../../rsync/job.h \
32 ../../rsync/netint.h \ 32 ../../rsync/netint.h \
33 ../../rsync/protocol.h \ 33 ../../rsync/protocol.h \
34 ../../rsync/prototab.h \ 34 ../../rsync/prototab.h \
35 ../../rsync/rsync.h \ 35 ../../rsync/rsync.h \
36 ../../rsync/search.h \ 36 ../../rsync/search.h \
37 ../../rsync/stream.h \ 37 ../../rsync/stream.h \
38 ../../rsync/sumset.h \ 38 ../../rsync/sumset.h \
39 ../../rsync/trace.h \ 39 ../../rsync/trace.h \
40 ../../rsync/types.h \ 40 ../../rsync/types.h \
41 ../../rsync/util.h \ 41 ../../rsync/util.h \
42 ../../rsync/whole.h \ 42 ../../rsync/whole.h \
43 ../../rsync/config_rsync.h \ 43 ../../rsync/config_rsync.h \
44 ../../rsync/qrsync.h \ 44 ../../rsync/qrsync.h \
45 quicklauncher.h 45 quicklauncher.h
46 SOURCES = background.cpp \ 46 SOURCES = background.cpp \
47 desktop.cpp \ 47 desktop.cpp \
48 screensaver.cpp \ 48 screensaver.cpp \
49 mediummountgui.cpp \ 49 mediummountgui.cpp \
50 qprocess.cpp qprocess_unix.cpp \ 50 qprocess.cpp qprocess_unix.cpp \
51 info.cpp \ 51 info.cpp \
52 appicons.cpp \ 52 appicons.cpp \
53 taskbar.cpp \ 53 taskbar.cpp \
54 sidething.cpp \ 54 sidething.cpp \
55 runningappbar.cpp \ 55 runningappbar.cpp \
56 stabmon.cpp \ 56 stabmon.cpp \
57 inputmethods.cpp \ 57 inputmethods.cpp \
58 systray.cpp \ 58 systray.cpp \
59 wait.cpp \ 59 wait.cpp \
60 shutdownimpl.cpp \ 60 shutdownimpl.cpp \
61 launcher.cpp \ 61 launcher.cpp \
62 launcherview.cpp \ 62 launcherview.cpp \
63 ../../core/apps/calibrate/calibrate.cpp \ 63 ../../core/apps/calibrate/calibrate.cpp \
64 transferserver.cpp \ 64 transferserver.cpp \
65 packageslave.cpp \ 65 packageslave.cpp \
66 irserver.cpp \ 66 irserver.cpp \
67 qcopbridge.cpp \ 67 qcopbridge.cpp \
68 startmenu.cpp \ 68 startmenu.cpp \
69 main.cpp \ 69 main.cpp \
70 ../../rsync/base64.c \ 70 ../../rsync/base64.c \
71 ../../rsync/buf.c \ 71 ../../rsync/buf.c \
72 ../../rsync/checksum.c \ 72 ../../rsync/checksum.c \
73 ../../rsync/command.c \ 73 ../../rsync/command.c \
74 ../../rsync/delta.c \ 74 ../../rsync/delta.c \
75 ../../rsync/emit.c \ 75 ../../rsync/emit.c \
76 ../../rsync/hex.c \ 76 ../../rsync/hex.c \
77 ../../rsync/job.c \ 77 ../../rsync/job.c \
78 ../../rsync/mdfour.c \ 78 ../../rsync/mdfour.c \
79 ../../rsync/mksum.c \ 79 ../../rsync/mksum.c \
80 ../../rsync/msg.c \ 80 ../../rsync/msg.c \
81 ../../rsync/netint.c \ 81 ../../rsync/netint.c \
82 ../../rsync/patch.c \ 82 ../../rsync/patch.c \
83 ../../rsync/prototab.c \ 83 ../../rsync/prototab.c \
84 ../../rsync/readsums.c \ 84 ../../rsync/readsums.c \
85 ../../rsync/scoop.c \ 85 ../../rsync/scoop.c \
86 ../../rsync/search.c \ 86 ../../rsync/search.c \
87 ../../rsync/stats.c \ 87 ../../rsync/stats.c \
88 ../../rsync/stream.c \ 88 ../../rsync/stream.c \
89 ../../rsync/sumset.c \ 89 ../../rsync/sumset.c \
90 ../../rsync/trace.c \ 90 ../../rsync/trace.c \
91 ../../rsync/tube.c \ 91 ../../rsync/tube.c \
92 ../../rsync/util.c \ 92 ../../rsync/util.c \
93 ../../rsync/version.c \ 93 ../../rsync/version.c \
94 ../../rsync/whole.c \ 94 ../../rsync/whole.c \
95 ../../rsync/qrsync.cpp 95 ../../rsync/qrsync.cpp
96 INTERFACES= syncdialog.ui 96 INTERFACES= syncdialog.ui
97INCLUDEPATH += ../../include 97INCLUDEPATH += ../../include
98 DEPENDPATH+= ../../include . 98 DEPENDPATH+= ../../include .
99INCLUDEPATH += ../../core/apps/calibrate 99INCLUDEPATH += ../../core/apps/calibrate
100 DEPENDPATH+= ../../core/apps/calibrate 100 DEPENDPATH+= ../../core/apps/calibrate
101INCLUDEPATH += ../../rsync 101INCLUDEPATH += ../../rsync
102 DEPENDPATH+= ../../rsync 102 DEPENDPATH+= ../../rsync
103 TARGET = qpe 103 TARGET = qpe
104 LIBS += -lqpe -lcrypt -lopie 104 LIBS += -lqpe -lcrypt -lopie
105 105
106TRANSLATIONS = ../../i18n/de/qpe.ts \ 106TRANSLATIONS = ../../i18n/de/qpe.ts \
107 ../../i18n/en/qpe.ts \ 107 ../../i18n/en/qpe.ts \
108 ../../i18n/es/qpe.ts \ 108 ../../i18n/es/qpe.ts \
109 ../../i18n/fr/qpe.ts \ 109 ../../i18n/fr/qpe.ts \
110 ../../i18n/hu/qpe.ts \ 110 ../../i18n/hu/qpe.ts \
111 ../../i18n/ja/qpe.ts \ 111 ../../i18n/ja/qpe.ts \
112 ../../i18n/ko/qpe.ts \ 112 ../../i18n/ko/qpe.ts \
113 ../../i18n/no/qpe.ts \ 113 ../../i18n/no/qpe.ts \
114 ../../i18n/pl/qpe.ts \ 114 ../../i18n/pl/qpe.ts \
115 ../../i18n/pt/qpe.ts \ 115 ../../i18n/pt/qpe.ts \
116 ../../i18n/pt_BR/qpe.ts \ 116 ../../i18n/pt_BR/qpe.ts \
117 ../../i18n/sl/qpe.ts \ 117 ../../i18n/sl/qpe.ts \
118 ../../i18n/zh_CN/qpe.ts \ 118 ../../i18n/zh_CN/qpe.ts \
119 ../../i18n/it/qpe.ts \ 119 ../../i18n/it/qpe.ts \
120 ../../i18n/zh_TW/qpe.ts 120 ../../i18n/zh_TW/qpe.ts \
121 ../../i18n/da/qpe.ts
diff --git a/core/pim/datebook/datebook.pro b/core/pim/datebook/datebook.pro
index b4316b4..d5dafc8 100644
--- a/core/pim/datebook/datebook.pro
+++ b/core/pim/datebook/datebook.pro
@@ -1,56 +1,57 @@
1 TEMPLATE= app 1 TEMPLATE= app
2 CONFIG += qt warn_on release 2 CONFIG += qt warn_on release
3 DESTDIR = $(OPIEDIR)/bin 3 DESTDIR = $(OPIEDIR)/bin
4 HEADERS= datebookday.h \ 4 HEADERS= datebookday.h \
5 datebook.h \ 5 datebook.h \
6 dateentryimpl.h \ 6 dateentryimpl.h \
7 datebookdayheaderimpl.h \ 7 datebookdayheaderimpl.h \
8 datebooksettings.h \ 8 datebooksettings.h \
9 datebookweek.h \ 9 datebookweek.h \
10 datebookweeklst.h \ 10 datebookweeklst.h \
11 datebookweekheaderimpl.h \ 11 datebookweekheaderimpl.h \
12 repeatentry.h \ 12 repeatentry.h \
13 timepicker.h \ 13 timepicker.h \
14 noteentryimpl.h \ 14 noteentryimpl.h \
15 onoteedit.h 15 onoteedit.h
16 SOURCES= main.cpp \ 16 SOURCES= main.cpp \
17 datebookday.cpp \ 17 datebookday.cpp \
18 datebook.cpp \ 18 datebook.cpp \
19 dateentryimpl.cpp \ 19 dateentryimpl.cpp \
20 datebookdayheaderimpl.cpp \ 20 datebookdayheaderimpl.cpp \
21 datebooksettings.cpp \ 21 datebooksettings.cpp \
22 datebookweek.cpp \ 22 datebookweek.cpp \
23 datebookweeklst.cpp \ 23 datebookweeklst.cpp \
24 datebookweekheaderimpl.cpp \ 24 datebookweekheaderimpl.cpp \
25 repeatentry.cpp \ 25 repeatentry.cpp \
26 timepicker.cpp \ 26 timepicker.cpp \
27 noteentryimpl.cpp \ 27 noteentryimpl.cpp \
28 onoteedit.cpp 28 onoteedit.cpp
29 INTERFACES= dateentry.ui \ 29 INTERFACES= dateentry.ui \
30 datebookdayheader.ui \ 30 datebookdayheader.ui \
31 datebookweekheader.ui \ 31 datebookweekheader.ui \
32 datebookweeklstheader.ui \ 32 datebookweeklstheader.ui \
33 datebookweeklstdayhdr.ui \ 33 datebookweeklstdayhdr.ui \
34 repeatentrybase.ui \ 34 repeatentrybase.ui \
35 datebooksettingsbase.ui \ 35 datebooksettingsbase.ui \
36 noteentry.ui 36 noteentry.ui
37INCLUDEPATH += $(OPIEDIR)/include 37INCLUDEPATH += $(OPIEDIR)/include
38 DEPENDPATH+= $(OPIEDIR)/include 38 DEPENDPATH+= $(OPIEDIR)/include
39LIBS += -lqpe -lopie 39LIBS += -lqpe -lopie
40 TARGET = datebook 40 TARGET = datebook
41 41
42TRANSLATIONS = ../../../i18n/de/datebook.ts \ 42TRANSLATIONS = ../../../i18n/de/datebook.ts \
43 ../../../i18n/en/datebook.ts \ 43 ../../../i18n/en/datebook.ts \
44 ../../../i18n/es/datebook.ts \ 44 ../../../i18n/es/datebook.ts \
45 ../../../i18n/fr/datebook.ts \ 45 ../../../i18n/fr/datebook.ts \
46 ../../../i18n/hu/datebook.ts \ 46 ../../../i18n/hu/datebook.ts \
47 ../../../i18n/ja/datebook.ts \ 47 ../../../i18n/ja/datebook.ts \
48 ../../../i18n/ko/datebook.ts \ 48 ../../../i18n/ko/datebook.ts \
49 ../../../i18n/no/datebook.ts \ 49 ../../../i18n/no/datebook.ts \
50 ../../../i18n/pl/datebook.ts \ 50 ../../../i18n/pl/datebook.ts \
51 ../../../i18n/pt/datebook.ts \ 51 ../../../i18n/pt/datebook.ts \
52 ../../../i18n/pt_BR/datebook.ts \ 52 ../../../i18n/pt_BR/datebook.ts \
53 ../../../i18n/sl/datebook.ts \ 53 ../../../i18n/sl/datebook.ts \
54 ../../../i18n/zh_CN/datebook.ts \ 54 ../../../i18n/zh_CN/datebook.ts \
55 ../../../i18n/it/datebook.ts \ 55 ../../../i18n/it/datebook.ts \
56 ../../../i18n/zh_TW/datebook.ts 56 ../../../i18n/zh_TW/datebook.ts \
57 ../../../i18n/da/datebook.ts
diff --git a/core/settings/security/security.pro b/core/settings/security/security.pro
index 2c815f0..2bd015d 100644
--- a/core/settings/security/security.pro
+++ b/core/settings/security/security.pro
@@ -1,25 +1,26 @@
1 TEMPLATE= app 1 TEMPLATE= app
2 CONFIG += qt warn_on release 2 CONFIG += qt warn_on release
3 DESTDIR = $(OPIEDIR)/bin 3 DESTDIR = $(OPIEDIR)/bin
4 HEADERS = security.h 4 HEADERS = security.h
5 SOURCES = security.cpp main.cpp 5 SOURCES = security.cpp main.cpp
6 INTERFACES= securitybase.ui 6 INTERFACES= securitybase.ui
7INCLUDEPATH += $(OPIEDIR)/include 7INCLUDEPATH += $(OPIEDIR)/include
8 DEPENDPATH+= ../$(OPIEDIR)/include 8 DEPENDPATH+= ../$(OPIEDIR)/include
9LIBS += -lqpe 9LIBS += -lqpe
10 TARGET = security 10 TARGET = security
11 11
12TRANSLATIONS = ../../../i18n/de/security.ts \ 12TRANSLATIONS = ../../../i18n/de/security.ts \
13 ../../../i18n/en/security.ts \ 13 ../../../i18n/en/security.ts \
14 ../../../i18n/es/security.ts \ 14 ../../../i18n/es/security.ts \
15 ../../../i18n/fr/security.ts \ 15 ../../../i18n/fr/security.ts \
16 ../../../i18n/hu/security.ts \ 16 ../../../i18n/hu/security.ts \
17 ../../../i18n/ja/security.ts \ 17 ../../../i18n/ja/security.ts \
18 ../../../i18n/ko/security.ts \ 18 ../../../i18n/ko/security.ts \
19 ../../../i18n/no/security.ts \ 19 ../../../i18n/no/security.ts \
20 ../../../i18n/pl/security.ts \ 20 ../../../i18n/pl/security.ts \
21 ../../../i18n/pt/security.ts \ 21 ../../../i18n/pt/security.ts \
22 ../../../i18n/pt_BR/security.ts \ 22 ../../../i18n/pt_BR/security.ts \
23 ../../../i18n/sl/security.ts \ 23 ../../../i18n/sl/security.ts \
24 ../../../i18n/zh_CN/security.ts \ 24 ../../../i18n/zh_CN/security.ts \
25 ../../../i18n/zh_TW/security.ts 25 ../../../i18n/zh_TW/security.ts \
26 ../../../i18n/da/security.ts
diff --git a/inputmethods/multikey/multikey.pro b/inputmethods/multikey/multikey.pro
index 268640e..32ec423 100644
--- a/inputmethods/multikey/multikey.pro
+++ b/inputmethods/multikey/multikey.pro
@@ -1,27 +1,28 @@
1 TEMPLATE= lib 1 TEMPLATE= lib
2 CONFIG += qt warn_on release 2 CONFIG += qt warn_on release
3 HEADERS= keyboard.h \ 3 HEADERS= keyboard.h \
4 configdlg.h \ 4 configdlg.h \
5 keyboardimpl.h 5 keyboardimpl.h
6 SOURCES= keyboard.cpp \ 6 SOURCES= keyboard.cpp \
7 configdlg.cpp \ 7 configdlg.cpp \
8 keyboardimpl.cpp 8 keyboardimpl.cpp
9 TARGET = qmultikey 9 TARGET = qmultikey
10 DESTDIR = $(OPIEDIR)/plugins/inputmethods 10 DESTDIR = $(OPIEDIR)/plugins/inputmethods
11INCLUDEPATH += $(OPIEDIR)/include 11INCLUDEPATH += $(OPIEDIR)/include
12DEPENDPATH += ../$(OPIEDIR)/include ../../launcher 12DEPENDPATH += ../$(OPIEDIR)/include ../../launcher
13LIBS += -lqpe -L$(OPIEDIR)/plugins/inputmethods -lqpickboard 13LIBS += -lqpe -L$(OPIEDIR)/plugins/inputmethods -lqpickboard
14 VERSION = 1.0.0 14 VERSION = 1.0.0
15 15
16TRANSLATIONS = ../../i18n/pt_BR/libqmultikey.ts 16TRANSLATIONS = ../../i18n/pt_BR/libqmultikey.ts
17TRANSLATIONS += ../../i18n/de/libqmultikey.ts 17TRANSLATIONS += ../../i18n/de/libqmultikey.ts
18TRANSLATIONS += ../../i18n/en/libqmultikey.ts 18TRANSLATIONS += ../../i18n/en/libqmultikey.ts
19TRANSLATIONS += ../../i18n/hu/libqmultikey.ts 19TRANSLATIONS += ../../i18n/hu/libqmultikey.ts
20TRANSLATIONS += ../../i18n/sl/libqmultikey.ts 20TRANSLATIONS += ../../i18n/sl/libqmultikey.ts
21TRANSLATIONS += ../../i18n/ja/libqmultikey.ts 21TRANSLATIONS += ../../i18n/ja/libqmultikey.ts
22TRANSLATIONS += ../../i18n/ko/libqmultikey.ts 22TRANSLATIONS += ../../i18n/ko/libqmultikey.ts
23TRANSLATIONS += ../../i18n/pl/libqmultikey.ts 23TRANSLATIONS += ../../i18n/pl/libqmultikey.ts
24TRANSLATIONS += ../../i18n/no/libqmultikey.ts 24TRANSLATIONS += ../../i18n/no/libqmultikey.ts
25TRANSLATIONS += ../../i18n/zh_CN/libqmultikey.ts 25TRANSLATIONS += ../../i18n/zh_CN/libqmultikey.ts
26TRANSLATIONS += ../../i18n/zh_TW/libqmultikey.ts 26TRANSLATIONS += ../../i18n/zh_TW/libqmultikey.ts
27TRANSLATIONS += ../../i18n/fr/libqmultikey.ts 27TRANSLATIONS += ../../i18n/fr/libqmultikey.ts
28TRANSLATIONS += ../../i18n/da/libqmultikey.ts
diff --git a/noncore/settings/appearance2/appearance2.pro b/noncore/settings/appearance2/appearance2.pro
index 52a322b..9be887b 100644
--- a/noncore/settings/appearance2/appearance2.pro
+++ b/noncore/settings/appearance2/appearance2.pro
@@ -1,12 +1,27 @@
1TEMPLATE = app 1TEMPLATE = app
2CONFIG = qt warn_on release 2CONFIG = qt warn_on release
3DESTDIR = $(OPIEDIR)/bin 3DESTDIR = $(OPIEDIR)/bin
4HEADERS = appearance.h editScheme.h sample.h 4HEADERS = appearance.h editScheme.h sample.h
5SOURCES = appearance.cpp editScheme.cpp main.cpp sample.cpp 5SOURCES = appearance.cpp editScheme.cpp main.cpp sample.cpp
6INCLUDEPATH += $(OPIEDIR)/include 6INCLUDEPATH += $(OPIEDIR)/include
7DEPENDPATH += ../$(OPIEDIR)/include 7DEPENDPATH += ../$(OPIEDIR)/include
8LIBS += -lqpe -lopie 8LIBS += -lqpe -lopie
9TARGET = appearance 9TARGET = appearance
10INCLUDEPATH += $(OPIEDIR)/include 10INCLUDEPATH += $(OPIEDIR)/include
11DEPENDPATH += $(OPIEDIR)/include 11DEPENDPATH += $(OPIEDIR)/include
12 12
13TRANSLATIONS = ../../../i18n/de/appearance.ts \
14 ../../../i18n/en/appearance.ts \
15 ../../../i18n/es/appearance.ts \
16 ../../../i18n/fr/appearance.ts \
17 ../../../i18n/hu/appearance.ts \
18 ../../../i18n/ja/appearance.ts \
19 ../../../i18n/ko/appearance.ts \
20 ../../../i18n/no/appearance.ts \
21 ../../../i18n/pl/appearance.ts \
22 ../../../i18n/pt/appearance.ts \
23 ../../../i18n/pt_BR/appearance.ts \
24 ../../../i18n/sl/appearance.ts \
25 ../../../i18n/zh_CN/appearance.ts \
26 ../../../i18n/zh_TW/appearance.ts \
27 ../../../i18n/da/appearance.ts