Merge remote branch 'kc/new/enh/bug_4449' into kcmaster
[koha.git] / installer / data / mysql / it-IT / necessari / auth_val.sql
1 SET FOREIGN_KEY_CHECKS=0;
2
3 -- Reasons for acceptance or rejection of suggestions in acquisitions
4 INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SUGGEST','BSELL','Bestseller');
5 INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SUGGEST','SCD','Copia a scaffale danneggiata');
6 INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SUGGEST','LCL','Copia della biblioteca persa');
7 INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SUGGEST','AVILL','Disponibile via prestito ILL');
8
9 -- availability statuses
10 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOST','0','Non persa');
11 INSERT INTO `authorised_values`  (category, authorised_value, lib) VALUES ('LOST','2','Lungo ritardo (persa)');
12 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOST','1','Persa');
13 INSERT INTO `authorised_values`  (category, authorised_value, lib ) VALUES ('LOST','3','Persa e pagata da');
14 INSERT INTO `authorised_values`  (category, authorised_value, lib )VALUES ('LOST','4','Mancante');
15
16 -- damaged status of an item
17 INSERT INTO `authorised_values`  (category, authorised_value, lib) VALUES ('DAMAGED','0','Non danneggiata');
18 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('DAMAGED','1','Danneggiata');
19
20 -- location qualification for an item, departments are linked by default to items.location
21 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','FIC','Fiction');
22 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','CHILD','Area bambini');
23 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','DISPLAY','A scaffale aperto');
24 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','NEW','Scaffale novità');
25 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','STAFF','Ufficio staff');
26 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','GEN','Sezione generale');
27 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','AV','Audiovideo');
28 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('LOC','REF','Strumenti di reference');
29
30 -- collection codes for an item
31 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('CCODE','FIC','Fiction');
32 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('CCODE','REF','Strumenti di reference');
33 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('CCODE','NFIC','Non Fiction');
34
35 -- withdrawn status of an item, linked to items.wthdrawn
36 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('WITHDRAWN','0','Non ritirata');
37 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('WITHDRAWN','1','Ritirata dalla circolazione');
38
39 -- loanability status of an item, linked to items.notforloan
40 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('NOT_LOAN','-1','Ordinato');
41 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('NOT_LOAN','0','Per il prestito');
42 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('NOT_LOAN','1','Non per il prestito');
43 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('NOT_LOAN','2','Uso interno');
44
45 -- restricted status of an item, linked to items.restricted
46 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('RESTRICTED','0','Nessuna restrizione');
47 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('RESTRICTED','1','Accesso limitato');
48
49 -- manual invoice types
50 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('MANUAL_INV','Costo fotocopie','.25');
51
52 -- custom borrower notes
53 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('BOR_NOTES','ADDR','Indirizzo (Nota)');
54
55 -- Qualifiche per gli autori
56
57 INSERT INTO `authorised_values` (`category`, `authorised_value`, `lib`) VALUES 
58 ('qualif', '570', 'Altro'),
59 ('qualif', '205', 'Collaboratore'),
60 ('qualif', '210', 'Commentatore'),
61 ('qualif', '571', 'Coordinatore'),
62 ('qualif', '573', 'Diffusore'),
63 ('qualif', '651', 'Direttore editoriale'),
64 ('qualif', '650', 'Editore'),
65 ('qualif', '440', 'Illustratore'),
66 ('qualif', '075', 'Postfatore'),
67 ('qualif', '080', 'Prefatore'),
68 ('qualif', '574', 'Presentatore'),
69 ('qualif', '710', 'Redattore'),
70 ('qualif', '575', 'Responsabile'),
71 ('qualif', '730', 'Traduttore'),
72 ('qualif', '020', 'Chiosatore'),
73 ('qualif', '723', 'Sponsor'),
74 ('qualif', '675', 'Recensore'),
75 ('qualif', '600', 'Fotografo'),
76 ('qualif', '370', 'Film editor'),
77 ('qualif', '673', 'Direttore'),
78 ('qualif', '605', 'Presentatore'),
79 ('qualif', '557', 'Organizzatore del congresso'),
80 ('qualif', '340', 'Editor'),
81 ('qualif', '727', 'Relatore di tesi'),
82 ('qualif', '220', 'Compilatore'),
83 ('qualif', '395', 'Fondatore'),
84 ('qualif', '100', 'Autore dell''opere che è stata adattata'),
85 ('qualif', '230', 'Compositore'),
86 ('qualif', '520', 'Paroliere'),
87 ('qualif', '295', 'Istituzione garante della tesi'),
88 ('qualif', '010', 'Adattarore');
89
90 -- Codici dei Paesi (COUNTRY)
91 INSERT INTO `authorised_values` (`category`, `authorised_value`, `lib`) VALUES
92 ('COUNTRY', 'IT', 'Italia'),
93 ('COUNTRY', 'US', 'Stati Uniti'),
94 ('COUNTRY', 'GB', 'Regno Unito - UK '),
95 ('COUNTRY', 'DE', 'Germania'),
96 ('COUNTRY', 'FR', 'Francia'),
97 ('COUNTRY', 'VA', 'Vaticano'),
98 ('COUNTRY', 'CN', 'Cina'),
99 ('COUNTRY', 'IN', 'India');
100
101 -- Codici delle lingue (LANG)
102 INSERT INTO `authorised_values` (`category`, `authorised_value`, `lib`) VALUES
103 ('LANG', 'ita', 'italiano'),
104 ('LANG', 'eng', 'inglese'),
105 ('LANG', 'ger', 'tedesco'),
106 ('LANG', 'fre', 'francese'),
107 ('LANG', 'lat', 'latino');
108
109 SET FOREIGN_KEY_CHECKS=1;
110