Fix source strings

Change-Id: Ib56082091a1f7e3062ff48e981bb4ee8e2dd9357
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
Jarek Kobus
2012-08-28 13:18:50 +02:00
committed by Oswald Buddenhagen
parent c5b7726f52
commit 4c96bd6791
6 changed files with 8 additions and 8 deletions

View File

@@ -145,7 +145,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
checkBoxUseDynamicType->setText(GdbOptionsPage::tr( checkBoxUseDynamicType->setText(GdbOptionsPage::tr(
"Use dynamic object type for display")); "Use dynamic object type for display"));
checkBoxUseDynamicType->setToolTip(GdbOptionsPage::tr( 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.")); "displayed. Choosing the dynamic type might be slower."));
checkBoxLoadGdbInit = new QCheckBox(groupBoxGeneral); checkBoxLoadGdbInit = new QCheckBox(groupBoxGeneral);
@@ -190,7 +190,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
checkBoxBreakOnFatal->setText(GdbOptionsPage::tr("Stop when qFatal() is called")); checkBoxBreakOnFatal->setText(GdbOptionsPage::tr("Stop when qFatal() is called"));
checkBoxBreakOnFatal->setToolTip(GdbOptionsPage::tr( checkBoxBreakOnFatal->setToolTip(GdbOptionsPage::tr(
"<html><head/><body>Always add a breakpoint on the <i>qFatal()</i> function." "<html><head/><body>Always add a breakpoint on the <i>qFatal()</i> function."
"/body></html>")); "</body></html>"));
checkBoxBreakOnAbort = new QCheckBox(groupBoxGeneral); checkBoxBreakOnAbort = new QCheckBox(groupBoxGeneral);
checkBoxBreakOnAbort->setText(GdbOptionsPage::tr("Stop when abort() is called")); checkBoxBreakOnAbort->setText(GdbOptionsPage::tr("Stop when abort() is called"));

View File

@@ -741,7 +741,7 @@ void QmlEngine::executeNextI()
void QmlEngine::executeRunToLine(const ContextData &data) void QmlEngine::executeRunToLine(const ContextData &data)
{ {
QTC_ASSERT(state() == InferiorStopOk, qDebug() << state()); 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(); resetLocation();
ContextData modifiedData = data; ContextData modifiedData = data;
quint32 line = data.lineNumber; quint32 line = data.lineNumber;

View File

@@ -116,7 +116,7 @@ QString StackFrame::toToolTip() const
} else { } else {
str << tr("Binary debug information is accessible for this " str << tr("Binary debug information is accessible for this "
"frame. However, matching sources have not been found. " "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."); "in separate packages.");
} }

View File

@@ -13,7 +13,7 @@
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;body&gt; <string>&lt;html&gt;&lt;body&gt;
&lt;p&gt; &lt;p&gt;
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.
&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_2"> <layout class="QVBoxLayout" name="verticalLayout_2">

View File

@@ -339,7 +339,7 @@ private:
m_ui->keyDirPathChooser->setEnabled(false); m_ui->keyDirPathChooser->setEnabled(false);
m_ui->createKeysButton->setEnabled(false); m_ui->createKeysButton->setEnabled(false);
m_ui->statusLabel->setText(tr("Creating keys... ")); m_ui->statusLabel->setText(tr("Creating keys..."));
SshKeyGenerator keyGenerator; SshKeyGenerator keyGenerator;
if (!keyGenerator.generateKeys(SshKeyGenerator::Rsa, if (!keyGenerator.generateKeys(SshKeyGenerator::Rsa,
SshKeyGenerator::Mixed, 1024)) { SshKeyGenerator::Mixed, 1024)) {
@@ -447,7 +447,7 @@ private:
sshParams.password = password(); sshParams.password = password();
sshParams.timeout = 10; sshParams.timeout = 10;
sshParams.userName = defaultUser(); sshParams.userName = defaultUser();
m_ui->statusLabel->setText(tr("Deploying... ")); m_ui->statusLabel->setText(tr("Deploying..."));
m_keyDeployer->deployPublicKey(sshParams, m_wizardData.publicKeyFilePath); m_keyDeployer->deployPublicKey(sshParams, m_wizardData.publicKeyFilePath);
} }

View File

@@ -692,7 +692,7 @@ void QmlProfilerTool::profilerStateChanged()
break; break;
} }
case QmlProfilerStateManager::AppKilled : { 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; break;
} }
case QmlProfilerStateManager::Idle : case QmlProfilerStateManager::Idle :