@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js +++ a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js @@ -7,7 +7,7 @@ function clean_line(line) { function clone_line(line) { var new_line = $(line).clone(); - $(new_line).find('td:last-child>a').removeClass("add").addClass("delete").html( __("Delete") ); + $(new_line).find('td:last-child>a').removeClass("add").addClass("delete").html(' %s'.format(__("Delete") )); $(new_line).find('[data-id]').each(function () { $(this).attr({ name: $(this).attr('data-id') }).removeAttr('data-id'); }); --