CMake: Fix UI text capitalization

"Generator" is written in lower case in the existing strings.

Change-Id: Ibef67f3f8c4a0aa5a0fa04f68e6b10fb2251d3ef
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Leena Miettinen
2016-11-01 14:56:14 +01:00
committed by Tobias Hunger
parent 69db1653c2
commit 447a4a45b8
2 changed files with 3 additions and 3 deletions

View File

@@ -229,7 +229,7 @@ CMakeGeneratorKitConfigWidget::~CMakeGeneratorKitConfigWidget()
QString CMakeGeneratorKitConfigWidget::displayName() const QString CMakeGeneratorKitConfigWidget::displayName() const
{ {
return tr("CMake Generator:"); return tr("CMake generator:");
} }
void CMakeGeneratorKitConfigWidget::makeReadOnly() void CMakeGeneratorKitConfigWidget::makeReadOnly()
@@ -299,7 +299,7 @@ void CMakeGeneratorKitConfigWidget::changeGenerator()
layout->addWidget(generatorCombo, row, 1); layout->addWidget(generatorCombo, row, 1);
++row; ++row;
layout->addWidget(new QLabel(tr("Extra Generator:")), row, 0); layout->addWidget(new QLabel(tr("Extra generator:")), row, 0);
layout->addWidget(extraGeneratorCombo, row, 1); layout->addWidget(extraGeneratorCombo, row, 1);
++row; ++row;

View File

@@ -431,7 +431,7 @@ KitInformation::ItemList CMakeGeneratorKitInformation::toUserOutput(const Kit *k
if (info.generator.isEmpty()) { if (info.generator.isEmpty()) {
message = tr("<Use Default Generator>"); message = tr("<Use Default Generator>");
} else { } else {
message = tr("Generator: %1<br>Extra Generator: %2").arg(info.generator).arg(info.extraGenerator); message = tr("Generator: %1<br>Extra generator: %2").arg(info.generator).arg(info.extraGenerator);
if (!info.platform.isEmpty()) if (!info.platform.isEmpty())
message += tr("<br>Platform: %1").arg(info.platform); message += tr("<br>Platform: %1").arg(info.platform);
if (!info.toolset.isEmpty()) if (!info.toolset.isEmpty())