diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2012-05-14 12:29:27 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2012-05-14 17:12:07 +0200 |
commit | 7208cfe26c344c44ea393b90af07d4499ec23b84 (patch) | |
tree | 9682488320633c202ce213bdc5789d7b8a37de3c /src/plugins/debugger/debuggeractions.cpp | |
parent | 56a9d9702b4ff54c3488841b2d67766f3f27d558 (diff) | |
download | qt-creator-7208cfe26c344c44ea393b90af07d4499ec23b84.tar.gz |
Debugger: Fix capitalization of 'When' in actions
Prepositions are usually not capitalized, even in book style.
Change-Id: Ibdca3843b349bf7aaac57e4e3ce635960f46ee0f
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index f9587cacf8..a5cdf9f9c3 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -437,7 +437,7 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("UseToolTipsInLocalsView")); - item->setText(tr("Use Tooltips in Locals View When Debugging")); + item->setText(tr("Use Tooltips in Locals View when Debugging")); item->setToolTip(tr("Checking this will enable tooltips in the locals " "view during debugging.")); item->setCheckable(true); @@ -446,7 +446,7 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("UseToolTipsInBreakpointsView")); - item->setText(tr("Use Tooltips in Breakpoints View When Debugging")); + item->setText(tr("Use Tooltips in Breakpoints View when Debugging")); item->setToolTip(tr("Checking this will enable tooltips in the breakpoints " "view during debugging.")); item->setCheckable(true); @@ -455,7 +455,7 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("UseAddressInBreakpointsView")); - item->setText(tr("Show Address Data in Breakpoints View When Debugging")); + item->setText(tr("Show Address Data in Breakpoints View when Debugging")); item->setToolTip(tr("Checking this will show a column with address " "information in the breakpoint view during debugging.")); item->setCheckable(true); @@ -464,7 +464,7 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("UseAddressInStackView")); - item->setText(tr("Show Address Data in Stack View When Debugging")); + item->setText(tr("Show Address Data in Stack View when Debugging")); item->setToolTip(tr("Checking this will show a column with address " "information in the stack view during debugging.")); item->setCheckable(true); |