forked from qt-creator/qt-creator
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:
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user