15e78498ac
To test: - Apply this patch. - Reset your DB (DROP DATABASE, CREATE DATABASE -- whatever method you prefer) - Install it-IT templates on command line - Run the webinstaller using it-IT - Follow the steps and choose all under 'necessari' => SUCCESS: no errors => Extra: see the italian installation and control the translation Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Tested doing it-IT install, all files selected, all load ok. No koha-qa errors Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Ran the Italian web installer, no errors. Checked some of the changed data, like the translated notices, in the interface. No problems found. Signed-off-by: Galen Charlton <gmc@esilibrary.com>
16 lines
616 B
SQL
16 lines
616 B
SQL
INSERT INTO subscription_frequencies
|
|
(description, unit, unitsperissue, issuesperunit, displayorder)
|
|
VALUES
|
|
('2 al giorno', 'day', 1, 2, 1),
|
|
('ogni giorno', 'day', 1, 1, 2),
|
|
('3 alla sett.', 'week', 1, 3, 3),
|
|
('ogni sett.', 'week', 1, 1, 4),
|
|
('1 ogni 2 sett.', 'week', 2, 1, 5),
|
|
('1 ogni 3 sett.', 'week', 3, 1, 6),
|
|
('ogni mese', 'month', 1, 1, 7),
|
|
('1 ogni 2 mesi', 'month', 2, 1, 8),
|
|
('1 ogni 3 mesi', 'month', 3, 1, 9),
|
|
('2 all\'anno', 'month', 6, 1, 10),
|
|
('ogni anno', 'year', 1, 1, 11),
|
|
('1 ogni 2 anni', 'year', 2, 1, 12),
|
|
('Irregular', NULL, 1, 1, 13);
|