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