diff -r a32b19fb291e -r 5b14749788d7 messagingapp/msgnotifications/msgnotifier/src/main.cpp --- a/messagingapp/msgnotifications/msgnotifier/src/main.cpp Thu Jun 17 09:57:06 2010 +0100 +++ b/messagingapp/msgnotifications/msgnotifier/src/main.cpp Thu Jul 22 16:32:06 2010 +0100 @@ -17,6 +17,8 @@ //SYSTEM INCLUDES #include +#include +#include #include #include #include @@ -70,7 +72,15 @@ int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); - + QString locale = QLocale::system().name(); + QString path = "z:/resource/qt/translations/"; + QTranslator translator; + QTranslator translator_comm; + translator.load(path + QString("messaging_") + locale); + translator_comm.load(path + QString("common_") + locale); + app.installTranslator(&translator); + app.installTranslator(&translator_comm); + #ifdef _DEBUG_TRACES_ //Debug Logs QFile ofile;