Bugzilla – Attachment 156938 Details for
Bug 35043
Handling of \t in PO files is confusing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35043: Do not have \n or \t appear in PO files
Bug-35043-Do-not-have-n-or-t-appear-in-PO-files.patch (text/plain), 1.69 KB, created by
Jonathan Druart
on 2023-10-12 10:45:06 UTC
(
hide
)
Description:
Bug 35043: Do not have \n or \t appear in PO files
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2023-10-12 10:45:06 UTC
Size:
1.69 KB
patch
obsolete
>From dcf8200eb037e0f0f86241f3a6a08b730e7c7e04 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 12 Oct 2023 12:35:12 +0200 >Subject: [PATCH] Bug 35043: Do not have \n or \t appear in PO files > >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. >--- > .../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 b14ca1ec8e8..4dcd7b7de23 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 %] > <option value=" ">Space ( )</option> > [% END %] >+ [% tab_char = '\t' %] > [% IF selected_separator == '\t' %] >- <option value="\t" selected="selected">Tabulation (\t)</option> >+ <option value="\t" selected="selected">Tabulation ([% tab_char | html %])</option> > [% ELSE %] >- <option value="\t">Tabulation (\t)</option> >+ <option value="\t">Tabulation ([% tab_char | html %])</option> > [% END %] >+ [% new_line_char = '\n' %] > [% IF selected_separator == '\n' %] >- <option value="\n" selected="selected">New line (\n)</option> >+ <option value="\n" selected="selected">New line ([% new_line_char | html %])</option> > [% ELSE %] >- <option value="\n">New line (\n)</option> >+ <option value="\n">New line ([% new_line_char | html %])</option> > [% END %] > [% END %] > >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35043
:
156937
|
156938
|
156950
|
156951
|
157922
|
157923