Merge branch 'bug_8758' into 3.12-master
[koha.git] / installer / data / mysql / de-DE / mandatory / 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
22 -- class sorting (filing) rules
23 INSERT INTO `class_sort_rules` (`class_sort_rule`, `description`, `sort_routine`) VALUES
24                                ('dewey', 'Standard-Sortierregeln für DDC', 'Dewey'),
25                                ('lcc', 'Standard-Sortierregeln für LCC', 'LCC'),
26                                ('generic', 'Generische Sortierregeln für Signaturen', 'Generic');
27
28
29 -- classification schemes or sources
30 INSERT INTO `class_sources` (`cn_source`, `description`, `used`, `class_sort_rule`) VALUES
31                             ('ddc', 'Dewey-Decimalklassifikation (DDC)', 1, 'dewey'),
32                             ('lcc', 'Klassifikation der Library of Congress (LCC)', 1, 'lcc'),
33                             ('udc', 'Universelle Dezimalklassifikation (UDC)', 0, 'generic'),
34                             ('sudocs', 'SuDoc-Klassifikation (U.S. GPO)', 0, 'generic'),
35                             ('anscr', 'ANSCR (Tonaufnahmen)', 0, 'generic'),
36                             ('z', 'Andere/Generische Klassifikation', 0, 'generic');