diff --git a/Utils/Functions/Net/Download/script.js b/Utils/Functions/Net/Download/script.js index 774bbb4b76..322bba0f98 100644 --- a/Utils/Functions/Net/Download/script.js +++ b/Utils/Functions/Net/Download/script.js @@ -123,8 +123,10 @@ Downloader.prototype.get = function () { .get(); if (fileChecksum != this._checksum) { - var checksumErrorMessage = tr("Error while calculating checksum. \n\nExpected = {0}\nActual = {1}", - this._checksum, fileChecksum); + var checksumErrorMessage = tr("Error while calculating checksum for \"{0}\". \n\nExpected = {1}\nActual = {2}", + this._localFile, + this._checksum, + fileChecksum); this._wizard.message(checksumErrorMessage); @@ -138,4 +140,4 @@ Downloader.prototype.get = function () { } }); } -} \ No newline at end of file +}