Skip to content

Commit bd459f7

Browse files
committed
Do not error when there are no translations
1 parent 9a93e03 commit bd459f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/shared.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ void deployTranslations(const QString &appDirPath, quint64 usedQtModules)
15991599
LogDebug() << "Deploying translations...";
16001600
QString qtTranslationsPath = qtToBeBundledInfo.value("QT_INSTALL_TRANSLATIONS");
16011601
if (qtTranslationsPath.isEmpty() || !QFile::exists(qtTranslationsPath)) {
1602-
LogError() << "Qt translations path could not be determined";
1602+
LogDebug() << "Qt translations path could not be determined, maybe there are no translations?";
16031603
return;
16041604
}
16051605

0 commit comments

Comments
 (0)