avoided trying to load English translation file
This commit is contained in:
parent
c2e15100a4
commit
ca2e3cd5c4
15
main.cpp
15
main.cpp
@ -20,15 +20,18 @@ int main(int argc, char *argv[])
|
||||
locale = QLocale::system().name();
|
||||
settings.setValue("language", locale);
|
||||
}
|
||||
QString tsFile = "2048-qt_" + locale;
|
||||
|
||||
QTranslator translator;
|
||||
if (translator.load(tsFile, ":/ts")) {
|
||||
qDebug() << "Successfully loaded " + tsFile;
|
||||
} else {
|
||||
qDebug() << "Failed to load " + tsFile;
|
||||
if (! locale.startsWith("en")) {
|
||||
QString tsFile = "2048-qt_" + locale;
|
||||
|
||||
if (translator.load(tsFile, ":/ts")) {
|
||||
qDebug() << "Successfully loaded " + tsFile;
|
||||
app.installTranslator(&translator);
|
||||
} else {
|
||||
qDebug() << "Failed to load " + tsFile;
|
||||
}
|
||||
}
|
||||
app.installTranslator(&translator);
|
||||
|
||||
QQmlApplicationEngine engine;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user