Fix case of "iOS"

Task-number: QTCREATORBUG-10681

Change-Id: I2a51eb95f8f9fa00114a2a9100eec5d052d2cca5
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Robert Loehning
2013-11-07 13:16:42 +01:00
parent 2e179f0bb4
commit bf0e6ee567
3 changed files with 7 additions and 7 deletions

View File

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

View File

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

View File

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