Koha/koha-tmpl/intranet-tmpl/prog/en/includes/delimiter_text.inc
Mazen Khallaf 71c1aa44a9 Bug 27486: Rename system preference delimiter to CSVDelimiter
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>
2021-01-29 09:03:45 +01:00

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 %]