diff options
Diffstat (limited to 'misc/progress.js')
-rw-r--r-- | misc/progress.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/progress.js b/misc/progress.js index e9e07ee482f1..c693fafaddd7 100644 --- a/misc/progress.js +++ b/misc/progress.js @@ -86,7 +86,7 @@ Drupal.progressBar.prototype.sendPing = function () { pb.timer = setTimeout(function() { pb.sendPing(); }, pb.delay); }, error: function (xmlhttp) { - pb.displayError('An HTTP error '+ xmlhttp.status +' occured.\n'+ pb.uri); + pb.displayError(Drupal.t("An HTTP error @status occured. \n@uri", { '@status': xmlhttp.status, '@uri': pb.uri })); } }); } |