@@ -, +, @@ show up in the xx-YY-staff-prog.po --- .../intranet-tmpl/prog/en/modules/tools/quotes-upload.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt @@ -109,15 +109,15 @@ function fnErrorHandler(evt) { switch(evt.target.error.code) { case evt.target.error.NOT_FOUND_ERR: - alert('File Not Found!'); + alert(_("File Not Found!")); break; case evt.target.error.NOT_READABLE_ERR: - alert('File is not readable'); + alert(_("File is not readable")); break; case evt.target.error.ABORT_ERR: break; // noop default: - alert('An error occurred reading this file.'); + alert(_("An error occurred reading this file.")); }; } @@ -237,15 +237,15 @@ "aaData" : aaData, "aoColumns" : [ { - "sTitle" : "Number", + "sTitle" : _("Number"), "sWidth" : "2%", }, { - "sTitle" : "Source", + "sTitle" : _("Source"), "sWidth" : "15%", }, { - "sTitle" : "Quote", + "sTitle" : _("Quote"), "sWidth" : "83%", }, ], @@ -292,7 +292,7 @@ reader.onerror = fnErrorHandler; reader.onprogress = fnUpdateProgress; reader.onabort = function(e) { - alert('File read cancelled'); + alert(_("File read cancelled")); parent.location='quotes-upload.pl'; }; reader.onloadstart = function(e) { --