summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/aqpkg/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/main.cpp b/noncore/settings/aqpkg/main.cpp
index 066d79f..b7f8b7b 100644
--- a/noncore/settings/aqpkg/main.cpp
+++ b/noncore/settings/aqpkg/main.cpp
@@ -39,12 +39,16 @@
#include "mainwin.h"
#include "server.h"
#include "global.h"
+/* be less intrusive for translation -zecke */
+extern QString LOCAL_SERVER;
+extern QString LOCAL_IPKGS;
+
int main(int argc, char *argv[])
{
#ifdef QWS
QPEApplication a( argc, argv );
#else
QApplication a( argc, argv );
@@ -52,12 +56,15 @@ int main(int argc, char *argv[])
#ifdef QWS
// Disable suspend mode
QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::DisableSuspend;
#endif
+ LOCAL_SERVER = QObject::tr( "Installed packages" );
+ LOCAL_IPKGS = QObject::tr( "Local packages" );
+
MainWindow *win = new MainWindow();
a.setMainWidget(win);
win->showMaximized();
a.exec();