1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-10 00:43:59 +02:00
This commit is contained in:
Laserlicht 2024-12-02 00:09:14 +01:00
parent afdc555aed
commit 2fae7de99c

View File

@ -123,9 +123,9 @@ QString Innoextract::getHashError(QString exeFile, QString binFile)
return QString{}; // reading problem return QString{}; // reading problem
} }
QString hashOutput = tr("SHA1-Hash of provided files:\n") + tr("Exe") + ":\n" + QString::fromStdString(exeHash) + "\n(" + QString::number(exeSize) + " " + tr("bytes") + ")"; QString hashOutput = tr("SHA1-Hash of provided files:\n") + tr("Exe") + " (" + QString::number(exeSize) + " " + tr("bytes") + ")" + ":\n" + QString::fromStdString(exeHash);
if(!binHash.empty()) if(!binHash.empty())
hashOutput += "\n" + tr("Bin") + ":\n" + QString::fromStdString(binHash) + "\n(" + QString::number(binSize) + " " + tr("bytes") + ")"; hashOutput += "\n" + tr("Bin") + " (" + QString::number(binSize) + " " + tr("bytes") + ")" + ":\n" + QString::fromStdString(binHash);
QString foundKnown; QString foundKnown;
QString exeLang; QString exeLang;