forked from qt-creator/qt-creator
Fix i18n issues
Fix some missing Tr::, and some namespace usages that confused lupdate. Change-Id: Ib5a411fc53a28a6b807600db50aacc68955ca5dc Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
@@ -52,7 +52,7 @@ private:
|
||||
AppManagerInstallPackageStep::AppManagerInstallPackageStep(BuildStepList *bsl, Id id)
|
||||
: AbstractRemoteLinuxDeployStep(bsl, id)
|
||||
{
|
||||
setDisplayName(tr("Install Application Manager package"));
|
||||
setDisplayName(Tr::tr("Install Application Manager package"));
|
||||
|
||||
controller.setDefaultPathValue(getToolFilePath(Constants::APPMAN_CONTROLLER,
|
||||
target()->kit(),
|
||||
@@ -125,7 +125,7 @@ GroupItem AppManagerInstallPackageStep::deployRecipe()
|
||||
};
|
||||
const auto doneHandler = [this](const Process &process, DoneWith result) {
|
||||
if (result == DoneWith::Success) {
|
||||
addProgressMessage(tr("Command finished successfully."));
|
||||
addProgressMessage(Tr::tr("Command finished successfully."));
|
||||
} else {
|
||||
if (process.error() != QProcess::UnknownError
|
||||
|| process.exitStatus() != QProcess::NormalExit) {
|
||||
|
||||
Reference in New Issue
Block a user