avoided trying to load English translation file

This commit is contained in:
Qiaoyong Zhong 2014-05-20 16:36:07 +08:00
parent c2e15100a4
commit ca2e3cd5c4

View File

@ -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;