@@ -, +, @@ record when receiving this serial" is used for the subscription. This bug was introduced by Bug 12138. --- koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt @@ -86,7 +86,7 @@ $(document).ready(function() { if ( total_errors > 0 ) { var mes = _("Form not submitted because of the following problem(s)"); mes += "\n------------------------------------------------------------------------------------\n"; - mes += "\n- " _("%s mandatory fields empty (highlighted)").format(total_errors); + mes += "\n- " + _("%s mandatory fields empty (highlighted)").format(total_errors); alert(mes); return false; } --