Android: Convert to using Tr::tr

Change-Id: Ie9110093101b0f49808b4da7b13ac3f47c3bb994
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2022-10-06 17:53:35 +02:00
parent 8741ce6afc
commit 5c65115271
50 changed files with 753 additions and 4360 deletions

View File

@@ -2,6 +2,7 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "androiderrormessage.h"
#include "androidtr.h"
#include <QObject>
@@ -13,34 +14,34 @@ QString AndroidErrorMessage::getMessage(ErrorCode errorCode, const QVariantList
Q_UNUSED(parameters)
switch (errorCode) {
case SDKInstallationError:
return tr("Android: SDK installation error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: SDK installation error 0x%1").arg(errorCode, 0, 16);
case NDKInstallationError:
return tr("Android: NDK installation error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: NDK installation error 0x%1").arg(errorCode, 0, 16);
case JavaInstallationError:
return tr("Android: Java installation error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Java installation error 0x%1").arg(errorCode, 0, 16);
case AntInstallationError:
return tr("Android: ant installation error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: ant installation error 0x%1").arg(errorCode, 0, 16);
case AdbInstallationError:
return tr("Android: adb installation error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: adb installation error 0x%1").arg(errorCode, 0, 16);
case DeviceConnectionError:
return tr("Android: Device connection error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Device connection error 0x%1").arg(errorCode, 0, 16);
case DevicePermissionError:
return tr("Android: Device permission error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Device permission error 0x%1").arg(errorCode, 0, 16);
case DeviceAuthorizationError:
return tr("Android: Device authorization error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Device authorization error 0x%1").arg(errorCode, 0, 16);
case DeviceAPILevelError:
return tr("Android: Device API level not supported: error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Device API level not supported: error 0x%1").arg(errorCode, 0, 16);
default:
return tr("Android: Unknown error 0x%1").arg(errorCode, 0, 16);
return Tr::tr("Android: Unknown error 0x%1").arg(errorCode, 0, 16);
}
}