use the new form of QTranslator::load() for more flexibility
As the docs explain, the variant of QTranslator::load() taking a const QLocale& is better because it "uses QLocale::uiLanguages() and not simply the locale name, which refers to the formatting of dates and numbers and not necessarily the UI language." And, using a default-constructed QLocale permits QLocale::setDefault() to override the system locale, so for example an application's main.cpp can do that before constructing a QQmlApplicationEngine. Task-number: QTBUG-7329 Change-Id: Ia29a4c894087c92b071c0fe484728866f2660fe6 Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
This commit is contained in:
parent
b9f1439459
commit
427646b8d7
|
@ -40,8 +40,9 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
QLocale locale;
|
||||
QTranslator qtTranslator;
|
||||
qtTranslator.load("qml_" + QLocale::system().name(), ":/i18n/");
|
||||
qtTranslator.load(locale, QLatin1String("qml"), QLatin1String("_"), QLatin1String(":/i18n"));
|
||||
app.installTranslator(&qtTranslator);
|
||||
|
||||
QQmlApplicationEngine engine;
|
||||
|
|
|
@ -65,7 +65,8 @@ void QQmlApplicationEnginePrivate::init()
|
|||
q->connect(q, SIGNAL(quit()), QCoreApplication::instance(), SLOT(quit()));
|
||||
#ifndef QT_NO_TRANSLATION
|
||||
QTranslator* qtTranslator = new QTranslator;
|
||||
if (qtTranslator->load(QLatin1String("qt_") + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
QLocale locale;
|
||||
if (qtTranslator->load(locale, QLatin1String("qt"), QLatin1String("_"), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
QCoreApplication::installTranslator(qtTranslator);
|
||||
translators << qtTranslator;
|
||||
#endif
|
||||
|
@ -82,7 +83,8 @@ void QQmlApplicationEnginePrivate::loadTranslations(const QUrl &rootFile)
|
|||
QFileInfo fi(rootFile.toLocalFile());
|
||||
|
||||
QTranslator *translator = new QTranslator;
|
||||
if (translator->load(QLatin1String("qml_") + QLocale::system().name(), fi.path() + QLatin1String("/i18n"))) {
|
||||
QLocale locale;
|
||||
if (translator->load(locale, QLatin1String("qml"), QLatin1String("_"), fi.path() + QLatin1String("/i18n"))) {
|
||||
QCoreApplication::installTranslator(translator);
|
||||
translators << translator;
|
||||
} else {
|
||||
|
|
|
@ -450,10 +450,8 @@ int main(int argc, char *argv[])
|
|||
verboseMode = false;
|
||||
|
||||
#ifndef QT_NO_TRANSLATION
|
||||
//qt_ translations loaded by QQmlApplicationEngine
|
||||
QString sysLocale = QLocale::system().name();
|
||||
|
||||
if (!translationFile.isEmpty()) { //Note: installed before QQmlApplicationEngine's automatic translation loading
|
||||
// qt_ translations are loaded by QQmlApplicationEngine
|
||||
if (!translationFile.isEmpty()) { // Note: installed before QQmlApplicationEngine's automatic translation loading
|
||||
QTranslator translator;
|
||||
|
||||
if (translator.load(translationFile)) {
|
||||
|
|
|
@ -307,7 +307,8 @@ static void displayFileDialog(Options *options)
|
|||
#ifndef QT_NO_TRANSLATION
|
||||
static void loadTranslationFile(QTranslator &translator, const QString& directory)
|
||||
{
|
||||
translator.load(QLatin1String("qml_" )+QLocale::system().name(), directory + QLatin1String("/i18n"));
|
||||
QLocale locale;
|
||||
translator.load(locale, QLatin1String("qml"), QLatin1String("_"), directory + QLatin1String("/i18n"));
|
||||
QCoreApplication::installTranslator(&translator);
|
||||
}
|
||||
#endif
|
||||
|
@ -415,17 +416,18 @@ int main(int argc, char ** argv)
|
|||
app.setOrganizationDomain("qt-project.org");
|
||||
|
||||
#ifndef QT_NO_TRANSLATION
|
||||
QTranslator translator;
|
||||
QLocale locale;
|
||||
QTranslator qtTranslator;
|
||||
QString sysLocale = QLocale::system().name();
|
||||
if (qtTranslator.load(QLatin1String("qt_") + sysLocale, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
if (qtTranslator.load(locale, QLatin1String("qt"), QLatin1String("_"), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
app.installTranslator(&qtTranslator);
|
||||
if (translator.load(QLatin1String("qmlscene_") + sysLocale, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
|
||||
QTranslator translator;
|
||||
if (translator.load(locale, QLatin1String("qmlscene"), QLatin1String("_"), QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
||||
app.installTranslator(&translator);
|
||||
|
||||
QTranslator qmlTranslator;
|
||||
if (!options.translationFile.isEmpty()) {
|
||||
if (qmlTranslator.load(options.translationFile)) {
|
||||
if (qmlTranslator.load(locale, options.translationFile)) {
|
||||
app.installTranslator(&qmlTranslator);
|
||||
} else {
|
||||
qWarning() << "Could not load the translation file" << options.translationFile;
|
||||
|
|
Loading…
Reference in New Issue