forked from qt-creator/qt-creator
CMake: Fix UI text capitalization and punctuation
Task-number: QTCREATORBUG-24873 Change-Id: I2672d0360cc8a6b41f711ca9db0f76750639da4e Reviewed-by: Asit Dhal <dhal.asitk@gmail.com> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -215,7 +215,7 @@ CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeBuildConfiguration *bc)
|
||||
m_resetButton->setToolTip(tr("Reset all unapplied changes."));
|
||||
m_resetButton->setEnabled(false);
|
||||
m_clearSelectionButton = new QPushButton(tr("Clear Selection"));
|
||||
m_clearSelectionButton->setToolTip(tr("Clear selection"));
|
||||
m_clearSelectionButton->setToolTip(tr("Clear selection."));
|
||||
m_clearSelectionButton->setEnabled(false);
|
||||
buttonLayout->addWidget(m_clearSelectionButton);
|
||||
buttonLayout->addWidget(m_resetButton);
|
||||
|
||||
@@ -131,7 +131,7 @@ QVariant CMakeTargetItem::data(int column, int role) const
|
||||
|
||||
if (role == Qt::ToolTipRole) {
|
||||
if (m_target.isEmpty()) {
|
||||
return CMakeBuildStep::tr("Build the executable used in the active Run "
|
||||
return CMakeBuildStep::tr("Build the executable used in the active run "
|
||||
"configuration. Currently: %1")
|
||||
.arg(m_step->activeRunConfigTarget());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user