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>
This commit is contained in:
Eike Ziller
2016-03-02 15:43:24 +01:00
committed by Tobias Hunger
parent 063a6fc9ba
commit 1698b77827

View File

@@ -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