@@ -, +, @@ (followup 1) --- .../intranet-tmpl/prog/en/includes/cat-toolbar.inc | 4 ++-- .../prog/en/modules/cataloguing/merge.tt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -30,7 +30,7 @@ function confirm_deletion() { var count = [% count %]; var is_confirmed; if (count>0){ - is_confirmed= alert(_('There are [ '+ count +' ] item(s) attached to this record \n You must delete all items before deleting this record.')); + is_confirmed= alert(count + " " +_("item(s) are attached to this record.\nYou must delete all items before deleting this record.")); } else{ is_confirmed= confirm(_("Are you sure you want to delete this record? ")); } @@ -50,7 +50,7 @@ function confirm_deletion() { function confirm_items_deletion() { var count = [% count %]; if(count > 0){ - if(confirm(_('Are you sure you want to delete the ' + count + ' attached items? '))){ + if(confirm(_("Are you sure you want to delete the") + " " + count + " " + _("attached items?"))){ window.location="/cgi-bin/koha/cataloguing/additem.pl?op=delallitems&biblionumber=[% biblionumber %]"; }else{ return false; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt @@ -113,7 +113,7 @@ $(document).ready(function(){ // We select the whole field and removing non-selected subfields, instead of... // Alerting the user - alert(_('This subfield cannot be added: there is no ' + field + ' field in the destination record.')); + alert(_("This subfield cannot be added: there is no") + " " + field + " " + _("field in the destination record.")); pField.checked = false; } else { --