forked from qt-creator/qt-creator
Project Explorer: Fix UI text according to the guidelines
https://doc.qt.io/qtcreator-extending/qtcreator-ui-text.html Task-number: QTCREATORBUG-23683 Change-Id: Idd3a1691c8a2fb46d8289a0de60a39f7020bc5a9 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -186,14 +186,14 @@ AppOutputPane::AppOutputPane() :
|
||||
|
||||
// Rerun
|
||||
m_reRunButton->setIcon(Utils::Icons::RUN_SMALL_TOOLBAR.icon());
|
||||
m_reRunButton->setToolTip(tr("Re-run this run-configuration"));
|
||||
m_reRunButton->setToolTip(tr("Re-run this run-configuration."));
|
||||
m_reRunButton->setEnabled(false);
|
||||
connect(m_reRunButton, &QToolButton::clicked,
|
||||
this, &AppOutputPane::reRunRunControl);
|
||||
|
||||
// Stop
|
||||
m_stopAction->setIcon(Utils::Icons::STOP_SMALL_TOOLBAR.icon());
|
||||
m_stopAction->setToolTip(tr("Stop Running Program"));
|
||||
m_stopAction->setToolTip(tr("Stop running program."));
|
||||
m_stopAction->setEnabled(false);
|
||||
|
||||
Core::Command *cmd = Core::ActionManager::registerAction(m_stopAction, Constants::STOP);
|
||||
@@ -833,7 +833,7 @@ public:
|
||||
: {&m_runOutputModeComboBox, &m_debugOutputModeComboBox}) {
|
||||
modeComboBox->addItem(tr("Always"), int(AppOutputPaneMode::PopupOnOutput));
|
||||
modeComboBox->addItem(tr("Never"), int(AppOutputPaneMode::FlashOnOutput));
|
||||
modeComboBox->addItem(tr("On first output only"),
|
||||
modeComboBox->addItem(tr("On First Output Only"),
|
||||
int(AppOutputPaneMode::PopupOnFirstOutput));
|
||||
}
|
||||
m_runOutputModeComboBox.setCurrentIndex(m_runOutputModeComboBox
|
||||
|
||||
Reference in New Issue
Block a user