mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-31 18:48:48 -04:00
Normalizing translated messages in Extract.
This commit is contained in:
parent
23b818f9e6
commit
b4dcfd650a
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ int Extract::execute(QStringList arguments)
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
out << "Insert the database password\n> ";
|
out << QObject::tr("Insert password to unlock %1: ").arg(args.at(0));
|
||||||
out.flush();
|
out.flush();
|
||||||
|
|
||||||
CompositeKey compositeKey;
|
CompositeKey compositeKey;
|
||||||
|
@ -77,7 +77,7 @@ int Extract::execute(QStringList arguments)
|
||||||
FileKey fileKey;
|
FileKey fileKey;
|
||||||
QString errorMsg;
|
QString errorMsg;
|
||||||
if (!fileKey.load(keyFilePath, &errorMsg)) {
|
if (!fileKey.load(keyFilePath, &errorMsg)) {
|
||||||
errorTextStream << QObject::tr("Failed to load key file %s: %s").arg(keyFilePath).arg(errorMsg);
|
errorTextStream << QObject::tr("Failed to load key file %1 : %2").arg(keyFilePath).arg(errorMsg);
|
||||||
errorTextStream << endl;
|
errorTextStream << endl;
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue