Koha/installer/data/mysql/it-IT/necessari/sample_numberpatterns.sql
Koha SAB CINECA 15e78498ac Bug 12240 - update of Italian SQL files (non-MARC setup)
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>
2014-05-19 15:26:16 +00:00

25 lines
993 B
SQL

INSERT INTO subscription_numberpatterns
(label, displayorder, description, numberingmethod,
label1, add1, every1, whenmorethan1, setto1, numbering1,
label2, add2, every2, whenmorethan2, setto2, numbering2,
label3, add3, every3, whenmorethan3, setto3, numbering3)
VALUES
('Number', 1, 'Metodo di numerazione semplice', 'No.{X}',
'Number', 1, 1, 99999, 1, NULL,
NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL),
('Volume, Number, Issue', 2, 'Volume Numero Copia 1', 'Vol.{X}, Number {Y}, Issue {Z}',
'Volume', 1, 48, 99999, 1, NULL,
'Number', 1, 4, 12, 1, NULL,
'Issue', 1, 1, 4, 1, NULL),
('Volume, Number', 3, 'Volume Numero 1', 'Vol {X}, No {Y}',
'Volume', 1, 12, 99999, 1, NULL,
'Number', 1, 1, 12, 1, NULL,
NULL, NULL, NULL, NULL, NULL, NULL),
('Seasonal', 4, 'Stagionale', '{X} {Y}',
'Season', 1, 1, 3, 0, 'season',
'Year', 1, 4, 99999, 1, NULL,
NULL, NULL, NULL, NULL, NULL, NULL);