forked from qt-creator/qt-creator
CMake: Fix UI text capitalization and punctuation
Change-Id: Id4adc0671357c646cbed5df3667addfc95130b73 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
@@ -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())
|
||||
|
Reference in New Issue
Block a user