summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/jsonwizard
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2023-01-16 14:24:27 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2023-01-16 15:23:02 +0000
commit8f2d48e8a350dc8e6bd87f62c1d1aed760f977ca (patch)
treea7bf0c25d8b55f53145d79da017b46695189beef /src/plugins/projectexplorer/jsonwizard
parent5d9912b058104d815948080e91862f2f83a60cd0 (diff)
downloadqt-creator-8f2d48e8a350dc8e6bd87f62c1d1aed760f977ca.tar.gz
ProjectExplorer: Tr::tr clean-up
Tr::tr a string that was missed, and some extra qualifications to help lupdate. Amends: c5f7f5ab0aab672180714cb172818aa3cd394c90 Change-Id: I65b98d20ed3c1f8781823c4ee6677052d1cf0fa3 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/jsonwizard')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonwizardfilegenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardfilegenerator.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardfilegenerator.cpp
index e69c101ce3..bd43d21935 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonwizardfilegenerator.cpp
+++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardfilegenerator.cpp
@@ -111,7 +111,7 @@ Core::GeneratedFile JsonWizardFileGenerator::generateFile(const File &file,
gf.setContents(Utils::TemplateEngine::processText(&nested, QString::fromUtf8(reader.data()),
errorMessage));
if (!errorMessage->isEmpty()) {
- *errorMessage = QCoreApplication::translate("ProjectExplorer::JsonWizard", "When processing \"%1\":<br>%2")
+ *errorMessage = Tr::tr("When processing \"%1\":<br>%2")
.arg(file.source.toUserOutput(), *errorMessage);
return Core::GeneratedFile();
}