-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
29 lines (25 loc) · 705 Bytes
/
Copy pathmain.cpp
File metadata and controls
29 lines (25 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "application.h"
#include "connectiondialog.h"
#include <QLocale>
#include <QTranslator>
auto
main(int argc, char *argv[]) -> int
{
Application a(argc, argv);
QTranslator translator;
const QStringList uiLanguages = QLocale::system().uiLanguages();
for (const QString& locale : uiLanguages) {
const QString baseName = "ftl_" + QLocale(locale).name();
if (translator.load(":/i18n/" + baseName)) {
a.installTranslator(&translator);
break;
}
}
ConnectionDialog d;
QObject::connect(&d,
&ConnectionDialog::requestedConnectionToDevice,
&a,
&Application::connectToDevice);
d.show();
return a.exec();
}