summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/blackberrycsjregistrar.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2013-02-18 10:35:53 +0100
committerFriedemann Kleint <Friedemann.Kleint@digia.com>2013-02-18 11:07:11 +0100
commit06d201a072a15373b45277c6f27b3a4e09d56eaa (patch)
tree93c075d3376133fcbc2896f3d618083933d845d0 /src/plugins/qnx/blackberrycsjregistrar.cpp
parent4e3f83e3882ce9199beeaf0bfbd5b89e9049a1cb (diff)
downloadqt-creator-06d201a072a15373b45277c6f27b3a4e09d56eaa.tar.gz
UI text: fix capitalization and punctuation
Use book style capitalization for titles. Use periods in the ends of messages (avoid exclamation marks). Idiomatic usage for "errors" is to "occur", not "happen". Change-Id: I9eee6fabf8a52371eac9a8e577cbbc988a769b21 Reviewed-by: Tobias Nätterlund <tobias.naetterlund@kdab.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/plugins/qnx/blackberrycsjregistrar.cpp')
-rw-r--r--src/plugins/qnx/blackberrycsjregistrar.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/qnx/blackberrycsjregistrar.cpp b/src/plugins/qnx/blackberrycsjregistrar.cpp
index 7643b145e9..3a270a2a87 100644
--- a/src/plugins/qnx/blackberrycsjregistrar.cpp
+++ b/src/plugins/qnx/blackberrycsjregistrar.cpp
@@ -92,19 +92,19 @@ void BlackBerryCsjRegistrar::processError(QProcess::ProcessError error)
switch (error) {
case QProcess::FailedToStart:
- errorMessage = tr("Failed to start blackberry-signer process");
+ errorMessage = tr("Failed to start blackberry-signer process.");
break;
case QProcess::Timedout:
- errorMessage = tr("Process timed out");
+ errorMessage = tr("Process timed out.");
case QProcess::Crashed:
- errorMessage = tr("Child process has crashed");
+ errorMessage = tr("Child process has crashed.");
break;
case QProcess::WriteError:
case QProcess::ReadError:
- errorMessage = tr("Process I/O error");
+ errorMessage = tr("Process I/O error.");
break;
case QProcess::UnknownError:
- errorMessage = tr("Unknown process error");
+ errorMessage = tr("Unknown process error.");
break;
}