Do not error when there are no translations

This commit is contained in:
probonopd
2017-06-10 22:07:42 +00:00
parent 9a93e030cf
commit bd459f7869
+1 -1
View File
@@ -1599,7 +1599,7 @@ void deployTranslations(const QString &appDirPath, quint64 usedQtModules)
LogDebug() << "Deploying translations...";
QString qtTranslationsPath = qtToBeBundledInfo.value("QT_INSTALL_TRANSLATIONS");
if (qtTranslationsPath.isEmpty() || !QFile::exists(qtTranslationsPath)) {
LogError() << "Qt translations path could not be determined";
LogDebug() << "Qt translations path could not be determined, maybe there are no translations?";
return;
}