Bug 22024: Update translated web installer files with new class splitting rules
[koha.git] / installer / data / mysql / it-IT / necessari / class_sources.sql
1 -- 
2 -- Default classification sources and filing rules
3 -- for Koha.
4 --
5 -- Copyright (C) 2007 LiblimeA
6 --
7 -- This file is part of Koha.
8 --
9 -- Koha is free software; you can redistribute it and/or modify it under the
10 -- terms of the GNU General Public License as published by the Free Software
11 -- Foundation; either version 2 of the License, or (at your option) any later
12 -- version.
13 -- 
14 -- Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 -- A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 -- 
18 -- You should have received a copy of the GNU General Public License along
19 -- with Koha; if not, write to the Free Software Foundation, Inc.,
20 -- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 SET FOREIGN_KEY_CHECKS=0;
22
23 -- class sorting (filing) rules
24 INSERT INTO `class_sort_rules` (`class_sort_rule`, `description`, `sort_routine`) VALUES
25                                ('dewey', 'Regole di default per CDD', 'Dewey'),
26                                ('lcc', 'Regole di default per LCC', 'LCC'),
27                                ('generic', 'Regole generiche per la collocazione con classificazione', 'Generic');
28
29 -- splitting rules
30 INSERT INTO `class_split_rules` (`class_split_rule`, `description`, `split_routine`) VALUES
31                                ('dewey', 'Default splitting rules for DDC', 'Dewey'),
32                                ('lcc', 'Default splitting rules for LCC', 'LCC'),
33                                ('generic', 'Generic call number splitting rules', 'Generic');
34
35 -- classification schemes or sources
36 INSERT INTO `class_sources` (`cn_source`, `description`, `used`, `class_sort_rule`, `class_split_rule`) VALUES
37                             ('ddc', 'Classificazione  decimale Dewey', 1, 'dewey', 'dewey'),
38                             ('lcc', 'Classificazione della Library of Congress', 1, 'lcc', 'lcc'),
39                             ('udc', 'Classificazione Decimale Universale', 0, 'generic', 'generic'),
40                             ('sudocs', 'SuDoc Classification (U.S. GPO)', 0, 'generic', 'generic'),
41                             ('anscr', 'ANSCR (Sound Recordings)', 0, 'generic', 'generic'),
42                             ('z', 'Altro sistema di classificazione', 0, 'generic', 'generic');
43
44 SET FOREIGN_KEY_CHECKS=1;