summaryrefslogtreecommitdiffstatshomepage
path: root/misc/progress.js
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-06-08 12:51:59 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-06-08 12:51:59 +0000
commit57c9a13e1f0ed4e8492467bda817b3385be33225 (patch)
treecad6dffe20ee380f923a1a78b38248420393f332 /misc/progress.js
parent9e0da3dc7c39786bf6d972e07819fe2880cdeaa3 (diff)
downloaddrupal-57c9a13e1f0ed4e8492467bda817b3385be33225.tar.gz
drupal-57c9a13e1f0ed4e8492467bda817b3385be33225.zip
#118026 by kkaefer with fixes from myself: JavaScript translation support and script.js as a default theme JS file to use, if found
Diffstat (limited to 'misc/progress.js')
-rw-r--r--misc/progress.js2
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 }));
}
});
}