diff options
author | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-06-19 16:36:25 +0200 |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@digia.com> | 2013-06-20 10:02:48 +0200 |
commit | acb7d2cd5b33252c74bccca4d5ccff29ceb24a92 (patch) | |
tree | 5398494693952769568d21e03779f79793722508 /src/plugins/qmlprojectmanager/qmlapp.cpp | |
parent | d42544e03746aec20f41afaffe681fe9286f556b (diff) | |
download | qt-creator-acb7d2cd5b33252c74bccca4d5ccff29ceb24a92.tar.gz |
QmlApplicationWizard: translation fix
The translation contexts did not match and there was
a mistake in the .xq for xmlpatterns file.
Change-Id: Ibb454e82d6f197014451399cbb8a9fc0bad04a98
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlapp.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlapp.cpp b/src/plugins/qmlprojectmanager/qmlapp.cpp index 143aaa12cd..edffa2c3ed 100644 --- a/src/plugins/qmlprojectmanager/qmlapp.cpp +++ b/src/plugins/qmlprojectmanager/qmlapp.cpp @@ -146,7 +146,7 @@ static inline bool assignLanguageElementText(QXmlStreamReader &reader, const QStringRef elementLanguage = reader.attributes().value(QLatin1String("xml:lang")); if (elementLanguage.isEmpty()) { // Try to find a translation for our Wizards - *target = QCoreApplication::translate("QmlProjectManager::Internal::QmlApplicationWizard", + *target = QCoreApplication::translate("QmlProjectManager::QmlApplicationWizard", reader.readElementText().toLatin1().constData()); return true; } |