71c1aa44a9
Test Plan: 1. Go to Administration 2. Go to System Preferences 3. Find 'delimiter' (note the name) 4. Apply patch 5. Repeat step 1 and 2 6. Find 'CSVDelimiter' (note the name) Signed-off-by: Sally <sally.healey@cheshiresharedservices.gov.uk> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
8 lines
429 B
HTML
8 lines
429 B
HTML
[% SWITCH Koha.Preference('CSVDelimiter') %]
|
|
[% CASE '#' %]<span>Pound (#) separated text (.csv)</span>
|
|
[% CASE ',' %]<span>Comma separated text (.csv)</span>
|
|
[% CASE '/' %]<span>Slash separated text (.csv)</span>
|
|
[% CASE ';' %]<span>Semicolon separated text (.csv)</span>
|
|
[% CASE '\\' %]<span>Backslash separated text (.csv)</span>
|
|
[% CASE 'tabulation' %]<span>Tab separated text (.csv)</span>
|
|
[% END %]
|