ProjectExplorer: Use double quotes for emphasis in UI text

Change-Id: I2a051304de8f6aba3b37a0d572e96f35dd9d259b
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Leena Miettinen
2017-07-28 10:05:59 +02:00
parent 6150d908d1
commit 435c8cf0f9

View File

@@ -82,7 +82,7 @@ bool FieldPageFactory::validateData(Core::Id typeId, const QVariant &data, QStri
QList<QVariant> list = JsonWizardFactory::objectOrList(data, errorMessage); QList<QVariant> list = JsonWizardFactory::objectOrList(data, errorMessage);
if (list.isEmpty()) { if (list.isEmpty()) {
*errorMessage = QCoreApplication::translate("ProjectExplorer::JsonWizard", *errorMessage = QCoreApplication::translate("ProjectExplorer::JsonWizard",
"When parsing fields of page '%1': %2") "When parsing fields of page \"%1\": %2")
.arg(typeId.toString()).arg(*errorMessage); .arg(typeId.toString()).arg(*errorMessage);
return false; return false;
} }