Project Explorer: Fix UI text capitalization and writing style

Change-Id: I0b79513fe71055e38091e3567269e7a729190267
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Leena Miettinen
2020-07-02 09:51:44 +02:00
parent 58bcf2878b
commit 5343958f06
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ void BuildDirectoryAspect::updateProblemLabel()
SeparateDebugInfoAspect::SeparateDebugInfoAspect() SeparateDebugInfoAspect::SeparateDebugInfoAspect()
{ {
setDisplayName(tr("Separate Debug Info:")); setDisplayName(tr("Separate debug info:"));
setSettingsKey("SeparateDebugInfo"); setSettingsKey("SeparateDebugInfo");
setSetting(ProjectExplorerPlugin::buildPropertiesSettings().separateDebugInfo); setSetting(ProjectExplorerPlugin::buildPropertiesSettings().separateDebugInfo);
} }

View File

@@ -3631,7 +3631,7 @@ void ProjectExplorerPluginPrivate::removeFile()
const QMessageBox::StandardButton reply = QMessageBox::question( const QMessageBox::StandardButton reply = QMessageBox::question(
Core::ICore::dialogParent(), tr("Remove More Files?"), 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<QStringList>(siblings, [](const NodeAndPath &np) { .arg(Utils::transform<QStringList>(siblings, [](const NodeAndPath &np) {
return np.second.toFileInfo().fileName(); return np.second.toFileInfo().fileName();
}).join("\n "))); }).join("\n ")));