summaryrefslogtreecommitdiff
path: root/src/plugins/ios/iosrunner.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2013-10-09 16:40:43 +0200
committerLeena Miettinen <riitta-leena.miettinen@digia.com>2013-10-11 09:46:34 +0200
commite9cbaf04c5334ba477c18a973ef0900d13fe4025 (patch)
treec6c3851f9d0a76ad408b1b619168f3069d67dff4 /src/plugins/ios/iosrunner.cpp
parent3b1b851daa392c9db55275608daeced2fd512133 (diff)
downloadqt-creator-e9cbaf04c5334ba477c18a973ef0900d13fe4025.tar.gz
fix UI text capitalization and punctuation
Make a message shorter and clearer. Change-Id: Ia9bfb0de4a4a9cde1173f718aa79824739e11d2f Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r--src/plugins/ios/iosrunner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp
index e2cb6b6f8f..f084659900 100644
--- a/src/plugins/ios/iosrunner.cpp
+++ b/src/plugins/ios/iosrunner.cpp
@@ -159,8 +159,8 @@ void IosRunner::handleErrorMsg(IosToolHandler *handler, const QString &msg)
{
if (msg.contains(QLatin1String("AMDeviceStartService returned -402653150"))) {
QMessageBox mBox;
- mBox.setText(tr("Running on iOS device failed"));
- mBox.setInformativeText(tr("This might be due to not up-to date certificates in Xcode or the device, go to the organizer window of Xcode to ensure that all certificates are up to date and try again."));
+ mBox.setText(tr("Running on iOS device failed."));
+ mBox.setInformativeText(tr("The certificates in Xcode or the device might be outdated. Check the certificates in the organizer window of Xcode, and try again."));
mBox.setStandardButtons(QMessageBox::Ok);
mBox.setDefaultButton(QMessageBox::Ok);
mBox.setIcon(QMessageBox::Information);