Updated French translation
[timedsilencer] / main.cpp
1 /*
2  * This file is part of TimedSilencer.
3  *
4  *  TimedSilencer is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  TimedSilencer is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with TimedSilencer.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <QtGui/QApplication>
19 #include <QTranslator>
20 #include <QLocale>
21 #include <iostream>
22 #include "mainwindow.h"
23 #include "alarmd_backend.h"
24
25 int main(int argc, char *argv[])
26 {
27   QApplication a(argc, argv);
28
29   // Load translation
30   QTranslator translator;
31   QString locale = QLocale::system().name();
32   qDebug("Detected locale is: %s", qPrintable(locale));
33   translator.load(":/lang/timedsilencer_"+locale);
34   a.installTranslator(&translator);
35
36   if(argc == 2) {
37     QString param = QString::fromLocal8Bit(argv[1]);
38     if(param == "--disable") {
39       std::cout << "Disabling the timed silencer events..." << std::endl;
40       AlarmdBackend::deleteAllEvents();
41       return 0;
42     }
43   }
44
45   // Show Main window
46   MainWindow w;
47 #if defined(Q_WS_S60)
48   w.showMaximized();
49 #else
50   w.show();
51 #endif
52
53   return a.exec();
54 }