Koha/installer/data/mysql/it-IT/necessari/sample_frequencies.sql
Zeno Tajoli d0f2bad12e Bug 16585: Update Italian installer sample files for 16.05
With this patch all sample/defintions .sql files are updated and translated into Italian
(if you select italian during web installation).

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
2016-08-05 06:11:11 +00:00

29 lines
1,009 B
SQL

INSERT INTO subscription_frequencies
(id, description, displayorder, unit, unitsperissue, issuesperunit)
VALUES
(1,'2/giorno',1,'day',1,2),
(2,'1/giorno',2,'day',1,1),
(3,'3/settimana',3,'week',1,3),
(4,'1/settimana',5,'week',1,1),
(5,'1 ogni 2 settimane',6,'week',2,1),
(6,'1 ogni 3 settimane',7,'week',3,1),
(7,'1 al mese',11,'month',1,1),
(8,'1 ogni 2 mesi',12,'month',2,1),
(9,'1 ogni 3 mesi',13,'month',3,1),
(10,'2 per anno',10,'month',6,1),
(11,'1 per anno',22,'year',1,1),
(12,'1 ogni 2 anni',23,'year',2,1),
(13,'Irregulare',25,NULL,1,1),
(14,'2/settimana',4,'week',1,2),
(15,'3 volte al mese',8,'month',1,3),
(16,'2 volte al mese',9,'month',1,2),
(17,'1 ogni 4 mesi',14,'month',4,1),
(18,'1 ogni 6 mesi',15,'month',6,1),
(19,'10 per anno',17,'year',1,10),
(20,'8 per anno',19,'year',1,8),
(21,'7 per anno',20,'year',1,7),
(22,'5 per anno',21,'year',1,5),
(23,'1 ogni 3 anni',24,'year',3,1),
(24,'Update continuo',26,NULL,1,1),
(25,'9 per anno',18,'year',1,9),
(26,'11 per anno',16,'year',1,11);