Fix some log messages with extra spaces

This commit is contained in:
Cameron Gutman
2022-11-02 19:25:44 -05:00
parent 09ce3c9ce4
commit 448633ec3c
4 changed files with 5 additions and 5 deletions

View File

@@ -163,13 +163,13 @@ bool StreamingPreferences::retranslate()
}
if (newTranslator->load(QString(":/languages/qml_") + languageSuffix)) {
qInfo() << "Successfully loaded translation for " << languageSuffix;
qInfo() << "Successfully loaded translation for" << languageSuffix;
translator = newTranslator;
QCoreApplication::installTranslator(translator);
}
else {
qInfo() << "No translation available for " << languageSuffix;
qInfo() << "No translation available for" << languageSuffix;
delete newTranslator;
}