From 4c96bd67916fbde48e5235c3f792fc21c606ebe8 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Tue, 28 Aug 2012 13:18:50 +0200 Subject: [PATCH] Fix source strings Change-Id: Ib56082091a1f7e3062ff48e981bb4ee8e2dd9357 Reviewed-by: Oswald Buddenhagen --- src/plugins/debugger/gdb/gdboptionspage.cpp | 4 ++-- src/plugins/debugger/qml/qmlengine.cpp | 2 +- src/plugins/debugger/stackframe.cpp | 2 +- src/plugins/help/filtersettingspage.ui | 2 +- src/plugins/madde/maemodeviceconfigwizard.cpp | 4 ++-- src/plugins/qmlprofiler/qmlprofilertool.cpp | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/plugins/debugger/gdb/gdboptionspage.cpp b/src/plugins/debugger/gdb/gdboptionspage.cpp index 65ec57e08dd..5f3bc80efa4 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.cpp +++ b/src/plugins/debugger/gdb/gdboptionspage.cpp @@ -145,7 +145,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent) checkBoxUseDynamicType->setText(GdbOptionsPage::tr( "Use dynamic object type for display")); checkBoxUseDynamicType->setToolTip(GdbOptionsPage::tr( - "Specifies whether the dynamic or the static type of objects will be" + "Specifies whether the dynamic or the static type of objects will be " "displayed. Choosing the dynamic type might be slower.")); checkBoxLoadGdbInit = new QCheckBox(groupBoxGeneral); @@ -190,7 +190,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent) checkBoxBreakOnFatal->setText(GdbOptionsPage::tr("Stop when qFatal() is called")); checkBoxBreakOnFatal->setToolTip(GdbOptionsPage::tr( "Always add a breakpoint on the qFatal() function." - "/body>")); + "")); checkBoxBreakOnAbort = new QCheckBox(groupBoxGeneral); checkBoxBreakOnAbort->setText(GdbOptionsPage::tr("Stop when abort() is called")); diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 9fb7e8167d4..a1a9af9ea9e 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -741,7 +741,7 @@ void QmlEngine::executeNextI() void QmlEngine::executeRunToLine(const ContextData &data) { QTC_ASSERT(state() == InferiorStopOk, qDebug() << state()); - showStatusMessage(tr("Run to line %1 (%2) requested...").arg(data.lineNumber).arg(data.fileName), 5000); + showStatusMessage(tr("Run to line %1 (%2) requested...").arg(data.lineNumber).arg(data.fileName), 5000); resetLocation(); ContextData modifiedData = data; quint32 line = data.lineNumber; diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp index 2a9441bde0e..f1fa8d61b9d 100644 --- a/src/plugins/debugger/stackframe.cpp +++ b/src/plugins/debugger/stackframe.cpp @@ -116,7 +116,7 @@ QString StackFrame::toToolTip() const } else { str << tr("Binary debug information is accessible for this " "frame. However, matching sources have not been found. " - "Note that some distributions ship debug sources in " + "Note that some distributions ship debug sources " "in separate packages."); } diff --git a/src/plugins/help/filtersettingspage.ui b/src/plugins/help/filtersettingspage.ui index af7fd81c8f9..86a118b6ca6 100644 --- a/src/plugins/help/filtersettingspage.ui +++ b/src/plugins/help/filtersettingspage.ui @@ -13,7 +13,7 @@ <html><body> <p> -Add, modify, and remove document filters, which determine the documentation set displayed in the Help mode. The attributes are defined in the documents. Select them to display a set of relevant documentation. Note that some attributes are defined in several documents. +Add, modify, and remove document filters, which determine the documentation set displayed in the Help mode. The attributes are defined in the documents. Select them to display a set of relevant documentation. Note that some attributes are defined in several documents. </p></body></html> diff --git a/src/plugins/madde/maemodeviceconfigwizard.cpp b/src/plugins/madde/maemodeviceconfigwizard.cpp index 85aac311509..493eaca1a15 100644 --- a/src/plugins/madde/maemodeviceconfigwizard.cpp +++ b/src/plugins/madde/maemodeviceconfigwizard.cpp @@ -339,7 +339,7 @@ private: m_ui->keyDirPathChooser->setEnabled(false); m_ui->createKeysButton->setEnabled(false); - m_ui->statusLabel->setText(tr("Creating keys... ")); + m_ui->statusLabel->setText(tr("Creating keys...")); SshKeyGenerator keyGenerator; if (!keyGenerator.generateKeys(SshKeyGenerator::Rsa, SshKeyGenerator::Mixed, 1024)) { @@ -447,7 +447,7 @@ private: sshParams.password = password(); sshParams.timeout = 10; sshParams.userName = defaultUser(); - m_ui->statusLabel->setText(tr("Deploying... ")); + m_ui->statusLabel->setText(tr("Deploying...")); m_keyDeployer->deployPublicKey(sshParams, m_wizardData.publicKeyFilePath); } diff --git a/src/plugins/qmlprofiler/qmlprofilertool.cpp b/src/plugins/qmlprofiler/qmlprofilertool.cpp index 0843297cd43..21342fde50a 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertool.cpp @@ -692,7 +692,7 @@ void QmlProfilerTool::profilerStateChanged() break; } case QmlProfilerStateManager::AppKilled : { - showNonmodalWarning(tr("Application finished before loading profiled data.\n Please use the stop button instead.")); + showNonmodalWarning(tr("Application finished before loading profiled data.\nPlease use the stop button instead.")); break; } case QmlProfilerStateManager::Idle :