fix UI text capitalization and punctuation

Make a message shorter and clearer.

Change-Id: Ia9bfb0de4a4a9cde1173f718aa79824739e11d2f
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Leena Miettinen
2013-10-09 16:40:43 +02:00
parent 3b1b851daa
commit e9cbaf04c5
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@
<enum>Qt::RightToLeft</enum>
</property>
<property name="text">
<string>Reset defaults</string>
<string>Reset Defaults</string>
</property>
</widget>
</item>

View File

@@ -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);