@@ -, +, @@ - Update your po file - Verify that strings in serials/subscription-add.tt and serials/subscription-numberpatterns.tt are present and don't contain "\n" character. --- .../intranet-tmpl/prog/en/modules/serials/subscription-add.tt | 8 ++++---- .../prog/en/modules/serials/subscription-numberpatterns.tt | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt @@ -256,24 +256,24 @@ function testPredictionPattern() { var error = 0; var error_msg = ""; if(frequencyid == undefined || frequencyid == ""){ - error_msg += _("- Frequency is not defined\n"); + error_msg += _("- Frequency is not defined") + "\n"; error ++; } acquidate = $("#acqui_date").val(); if(acquidate == undefined || acquidate == ""){ - error_msg += _("- First publication date is not defined\n"); + error_msg += _("- First publication date is not defined") + "\n"; error ++; } [% IF (more_than_one_serial) %] var nextacquidate = $("#nextacquidate").val(); if(nextacquidate == undefined || nextacquidate == ""){ - error_msg += _("- Next issue publication date is not defined\n"); + error_msg += _("- Next issue publication date is not defined") + "\n"; error ++; } [% END %] if(error){ - alert(_("Cannot test prediction pattern for the following reason(s):\n\n") + alert(_("Cannot test prediction pattern for the following reason(s):") + "\n\n" + error_msg); return false; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-numberpatterns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-numberpatterns.tt @@ -11,16 +11,16 @@ var error = 0; var error_msg = ""; if(frequencyid == undefined || frequencyid == "") { - error_msg += _("- Frequency is not defined\n"); + error_msg += _("- Frequency is not defined") + "\n"; error ++; } if(firstacquidate == undefined || firstacquidate == "") { - error_msg += _("- First publication date is not defined\n"); + error_msg += _("- First publication date is not defined") + "\n"; error ++; } if(error){ - alert(_("Cannot test prediction pattern for the following reason(s):\n\n") + alert(_("Cannot test prediction pattern for the following reason(s):") + "\n\n" + error_msg); return false; } --