only install translator when not empty
This commit is contained in:
parent
52e9fe9296
commit
608dacf689
1 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,8 @@ int main(int argc, char *argv[])
|
||||||
QString locale = QLocale::system().name();
|
QString locale = QLocale::system().name();
|
||||||
QTranslator translator;
|
QTranslator translator;
|
||||||
translator.load(":/translations/"+locale);
|
translator.load(":/translations/"+locale);
|
||||||
app.installTranslator(&translator);
|
if (!translator.isEmpty())
|
||||||
|
app.installTranslator(&translator);
|
||||||
|
|
||||||
QSplashScreen splash(QPixmap(":/images/splash"), 0);
|
QSplashScreen splash(QPixmap(":/images/splash"), 0);
|
||||||
splash.show();
|
splash.show();
|
||||||
|
|
Loading…
Reference in a new issue