diff options
author | Leena Miettinen <[email protected]> | 2014-03-06 14:44:03 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2014-03-06 15:04:34 +0100 |
commit | c7ee842c0a9b882bbdfacd5b5b135dba0ce79f67 (patch) | |
tree | b601d55555e2f2e696b12e9950c363d50d9ea823 /src/plugins/debugger | |
parent | f9079811a648f3024fa58bcd1f6fa65af4962110 (diff) |
Debugger: fix capitalization and punctuation of UI text
Remove some unnecessary text from tooltips.
Change-Id: Ifbd734b23eb88ceb3e28d59b7ae96d52d4ad0e21
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 2 | ||||
-rw-r--r-- | src/plugins/debugger/unstartedappwatcherdialog.cpp | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index abe5c31ebe7..3aad8893756 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -170,7 +170,7 @@ void StackTreeView::contextMenuEvent(QContextMenuEvent *ev) QAction *additionalQmlStackAction = 0; if (engine->hasCapability(AdditionalQmlStackCapability)) - additionalQmlStackAction = menu.addAction(tr("Load QML stack")); + additionalQmlStackAction = menu.addAction(tr("Load QML Stack")); QAction *actShowMemory = 0; if (engine->hasCapability(ShowMemoryCapability)) { diff --git a/src/plugins/debugger/unstartedappwatcherdialog.cpp b/src/plugins/debugger/unstartedappwatcherdialog.cpp index 30c1331593c..823eeb6bfbf 100644 --- a/src/plugins/debugger/unstartedappwatcherdialog.cpp +++ b/src/plugins/debugger/unstartedappwatcherdialog.cpp @@ -80,7 +80,7 @@ namespace Internal { UnstartedAppWatcherDialog::UnstartedAppWatcherDialog(QWidget *parent) : QDialog(parent) { - setWindowTitle(tr("Attach to process not yet started")); + setWindowTitle(tr("Attach to Process Not Yet Started")); m_kitChooser = new DebuggerKitChooser(DebuggerKitChooser::LocalDebugging, this); m_kitChooser->populate(); @@ -105,16 +105,16 @@ UnstartedAppWatcherDialog::UnstartedAppWatcherDialog(QWidget *parent) m_pathChooser->setPath(localAppRC->executable()); } - m_hideOnAttachCheckBox = new QCheckBox(tr("Hide after Attach"), this); - m_hideOnAttachCheckBox->setToolTip(tr("If checked, dialog will hide " - "after attach, and reappear after application ends.\nAlternatively, dialog will close.")); + m_hideOnAttachCheckBox = new QCheckBox(tr("Hide after attach"), this); + m_hideOnAttachCheckBox->setToolTip(tr("Hides the dialog after attach " + " and shows it after application ends.\nAlternatively, closes the dialog.")); m_hideOnAttachCheckBox->setChecked(false); m_hideOnAttachCheckBox->setVisible(true); - m_continueOnAttachCheckBox = new QCheckBox(tr("Continue on Attach"), this); - m_continueOnAttachCheckBox->setToolTip(tr("If checked, debugger will " - "not halt application after attach.")); + m_continueOnAttachCheckBox = new QCheckBox(tr("Continue on attach"), this); + m_continueOnAttachCheckBox->setToolTip(tr("Debugger does not stop the" + " application after attach.")); m_continueOnAttachCheckBox->setChecked(true); m_continueOnAttachCheckBox->setVisible(true); @@ -277,7 +277,7 @@ void UnstartedAppWatcherDialog::setWaitingState(UnstartedAppWacherState state) { switch (state) { case InvalidWacherState: - m_waitingLabel->setText(tr("Please select valid executable.")); + m_waitingLabel->setText(tr("Select valid executable.")); m_watchingPushButton->setEnabled(false); m_watchingPushButton->setChecked(false); m_pathChooser->setEnabled(true); @@ -285,7 +285,7 @@ void UnstartedAppWatcherDialog::setWaitingState(UnstartedAppWacherState state) break; case NotWatchingState: - m_waitingLabel->setText(tr("Not Watching.")); + m_waitingLabel->setText(tr("Not watching.")); m_watchingPushButton->setEnabled(true); m_watchingPushButton->setChecked(false); m_pathChooser->setEnabled(true); |