summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/ios/iossimulator.cpp8
-rw-r--r--src/plugins/qtsupport/qtsupportconstants.h4
-rw-r--r--src/tools/iostool/main.cpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/ios/iossimulator.cpp b/src/plugins/ios/iossimulator.cpp
index aa7ac3341b..78571aa322 100644
--- a/src/plugins/ios/iossimulator.cpp
+++ b/src/plugins/ios/iossimulator.cpp
@@ -48,7 +48,7 @@ IosSimulator::IosSimulator(Core::Id id, Utils::FileName simulatorPath)
id),
m_simulatorPath(simulatorPath)
{
- setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "Ios Simulator"));
+ setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
}
IosSimulator::IosSimulator()
@@ -57,14 +57,14 @@ IosSimulator::IosSimulator()
IDevice::Emulator,
Core::Id(Constants::IOS_SIMULATOR_DEVICE_ID))
{
- setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "Ios Simulator"));
+ setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
setDeviceState(DeviceReadyToUse);
}
IosSimulator::IosSimulator(const IosSimulator &other)
: IDevice(other)
{
- setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "Ios Simulator"));
+ setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
}
@@ -75,7 +75,7 @@ IDevice::DeviceInfo IosSimulator::deviceInformation() const
QString IosSimulator::displayType() const
{
- return QCoreApplication::translate("Ios::Internal::IosSimulator", "Ios Simulator");
+ return QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator");
}
IDeviceWidget *IosSimulator::createWidget()
diff --git a/src/plugins/qtsupport/qtsupportconstants.h b/src/plugins/qtsupport/qtsupportconstants.h
index 76b009a7ec..03fb6c4132 100644
--- a/src/plugins/qtsupport/qtsupportconstants.h
+++ b/src/plugins/qtsupport/qtsupportconstants.h
@@ -65,13 +65,13 @@ const char DESKTOP_PLATFORM[] = "Desktop";
const char EMBEDDED_LINUX_PLATFORM[] = "Embedded Linux";
const char WINDOWS_CE_PLATFORM[] = "Windows CE";
const char ANDROID_PLATFORM[] = "Android";
-const char IOS_PLATFORM[] = "Ios";
+const char IOS_PLATFORM[] = "iOS";
const char DESKTOP_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "Desktop");
const char EMBEDDED_LINUX_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "Embedded Linux");
const char WINDOWS_CE_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "Windows CE");
const char ANDROID_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "Android");
-const char IOS_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "Ios");
+const char IOS_PLATFORM_TR[] = QT_TRANSLATE_NOOP("QtSupport", "iOS");
// QML wizard icon
// both the qmakeprojectmanager and the qmlprojectmanager do have qt quick wizards
diff --git a/src/tools/iostool/main.cpp b/src/tools/iostool/main.cpp
index 3a38b6f389..36cc9dba77 100644
--- a/src/tools/iostool/main.cpp
+++ b/src/tools/iostool/main.cpp
@@ -517,7 +517,7 @@ void IosTool::handleCreatorHasData()
void IosTool::handleCreatorHasError(QAbstractSocket::SocketError error)
{
- errorMsg(tr("Ios Debugging connection to creator failed with error %1").arg(error));
+ errorMsg(tr("iOS Debugging connection to creator failed with error %1").arg(error));
stopGdbServer();
}