forked from qt-creator/qt-creator
String improvements
Change-Id: I45778c9562ba530a36ddaf201f0c61d380d701cf Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
This commit is contained in:
@@ -154,7 +154,7 @@
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Signing an APK that uses "Deploy local Qt libraries" is not allowed.
|
||||
Deploying local Qt libraries is incompatible with Android 5</string>
|
||||
Deploying local Qt libraries is incompatible with Android 5.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -361,7 +361,7 @@ void AndroidDeployQtStep::runCommand(const QString &program, const QStringList &
|
||||
if (!buildProc.waitForFinished(2 * 60 * 1000)
|
||||
|| buildProc.error() != QProcess::UnknownError
|
||||
|| buildProc.exitCode() != 0) {
|
||||
QString mainMessage = tr("Packaging Error: Command \"%1 %2\" failed.")
|
||||
QString mainMessage = tr("Packaging error: Command \"%1 %2\" failed.")
|
||||
.arg(program).arg(arguments.join(QLatin1Char(' ')));
|
||||
if (buildProc.error() != QProcess::UnknownError)
|
||||
mainMessage += QLatin1Char(' ') + tr("Reason: %1").arg(buildProc.errorString());
|
||||
|
||||
Reference in New Issue
Block a user