From 5343958f0631ed03f8f512751c7c522499196e3d Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Thu, 2 Jul 2020 09:51:44 +0200 Subject: [PATCH] Project Explorer: Fix UI text capitalization and writing style Change-Id: I0b79513fe71055e38091e3567269e7a729190267 Reviewed-by: David Schulz --- src/plugins/projectexplorer/buildaspects.cpp | 2 +- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/buildaspects.cpp b/src/plugins/projectexplorer/buildaspects.cpp index 912f8857558..0d8a3c3bc8b 100644 --- a/src/plugins/projectexplorer/buildaspects.cpp +++ b/src/plugins/projectexplorer/buildaspects.cpp @@ -127,7 +127,7 @@ void BuildDirectoryAspect::updateProblemLabel() SeparateDebugInfoAspect::SeparateDebugInfoAspect() { - setDisplayName(tr("Separate Debug Info:")); + setDisplayName(tr("Separate debug info:")); setSettingsKey("SeparateDebugInfo"); setSetting(ProjectExplorerPlugin::buildPropertiesSettings().separateDebugInfo); } diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 3bc5ce49e12..dd3dec673ef 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -3631,7 +3631,7 @@ void ProjectExplorerPluginPrivate::removeFile() const QMessageBox::StandardButton reply = QMessageBox::question( Core::ICore::dialogParent(), tr("Remove More Files?"), - tr("Would you like to remove these files as well?\n %1") + tr("Remove these files as well?\n %1") .arg(Utils::transform(siblings, [](const NodeAndPath &np) { return np.second.toFileInfo().fileName(); }).join("\n ")));