diff --git a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp index 6aefb0346bb..d8d726eef80 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp @@ -487,7 +487,7 @@ void CMakeBuildConfiguration::runCMakeWithExtraArguments() InitialCMakeArgumentsAspect::InitialCMakeArgumentsAspect() { setSettingsKey("CMake.Initial.Parameters"); - setLabelText(tr("Initial CMake Parameters:")); + setLabelText(tr("Initial CMake parameters:")); setDisplayStyle(TextEditDisplay); } diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp index 4f563f232ce..6ab8e805f88 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprojectmanager.cpp @@ -60,7 +60,7 @@ CMakeManager::CMakeManager() , m_runCMakeActionContextMenu(new QAction(QIcon(), tr("Run CMake"), this)) , m_rescanProjectAction(new QAction(QIcon(), tr("Rescan Project"), this)) , m_parseAndValidateCMakeReplyFileAction( - new QAction(QIcon(), tr("Parse and verify a CMake reply file"), this)) + new QAction(QIcon(), tr("Parse and verify a CMake reply file."), this)) { Core::ActionContainer *mbuild = Core::ActionManager::actionContainer(ProjectExplorer::Constants::M_BUILDPROJECT); @@ -230,7 +230,7 @@ void CMakeManager::enableBuildFileMenus(Node *node) void CMakeManager::parseAndValidateCMakeReplyFile() { QString replyFile = QFileDialog::getOpenFileName(Core::ICore::mainWindow(), - tr("Select a CMake reply file"), + tr("Select a CMake Reply File"), QString(), QString("index*.json")); if (replyFile.isEmpty())