summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/setexamplespathonqtoperation.cpp
diff options
context:
space:
mode:
authorNiels Weber <niels.2.weber@nokia.com>2012-02-09 12:25:23 +0100
committerNiels Weber <niels.2.weber@nokia.com>2012-02-09 14:11:57 +0100
commit1e484494162aff9baefadbe108cdc92ba12c5a62 (patch)
treed35a175f1663b1dbab3fa928dfa5b9b913c7b70f /installerbuilder/libinstaller/setexamplespathonqtoperation.cpp
parent3fb816a52e43dcdd0cef0440f05e1e64918a39ae (diff)
fix typos, unify strings etc
to help with translation work Change-Id: Ia3f5ebc8311b1a385c5055d43769b97db18484f0 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
Diffstat (limited to 'installerbuilder/libinstaller/setexamplespathonqtoperation.cpp')
-rw-r--r--installerbuilder/libinstaller/setexamplespathonqtoperation.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/installerbuilder/libinstaller/setexamplespathonqtoperation.cpp b/installerbuilder/libinstaller/setexamplespathonqtoperation.cpp
index e9ceec67e..7b1e8e55b 100644
--- a/installerbuilder/libinstaller/setexamplespathonqtoperation.cpp
+++ b/installerbuilder/libinstaller/setexamplespathonqtoperation.cpp
@@ -55,7 +55,7 @@ bool SetExamplesPathOnQtOperation::performOperation()
if (args.count() != 2) {
setError(InvalidArguments);
- setErrorString(tr("Invalid arguments in %0: %1 arguments given, exact 2 expected.").arg(name())
+ setErrorString(tr("Invalid arguments in %0: %1 arguments given, exactly 2 expected.").arg(name())
.arg(arguments().count()));
return false;
}
@@ -73,8 +73,8 @@ bool SetExamplesPathOnQtOperation::performOperation()
if (qmakeValueHash.isEmpty()) {
setError(UserDefinedError);
- setErrorString(tr("The output of \n%1 -query\n is not parseable. Please file a bugreport with this "
- "dialog https://bugreports.qt-project.org.\noutput: \"%2\"").arg(QDir::toNativeSeparators(qmakePath),
+ setErrorString(tr("The output of \n%1 -query\nis not parseable. Please file a bugreport with this "
+ "dialog https://bugreports.qt-project.org.\noutput: %2").arg(QDir::toNativeSeparators(qmakePath),
QString::fromUtf8(qmakeOutput)));
return false;
}
@@ -87,7 +87,7 @@ bool SetExamplesPathOnQtOperation::performOperation()
if (255 < newValue.size()) {
setError(UserDefinedError);
- setErrorString(tr("Qt patch error: new Qt example path(%1)\n needs to be less than 255 characters.")
+ setErrorString(tr("Qt patch error: new Qt example path (%1)\nneeds to be less than 255 characters.")
.arg(QString::fromLocal8Bit(newValue)));
return false;
}
@@ -104,7 +104,7 @@ bool SetExamplesPathOnQtOperation::performOperation()
bool isPatched = QtPatch::patchBinaryFile(qmakePath, oldValue, newValue);
if (!isPatched) {
- qDebug() << "qpatch: warning: could not patched the example path in" << qmakePath;
+ qDebug() << "qpatch: warning: could not patch the example path in" << qmakePath;
}
return true;