From 34ecdc30084bc47dfe2e77aa21463806dcbdcb26 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 4 Mar 2022 18:05:46 +0100 Subject: [PATCH] UI text: Replace "pane" with "view" for "Output panes" Some occurrences of [Output] pane were still found in translatable strings. Change-Id: I70c0b6562790b7eb835b2f6a1522fa34fb9c2b51 Reviewed-by: Eike Ziller Reviewed-by: --- src/plugins/autotest/testsettingspage.ui | 10 +++++----- src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp | 8 ++++---- src/plugins/projectexplorer/appoutputpane.cpp | 4 ++-- src/plugins/projectexplorer/compileoutputwindow.cpp | 2 +- src/plugins/projectexplorer/customparser.cpp | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/plugins/autotest/testsettingspage.ui b/src/plugins/autotest/testsettingspage.ui index 0ea7404370d..326a02966d7 100644 --- a/src/plugins/autotest/testsettingspage.ui +++ b/src/plugins/autotest/testsettingspage.ui @@ -106,20 +106,20 @@ - Opens the test results pane automatically when tests are started. + Displays test results automatically when tests are started. - Open results pane when tests start + Open results when tests start - Opens the test result pane automatically when tests are finished. + Displays test results automatically when tests are finished. - Open results pane when tests finish + Open results when tests finish true @@ -147,7 +147,7 @@ - Opens the test result pane only if the test run contains failed, fatal or unexpectedly passed tests. + Displays test results only if the test run contains failed, fatal or unexpectedly passed tests. Only for unsuccessful test runs diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp index f3255f6462a..944f3116ea8 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp @@ -517,8 +517,8 @@ void CMakeBuildSystem::combineScanAndParse(bool restoredFromBackup) CMakeProject::IssueType::Error, tr("CMake configuration failed" "

The backup of the previous configuration has been restored.

" - "

Have a look at the Issues pane or in the \"Projects > Build\" settings " - "for more information about the failure.Issues and \"Projects > Build\" settings " + "show more information about the failure.addIssue( CMakeProject::IssueType::Error, tr("Failed to load project" - "

Have a look at the Issues pane or in the \"Projects > Build\" settings " - "for more information about the failure.Issues and \"Projects > Build\" settings " + "show more information about the failure.addWidget(new QLabel(parts.at(1).trimmed())); maxCharsLayout->addStretch(1); const auto outputModeLayout = new QFormLayout; - outputModeLayout->addRow(tr("Open pane on output when running:"), &m_runOutputModeComboBox); - outputModeLayout->addRow(tr("Open pane on output when debugging:"), + outputModeLayout->addRow(tr("Open Application Output when running:"), &m_runOutputModeComboBox); + outputModeLayout->addRow(tr("Open Application Output when debugging:"), &m_debugOutputModeComboBox); layout->addLayout(outputModeLayout); layout->addLayout(maxCharsLayout); diff --git a/src/plugins/projectexplorer/compileoutputwindow.cpp b/src/plugins/projectexplorer/compileoutputwindow.cpp index 9b908c9fd4b..151f69ff3db 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.cpp +++ b/src/plugins/projectexplorer/compileoutputwindow.cpp @@ -283,7 +283,7 @@ public: const CompileOutputSettings &settings = BuildManager::compileOutputSettings(); m_wrapOutputCheckBox.setText(tr("Word-wrap output")); m_wrapOutputCheckBox.setChecked(settings.wrapOutput); - m_popUpCheckBox.setText(tr("Open pane when building")); + m_popUpCheckBox.setText(tr("Open Compile Output when building")); m_popUpCheckBox.setChecked(settings.popUp); m_maxCharsBox.setMaximum(100000000); m_maxCharsBox.setValue(settings.maxCharCount); diff --git a/src/plugins/projectexplorer/customparser.cpp b/src/plugins/projectexplorer/customparser.cpp index 8703b2c7c97..3efa046b994 100644 --- a/src/plugins/projectexplorer/customparser.cpp +++ b/src/plugins/projectexplorer/customparser.cpp @@ -288,7 +288,7 @@ public: const auto layout = new QVBoxLayout(this); const auto explanatoryLabel = new QLabel(tr( "Custom output parsers scan command line output for user-provided error patterns
" - "in order to create entries in the issues pane.
" + "to create entries in Issues.
" "The parsers can be configured here.")); layout->addWidget(explanatoryLabel); connect(explanatoryLabel, &QLabel::linkActivated, [] {