@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/pages/results.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/pages/results.js +++ a/koha-tmpl/intranet-tmpl/prog/js/pages/results.js @@ -314,9 +314,9 @@ function verify_images() { var w = this.width; var h = this.height; if ((w == 1) || (h == 1)) { - $(this).parent().html('No cover image available'); + $(this).parent().html(''+__("No cover image available")+''); } else if ((this.complete != null) && (!this.complete)) { - $(this).parent().html('No cover image available'); + $(this).parent().html(''+__("No cover image available")+''); } } }); --