summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2016-03-02 15:43:24 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2016-03-02 14:47:07 +0000
commit1698b77827f102afc7f82cb641f2d31f6d50050e (patch)
tree79fbacb1a0fd4cdfdf39119c75e8bc45dde636be
parent063a6fc9ba1a6e5bb254bf0d106300600ef48e77 (diff)
downloadqt-creator-1698b77827f102afc7f82cb641f2d31f6d50050e.tar.gz
Fix translations of JSON based wizards.
Used inconsistent translation contexts. Task-number: QTCREATORBUG-8945 Change-Id: I59d1370501438f4ca00cd801cb6f2803a5ada9b7 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
index 32722aca37..aa9be5ac7a 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp
@@ -480,7 +480,7 @@ QString JsonWizardFactory::localizedString(const QVariant &value)
}
return QString();
}
- return QCoreApplication::translate("ProjectExplorer::JsonWizardFactory", value.toByteArray());
+ return QCoreApplication::translate("ProjectExplorer::JsonWizard", value.toByteArray());
}
bool JsonWizardFactory::isAvailable(const QString &platformName) const