From b07984fca44c2328e0b734858bd100bb9d110e7a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 12 Oct 2023 12:35:12 +0200 Subject: [PATCH] Bug 35043: Do not have \n or \t appear in PO files Content-Type: text/plain; charset=utf-8 This is a trick, so that we won't have to deal with \t in PO files. \n is not a problem, but it seems consistent to use the same method for both. Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy --- .../prog/en/modules/tools/csv-profiles.tt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt index b14ca1ec8e..4dcd7b7de2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt @@ -111,15 +111,17 @@ [% ELSE %] [% END %] + [% tab_char = '\t' %] [% IF selected_separator == '\t' %] - + [% ELSE %] - + [% END %] + [% new_line_char = '\n' %] [% IF selected_separator == '\n' %] - + [% ELSE %] - + [% END %] [% END %] -- 2.30.2