forked from qt-creator/qt-creator
Updated strings after target -> kit renaming
Change-Id: Ia686fdb377e2267c7687d6804c02b209402d6275 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
committed by
Eike Ziller
parent
bc5cda03e4
commit
2394ceef6c
@@ -199,7 +199,7 @@ bool CMakeRunConfiguration::fromMap(const QVariantMap &map)
|
||||
QString CMakeRunConfiguration::defaultDisplayName() const
|
||||
{
|
||||
if (m_title.isEmpty())
|
||||
return tr("Run CMake target");
|
||||
return tr("Run CMake kit");
|
||||
return m_title + (m_enabled ? "" : tr(" (disabled)"));
|
||||
}
|
||||
|
||||
|
||||
@@ -343,7 +343,7 @@ MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
|
||||
|
||||
m_buildTargetsList = new QListWidget;
|
||||
m_buildTargetsList->setMinimumHeight(200);
|
||||
fl->addRow(tr("Targets:"), m_buildTargetsList);
|
||||
fl->addRow(tr("Kits:"), m_buildTargetsList);
|
||||
|
||||
// TODO update this list also on rescans of the CMakeLists.txt
|
||||
CMakeProject *pro = static_cast<CMakeProject *>(m_makeStep->target()->project());
|
||||
@@ -403,7 +403,7 @@ void MakeStepConfigWidget::updateDetails()
|
||||
if (!bc)
|
||||
bc = static_cast<CMakeBuildConfiguration *>(m_makeStep->target()->activeBuildConfiguration());
|
||||
if (!bc) {
|
||||
m_summaryText = tr("<b>No build configuration found on this target.</b>");
|
||||
m_summaryText = tr("<b>No build configuration found on this kit.</b>");
|
||||
updateSummary();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user