From 435c8cf0f96a00d53488912774ca37f1a8e5990f Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 28 Jul 2017 10:05:59 +0200 Subject: [PATCH] ProjectExplorer: Use double quotes for emphasis in UI text Change-Id: I2a051304de8f6aba3b37a0d572e96f35dd9d259b Reviewed-by: Tobias Hunger --- .../projectexplorer/jsonwizard/jsonwizardpagefactory_p.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardpagefactory_p.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardpagefactory_p.cpp index 89fa6cb23b6..58c0e20030b 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizardpagefactory_p.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardpagefactory_p.cpp @@ -82,7 +82,7 @@ bool FieldPageFactory::validateData(Core::Id typeId, const QVariant &data, QStri QList list = JsonWizardFactory::objectOrList(data, errorMessage); if (list.isEmpty()) { *errorMessage = QCoreApplication::translate("ProjectExplorer::JsonWizard", - "When parsing fields of page '%1': %2") + "When parsing fields of page \"%1\": %2") .arg(typeId.toString()).arg(*errorMessage); return false; }