From 13bcc7e0bbf51587c7aa3a012f61282fc5f675b5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 27 Apr 2021 15:28:34 +0200 Subject: [PATCH] Bug 15986: Remove \r from HOLD_REMINDER in the yml To prevent the following errors on `gulp po:update` misc/translator/Koha-installer.pot:952: warning: internationalized messages should not contain the '\r' escape sequence Signed-off-by: Jonathan Druart --- installer/data/mysql/en/mandatory/sample_notices.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/en/mandatory/sample_notices.yml b/installer/data/mysql/en/mandatory/sample_notices.yml index 5d97e1ad85..957a74b34e 100644 --- a/installer/data/mysql/en/mandatory/sample_notices.yml +++ b/installer/data/mysql/en/mandatory/sample_notices.yml @@ -1242,7 +1242,7 @@ tables: message_transport_type: email lang: default content: - - "Dear [% borrower.firstname %] [% borrower.surname %],\r\n\r\nThe following holds are waiting at [% branch.branchname %]:\r\n\\r\n[% FOREACH hold IN holds %]\r\n [% hold.biblio.title %] : waiting since [% hold.waitingdate | $KohaDates %]\r\n[% END %]" + - "Dear [% borrower.firstname %] [% borrower.surname %],\n\nThe following holds are waiting at [% branch.branchname %]:\n\n[% FOREACH hold IN holds %]\n [% hold.biblio.title %] : waiting since [% hold.waitingdate | $KohaDates %]\n[% END %]" - module: serial code: SERIAL_ALERT -- 2.20.1