Rename 'output pane' to simply 'output'

Change-Id: If45e053a32855bca68dc71cb5da22f981146e45b
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Thomas Hartmann
2022-02-25 13:59:49 +01:00
parent 58f6ceeac4
commit af24e428f2
9 changed files with 15 additions and 15 deletions

View File

@@ -210,7 +210,7 @@ static QString qmldumpFailedMessage(const FilePath &libraryPath, const QString &
"\n"
"%1"
"\n"
"Check 'General Messages' output pane for details."
"Check General Messages for details."
).arg(firstLines);
}

View File

@@ -192,7 +192,7 @@
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;What to do with the executable's standard output.
&lt;ul&gt;&lt;li&gt;Ignore: Do nothing with it.&lt;/li&gt;&lt;li&gt;Show in pane: Show it in the general output pane.&lt;/li&gt;&lt;li&gt;Replace selection: Replace the current selection in the current document with it.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
&lt;ul&gt;&lt;li&gt;Ignore: Do nothing with it.&lt;/li&gt;&lt;li&gt;Show in General Messages.&lt;/li&gt;&lt;li&gt;Replace selection: Replace the current selection in the current document with it.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
</string>
</property>
<property name="text">
@@ -209,7 +209,7 @@
</item>
<item>
<property name="text">
<string>Show in Pane</string>
<string>Show in General Messages</string>
</property>
</item>
<item>
@@ -225,7 +225,7 @@
<string>&lt;html&gt;&lt;head&gt;&lt;body&gt;
&lt;p &gt;What to do with the executable's standard error output.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Ignore: Do nothing with it.&lt;/li&gt;
&lt;li&gt;Show in pane: Show it in the general output pane.&lt;/li&gt;
&lt;li&gt;Show in General Messages.&lt;/li&gt;
&lt;li&gt;Replace selection: Replace the current selection in the current document with it.&lt;/li&gt;
&lt;/ul&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
@@ -243,7 +243,7 @@
</item>
<item>
<property name="text">
<string>Show in Pane</string>
<string>Show in General Messages</string>
</property>
</item>
<item>

View File

@@ -303,10 +303,10 @@ void OutputPaneManager::updateMaximizeButton(bool maximized)
{
if (maximized) {
m_instance->m_minMaxAction->setIcon(m_instance->m_minimizeIcon);
m_instance->m_minMaxAction->setText(tr("Minimize Output Pane"));
m_instance->m_minMaxAction->setText(tr("Minimize"));
} else {
m_instance->m_minMaxAction->setIcon(m_instance->m_maximizeIcon);
m_instance->m_minMaxAction->setText(tr("Maximize Output Pane"));
m_instance->m_minMaxAction->setText(tr("Maximize"));
}
}
@@ -352,7 +352,7 @@ OutputPaneManager::OutputPaneManager(QWidget *parent) :
m_minMaxAction = new QAction(this);
m_minMaxAction->setIcon(m_maximizeIcon);
m_minMaxAction->setText(tr("Maximize Output Pane"));
m_minMaxAction->setText(tr("Maximize"));
m_closeButton->setIcon(Icons::CLOSE_SPLIT_BOTTOM.icon());
connect(m_closeButton, &QAbstractButton::clicked, this, &OutputPaneManager::slotHide);

View File

@@ -68,7 +68,7 @@ Settings::Settings()
registerAspect(&displayOutput);
displayOutput.setSettingsKey("DisplayOutput");
displayOutput.setDefaultValue(true);
displayOutput.setLabelText(tr("Display Output pane after sending a post"));
displayOutput.setLabelText(tr("Display General Messages after sending a post"));
}
// SettingsPage

View File

@@ -174,7 +174,7 @@ AppOutputPane::AppOutputPane() :
m_formatterWidget(new QWidget),
m_handler(new ShowOutputTaskHandler(this,
tr("Show &App Output"),
tr("Show the output that generated this issue in the Application Output pane."),
tr("Show the output that generated this issue in Application Output."),
tr("A")))
{
ExtensionSystem::PluginManager::addObject(m_handler);

View File

@@ -113,7 +113,7 @@
\fn void ProjectExplorer::BuildStep::addOutput(const QString &string, ProjectExplorer::BuildStep::OutputFormat format,
ProjectExplorer::BuildStep::OutputNewlineSetting newlineSetting = DoAppendNewline) const
The \a string is added to the generated output, usually in the output pane.
The \a string is added to the generated output, usually in the output.
It should be in plain text, with the format in the parameter.
*/

View File

@@ -118,7 +118,7 @@ CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
m_handler = new ShowOutputTaskHandler(this,
tr("Show Compile &Output"),
tr("Show the output that generated this issue in the Compile Output pane."),
tr("Show the output that generated this issue in Compile Output."),
tr("O"));
ExtensionSystem::PluginManager::addObject(m_handler);
setupContext(C_COMPILE_OUTPUT, m_outputWindow);

View File

@@ -336,7 +336,7 @@ void DesignModeWidget::setup()
auto outputPanePlaceholder = new Core::OutputPanePlaceHolder(Core::Constants::MODE_DESIGN);
m_outputPaneDockWidget = new ADS::DockWidget(uniqueId);
m_outputPaneDockWidget->setWidget(outputPanePlaceholder);
m_outputPaneDockWidget->setWindowTitle(tr("Output Pane"));
m_outputPaneDockWidget->setWindowTitle(tr("Output"));
m_dockManager->addDockWidget(ADS::NoDockWidgetArea, m_outputPaneDockWidget);
// Set unique id as object name

View File

@@ -143,7 +143,7 @@ IntroductionWidget::IntroductionWidget(QWidget *parent)
"<li>click on the magnifier icon for a complete list of possible options</li>"
"</ul>")},
{QLatin1String("OutputPaneButtons"),
tr("Output Panes"),
tr("Output"),
tr("Find compile and application output here, "
"as well as a list of configuration and build issues, "
"and the panel for global searches."),
@@ -155,7 +155,7 @@ IntroductionWidget::IntroductionWidget(QWidget *parent)
{{},
tr("Escape to Editor"),
tr("Pressing the Escape key brings you back to the editor. Press it "
"multiple times to also hide output panes and context help, giving the editor more "
"multiple times to also hide context help and output, giving the editor more "
"space."),
{}},
{{},