From b21f0c779b69122ef54e21745b9228fe5f9c3144 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 19 Jun 2023 11:24:15 +0200 Subject: [PATCH] MCU: Fine-tune UI text Change-Id: Ia03f10891a6bc6af96d8a6165dd6bbe989131e4f Reviewed-by: Reviewed-by: Eike Ziller --- src/plugins/mcusupport/mcusupportoptionspage.cpp | 4 ++-- src/plugins/mcusupport/mcusupportplugin.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/mcusupport/mcusupportoptionspage.cpp b/src/plugins/mcusupport/mcusupportoptionspage.cpp index b303a7acae9..1f63fa7c2ee 100644 --- a/src/plugins/mcusupport/mcusupportoptionspage.cpp +++ b/src/plugins/mcusupport/mcusupportoptionspage.cpp @@ -229,7 +229,7 @@ void McuSupportOptionsWidget::updateStatus() : Tr::tr("A kit for the selected target can be created.")); } else { m_kitCreationInfoLabel->setType(Utils::InfoLabel::NotOk); - m_kitCreationInfoLabel->setText(Tr::tr("Provide the package paths in order to create a kit " + m_kitCreationInfoLabel->setText(Tr::tr("Provide the package paths to create a kit " "for your target.")); } } @@ -243,7 +243,7 @@ void McuSupportOptionsWidget::updateStatus() if (m_statusInfoLabel->isVisible()) { m_statusInfoLabel->setType(Utils::InfoLabel::NotOk); m_statusInfoLabel->setText(Tr::tr("No CMake tool was detected. Add a CMake tool in the " - "CMake options and press Apply.")); + "CMake options and select Apply.")); } } } diff --git a/src/plugins/mcusupport/mcusupportplugin.cpp b/src/plugins/mcusupport/mcusupportplugin.cpp index f2ec2ef69aa..ecdf89ded78 100644 --- a/src/plugins/mcusupport/mcusupportplugin.cpp +++ b/src/plugins/mcusupport/mcusupportplugin.cpp @@ -168,7 +168,7 @@ void McuSupportPlugin::askUserAboutMcuSupportKitsUpgrade(const SettingsHandler:: return; Utils::InfoBarEntry info(upgradeMcuSupportKits, - Tr::tr("New version of Qt for MCUs detected. Upgrade existing Kits?"), + Tr::tr("New version of Qt for MCUs detected. Upgrade existing kits?"), Utils::InfoBarEntry::GlobalSuppression::Enabled); using McuKitManager::UpgradeOption; static UpgradeOption selectedOption = UpgradeOption::Keep;