diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp index aeee30675f2..65ad5ce929d 100644 --- a/src/plugins/debugger/debuggerengine.cpp +++ b/src/plugins/debugger/debuggerengine.cpp @@ -1867,7 +1867,7 @@ void DebuggerEngine::checkForReleaseBuild(const DebuggerStartParameters &sp) return; foreach (const QByteArray &name, interesting) { - const QString found = seen.contains(name) ? tr("Found.") : tr("Not Found."); + const QString found = seen.contains(name) ? tr("Found.") : tr("Not found."); detailedWarning.append(tr("\nSection %1: %2").arg(_(name)).arg(found)); } break; diff --git a/src/plugins/debugger/gdb/gdboptionspage.cpp b/src/plugins/debugger/gdb/gdboptionspage.cpp index 95e6c9d13f4..e65711ab1eb 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.cpp +++ b/src/plugins/debugger/gdb/gdboptionspage.cpp @@ -148,11 +148,10 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent) ".gdbinit file on debugger startup.")); checkBoxLoadGdbDumpers = new QCheckBox(groupBoxGeneral); - checkBoxLoadGdbDumpers->setText(GdbOptionsPage::tr("Load system gdb pretty printers")); + checkBoxLoadGdbDumpers->setText(GdbOptionsPage::tr("Load system GDB pretty printers")); checkBoxLoadGdbDumpers->setToolTip(GdbOptionsPage::tr( - "Allows or inhibits using the default gdb pretty printers " - "installed in your system or linked to the libraries your " - "application uses.\n")); + "Uses the default GDB pretty printers installed in your " + "system or linked to the libraries your application uses.\n")); checkBoxIntelFlavor = new QCheckBox(groupBoxGeneral); checkBoxIntelFlavor->setText(GdbOptionsPage::tr("Use Intel style disassembly")); @@ -163,8 +162,8 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent) checkBoxIdentifyDebugInfoPackages = new QCheckBox(groupBoxGeneral); checkBoxIdentifyDebugInfoPackages->setText(GdbOptionsPage::tr("Create tasks from missing packages")); checkBoxIdentifyDebugInfoPackages->setToolTip(GdbOptionsPage::tr( - "
Checking this option attempts to identify missing debug " - "info packages and lists them in the Issues output pane.
" + "
Attempts to identify missing debug info packages " + "and lists them in the Issues output pane.
" "Note:This feature needs special support from the Linux " "distribution and GDB build and is not everywhere available.
")); diff --git a/src/plugins/debugger/lldb/lldbengine.cpp b/src/plugins/debugger/lldb/lldbengine.cpp index 457320524cd..71dc85b60a7 100644 --- a/src/plugins/debugger/lldb/lldbengine.cpp +++ b/src/plugins/debugger/lldb/lldbengine.cpp @@ -145,7 +145,7 @@ void LldbEngine::setupEngine() notifyEngineSetupFailed(); showMessage(_("ADAPTER START FAILED")); if (!msg.isEmpty()) - Core::ICore::showWarningWithOptions(tr("Adapter start failed"), msg); + Core::ICore::showWarningWithOptions(tr("Adapter start failed."), msg); } } @@ -602,7 +602,7 @@ bool LldbEngine::setToolTipExpression(const QPoint &mousePos, } if (!hasLetterOrNumber(exp)) { - QToolTip::showText(m_toolTipPos, tr("'%1' contains no identifier").arg(exp)); + QToolTip::showText(m_toolTipPos, tr("'%1' contains no identifier.").arg(exp)); return true; } @@ -623,7 +623,7 @@ bool LldbEngine::setToolTipExpression(const QPoint &mousePos, if (hasSideEffects(exp)) { QToolTip::showText(m_toolTipPos, tr("Cowardly refusing to evaluate expression '%1' " - "with potential side effects").arg(exp)); + "with potential side effects.").arg(exp)); return true; } diff --git a/src/plugins/projectexplorer/projectexplorersettingspage.ui b/src/plugins/projectexplorer/projectexplorersettingspage.ui index 9bfc39b131f..8f7816f84cf 100644 --- a/src/plugins/projectexplorer/projectexplorersettingspage.ui +++ b/src/plugins/projectexplorer/projectexplorersettingspage.ui @@ -106,7 +106,7 @@