Improve error message in loadApplicationTranslationFile()

This commit is contained in:
Martchus 2016-10-05 23:00:51 +02:00
parent 812f2d2afd
commit 58d762b7ee
2 changed files with 2 additions and 5 deletions

View File

@ -118,7 +118,7 @@ void loadQtTranslationFile(initializer_list<QString> repositoryNames, const QStr
QCoreApplication::installTranslator(qtTranslator); QCoreApplication::installTranslator(qtTranslator);
} else { } else {
delete qtTranslator; delete qtTranslator;
cerr << "Unable to load translation file for Qt repository " << repoName.toLocal8Bit().data() << " and language " << localeName.toLocal8Bit().data() << "." << endl; cerr << "Unable to load translation file for Qt repository \"" << repoName.toLocal8Bit().data() << "\" and language " << localeName.toLocal8Bit().data() << "." << endl;
} }
} }
} }
@ -176,7 +176,7 @@ void loadApplicationTranslationFile(const QString &applicationName, const QStrin
QCoreApplication::installTranslator(appTranslator); QCoreApplication::installTranslator(appTranslator);
} else { } else {
delete appTranslator; delete appTranslator;
cerr << "Unable to load application translation file for the language \"" << localeName.toLocal8Bit().data() << "\"." << endl; cerr << "Unable to load translation file for \"" << applicationName.toLocal8Bit().data() << "\" and the language \"" << localeName.toLocal8Bit().data() << "\"." << endl;
} }
} }

View File

@ -1,6 +1,3 @@
// The functions and classes declared in this header are experimental.
// API/ABI might change in minor release!
#ifndef DIALOGS_QT_UTILITIES_QTSETTINGS_H #ifndef DIALOGS_QT_UTILITIES_QTSETTINGS_H
#define DIALOGS_QT_UTILITIES_QTSETTINGS_H #define DIALOGS_QT_UTILITIES_QTSETTINGS_H