mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-30 01:58:41 -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;
|
||||
}
|
||||
|
||||
out << "Insert the database password\n> ";
|
||||
out << QObject::tr("Insert password to unlock %1: ").arg(args.at(0));
|
||||
out.flush();
|
||||
|
||||
CompositeKey compositeKey;
|
||||
|
@ -77,7 +77,7 @@ int Extract::execute(QStringList arguments)
|
|||
FileKey fileKey;
|
||||
QString 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;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue