diff --git a/src/plugins/ios/iosbuildstep.ui b/src/plugins/ios/iosbuildstep.ui
index 70f1599101880affc456723f79f8e981a369db1f..ef8dec89e4a2719616fdefe5cc5dfc8092f144ab 100644
--- a/src/plugins/ios/iosbuildstep.ui
+++ b/src/plugins/ios/iosbuildstep.ui
@@ -39,7 +39,7 @@
       <enum>Qt::RightToLeft</enum>
      </property>
      <property name="text">
-      <string>Reset defaults</string>
+      <string>Reset Defaults</string>
      </property>
     </widget>
    </item>
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp
index e2cb6b6f8f9c803afc69b792fee4d60fafc1e788..f0846599006cff978b004d91fccb53f60a422dce 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);