summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/registertoolchainoperation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/registertoolchainoperation.cpp')
-rw-r--r--src/libs/installer/registertoolchainoperation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/installer/registertoolchainoperation.cpp b/src/libs/installer/registertoolchainoperation.cpp
index e0fb5324e..0caf1451b 100644
--- a/src/libs/installer/registertoolchainoperation.cpp
+++ b/src/libs/installer/registertoolchainoperation.cpp
@@ -71,8 +71,8 @@ bool RegisterToolChainOperation::performOperation()
if (args.count() < 4) {
setError(InvalidArguments);
- setErrorString(tr("Invalid arguments in %0: %1 arguments given, minimum 4 expected.")
- .arg(name()).arg(args.count()));
+ setErrorString(tr("Invalid arguments in %0: %1 arguments given, %2 expected%3.")
+ .arg(name()).arg(arguments().count()).arg(tr("at least 4"), QLatin1String("")));
return false;
}
@@ -81,12 +81,12 @@ bool RegisterToolChainOperation::performOperation()
PackageManagerCore *const core = value(QLatin1String("installer")).value<PackageManagerCore*>();
if (!core) {
setError(UserDefinedError);
- setErrorString(tr("Needed installer object in \"%1\" operation is empty.").arg(name()));
+ setErrorString(tr("Needed installer object in '%1' operation is empty.").arg(name()));
return false;
}
if (core->value(scQtCreatorInstallerToolchainsFile).isEmpty()) {
setError(UserDefinedError);
- setErrorString(tr("There is no value set for %1 on the installer object.").arg(
+ setErrorString(tr("There is no value set for '%1' on the installer object.").arg(
scQtCreatorInstallerToolchainsFile));
return false;
}