forked from qt-creator/qt-creator
iOS: Fix some missing full stops
Change-Id: Ie6c1b9dafc3e3fe349adcbe6011244136002cc01 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
@@ -46,7 +46,7 @@ expected_str<QJsonValue> parseDevicectlResult(const QByteArray &rawOutput)
|
||||
}
|
||||
const QJsonValue resultValue = jsonOutput["result"];
|
||||
if (resultValue.isUndefined()) {
|
||||
return make_unexpected(Tr::tr("Failed to parse devicectl output: 'result' is missing"));
|
||||
return make_unexpected(Tr::tr("Failed to parse devicectl output: \"result\" is missing."));
|
||||
}
|
||||
return resultValue;
|
||||
}
|
||||
|
||||
@@ -264,7 +264,7 @@ GroupItem DeviceCtlRunner::launchTask(const QString &bundleIdentifier)
|
||||
|
||||
void DeviceCtlRunner::reportStoppedImpl()
|
||||
{
|
||||
appendMessage(Tr::tr("\"%1\" exited").arg(m_bundlePath.toUserOutput()),
|
||||
appendMessage(Tr::tr("\"%1\" exited.").arg(m_bundlePath.toUserOutput()),
|
||||
Utils::NormalMessageFormat);
|
||||
reportStopped();
|
||||
}
|
||||
|
||||
@@ -204,9 +204,11 @@ void IosSettingsWidget::onStart()
|
||||
QList<QFuture<void>> futureList;
|
||||
for (const SimulatorInfo &info : simulatorInfoList) {
|
||||
if (!info.isShutdown()) {
|
||||
statusDialog->addMessage(Tr::tr("Cannot start simulator (%1, %2) in current state: %3")
|
||||
.arg(info.name).arg(info.runtimeName).arg(info.state),
|
||||
Utils::StdErrFormat);
|
||||
statusDialog->addMessage(Tr::tr("Cannot start simulator (%1, %2) in current state: %3.")
|
||||
.arg(info.name)
|
||||
.arg(info.runtimeName)
|
||||
.arg(info.state),
|
||||
Utils::StdErrFormat);
|
||||
} else {
|
||||
futureList << QFuture<void>(Utils::onResultReady(
|
||||
SimulatorControl::startSimulator(info.identifier), this,
|
||||
|
||||
Reference in New Issue
Block a user