View | Details | Raw Unified | Return to bug 10964
Collapse All | Expand All

(-)a/installer/data/mysql/de-DE/mandatory/sample_notices.sql (-14 / +13 lines)
Lines 108-116 Signatur: <<items.itemcallnumber>><br/>', 1); Link Here
108
108
109
INSERT INTO `letter` (`module`,`code`,`branchcode`,`name`,`is_html`,`title`,`content`)
109
INSERT INTO `letter` (`module`,`code`,`branchcode`,`name`,`is_html`,`title`,`content`)
110
VALUES (
110
VALUES (
111
'members',  'OPAC_REG_VERIFY',  '',  'Bestätigung der Anmeldung zur Bibliotheksnutzung',  '1',  'Verify Your Account',  'Guten Tag,
111
'members',  'OPAC_REG_VERIFY',  '',  'Bestätigung der Anmeldung zur Bibliotheksnutzung',  '1',  'E-Mail-Adresse für Benutzerkonto verifizieren',  'Guten Tag,
112
112
113
Ihr Bibliothekskonto wurde angelegt. Bitte bestätigen Sie Ihre Emailadresse, indem Sie auf folgenden Link klicken:
113
Ihr Bibliothekskonto wurde angelegt. Bitte bestätigen Sie Ihre E-Mail-Adresse indem Sie auf folgenden Link klicken:
114
114
115
http://<<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>>
115
http://<<OPACBaseURL>>/cgi-bin/koha/opac-registration-verify.pl?token=<<borrower_modifications.verification_token>>
116
116
Lines 121-146 Ihr Bibliotheksteam' Link Here
121
);
121
);
122
122
123
INSERT INTO  letter (module, code, branchcode, name, is_html, title, content)
123
INSERT INTO  letter (module, code, branchcode, name, is_html, title, content)
124
VALUES ('members', 'SHARE_INVITE', '', 'Invitation for sharing a list', '0', 'Share list <<listname>>', 'Dear patron,
124
VALUES ('members', 'SHARE_INVITE', '', 'Einladung zum Teilen einer Liste', '0', 'Teilen der Liste <<listname>>', 'Lieber Benutzer,
125
125
126
One of our patrons, <<borrowers.firstname>> <<borrowers.surname>>, invites you to share a list <<listname>> in our library catalog.
126
Einer unserer Benutzer, <<borrowers.firstname>> <<borrowers.surname>>, möchte die Liste <<listname>> über unseren Bibliothekskatalog mit Ihnen teilen.
127
127
128
To access this shared list, please click on the following URL or copy-and-paste it into your browser address bar.
128
Um die Liste aufzurufen, klicken Sie bitte die untenstehende URL oder kopieren Sie diese in die Adresszeile Ihres Browsers:
129
129
130
<<shareurl>>
130
<<shareurl>>
131
131
132
In case you are not a patron in our library or do not want to accept this invitation, please ignore this mail. Note also that this invitation expires within two weeks.
132
Im Fall dass Sie kein Benutzer unserer Bibliothek sind und diese Einladung nicht annehmen möchten, ignorieren Sie bitte diese E-Mail.
133
Bitte beachten Sie, dass die Einladung nach zwei Wochen ungültig wird.
133
134
134
Thank you.
135
Vielen Dank,
135
136
Ihr Bibliotheksteam'
136
Your library.'
137
);
137
);
138
INSERT INTO  letter (module, code, branchcode, name, is_html, title, content)
138
INSERT INTO  letter (module, code, branchcode, name, is_html, title, content)
139
VALUES ( 'members', 'SHARE_ACCEPT', '', 'Notification about an accepted share', '0', 'Share on list <<listname>> accepted', 'Dear patron,
139
VALUES ( 'members', 'SHARE_ACCEPT', '', 'Angenommene Einladung zum Teilen einer Liste', '0', 'Einladung für Liste <<listname>> angenommen', 'Lieber Benutzer,
140
140
141
We want to inform you that <<borrowers.firstname>> <<borrowers.surname>> accepted your invitation to share your list <<listname>> in our library catalog.
141
Wir möchten Sie darüber informieren, dass der Benutzer <<borrowers.firstname>> <<borrowers.surname>> Ihre Einladung zum teilen der Liste <<listname>> über unseren Bibliothekskatalog angenommen hat.
142
142
143
Thank you.
143
Vielen Dank,
144
144
Ihr Biblioheksteam'
145
Your library.'
146
);
145
);
(-)a/installer/data/mysql/de-DE/mandatory/subtag_registry.sql (-2 / +2 lines)
Lines 83-89 INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code) Link Here
83
VALUES( 'hy','arm');
83
VALUES( 'hy','arm');
84
84
85
INSERT INTO language_descriptions(subtag, type, lang, description)
85
INSERT INTO language_descriptions(subtag, type, lang, description)
86
VALUES ( 'hy', 'language', 'hy', '&#1344;&#1377;&#1397;&#1381;&#1408;&#1383;&#1398;');
86
VALUES ( 'hy', 'language', 'hy', 'Հայերեն');
87
87
88
INSERT INTO language_descriptions(subtag, type, lang, description)
88
INSERT INTO language_descriptions(subtag, type, lang, description)
89
VALUES( 'hy', 'language', 'en', 'Armenian');
89
VALUES( 'hy', 'language', 'en', 'Armenian');
Lines 885-891 INSERT INTO language_descriptions(subtag, type, lang, description) Link Here
885
VALUES( 'Laoo', 'script', 'en', 'Lao');
885
VALUES( 'Laoo', 'script', 'en', 'Lao');
886
886
887
INSERT INTO language_descriptions(subtag, type, lang, description)
887
INSERT INTO language_descriptions(subtag, type, lang, description)
888
VALUES( 'Laoo', 'script', 'en', 'Laotisch');
888
VALUES( 'Laoo', 'script', 'de', 'Laotisch');
889
889
890
890
891
-- REGIONS
891
-- REGIONS
(-)a/installer/data/mysql/de-DE/mandatory/userflags.sql (-5 / +5 lines)
Lines 1-19 Link Here
1
INSERT INTO `userflags` VALUES(0,'superlibrarian','Zugriff auf alle Funktionen',0);
1
INSERT INTO `userflags` VALUES(0,'superlibrarian','Zugriff auf alle Funktionen',0);
2
INSERT INTO `userflags` VALUES(1,'circulate','Medien ausleihen/zurückgeben',0);
2
INSERT INTO `userflags` VALUES(1,'circulate','Medien ausleihen/zurückgeben',0);
3
INSERT INTO `userflags` VALUES(2,'catalogue','Katalogsuche verwenden (Dienstoberfläche)',0);
3
INSERT INTO `userflags` VALUES(2,'catalogue','Katalogsuche verwenden (Dienstoberfläche)',0);
4
INSERT INTO `userflags` VALUES(3,'parameters','Systemparameter verändern',0);
4
INSERT INTO `userflags` VALUES(3,'parameters','Administration und Systemparameter',0);
5
INSERT INTO `userflags` VALUES(4,'borrowers','Benutzer anlegen/ändern',0);
5
INSERT INTO `userflags` VALUES(4,'borrowers','Benutzer anlegen/ändern',0);
6
INSERT INTO `userflags` VALUES(5,'permissions','Berechtigungen für Benutzer vergeben',0);
6
INSERT INTO `userflags` VALUES(5,'permissions','Berechtigungen für Benutzer vergeben',0);
7
INSERT INTO `userflags` VALUES(6,'reserveforothers','Vormerkungen für Benutzer setzen/ändern',0);
7
INSERT INTO `userflags` VALUES(6,'reserveforothers','Vormerkungen für Benutzer setzen/ändern',0);
8
INSERT INTO `userflags` VALUES(7,'borrow','Medien entleihen',1);
8
INSERT INTO `userflags` VALUES(7,'borrow','Medien entleihen',1);
9
INSERT INTO `userflags` VALUES(9,'editcatalogue','Katalogdaten ändern (Titel- und Bestandsdaten ändern)',0);
9
INSERT INTO `userflags` VALUES(9,'editcatalogue','Katalogdaten ändern (Titel- und Bestandsdaten ändern)',0);
10
INSERT INTO `userflags` VALUES(10,'updatecharges','Gebühren kassieren/ändern',0);
10
INSERT INTO `userflags` VALUES(10,'updatecharges','Gebühren verwalten',0);
11
INSERT INTO `userflags` VALUES(11,'acquisition','Erwerbung und Verwaltung von Anschaffungsvorschlägen',0);
11
INSERT INTO `userflags` VALUES(11,'acquisition','Erwerbung und Verwaltung von Anschaffungsvorschlägen',0);
12
INSERT INTO `userflags` VALUES(12,'management','Zugriff auf Administration',0);
12
INSERT INTO `userflags` VALUES(12,'management','Zugriff auf Administration',0);
13
INSERT INTO `userflags` VALUES(13,'tools','Werkzeuge verwenden (Export, Import, Etikettendruck)',0);
13
INSERT INTO `userflags` VALUES(13,'tools','Werkzeuge verwenden (Export, Import, Etikettendruck)',0);
14
INSERT INTO `userflags` VALUES(14,'editauthorities','Normdaten ändern',0);
14
INSERT INTO `userflags` VALUES(14,'editauthorities','Normdaten verwalten',0);
15
INSERT INTO `userflags` VALUES(15,'serials','Zugriff auf Abonnementverwaltung/Zeitschriftenmodul',0);
15
INSERT INTO `userflags` VALUES(15,'serials','Zugriff auf Abonnementverwaltung/Zeitschriftenmodul',0);
16
INSERT INTO `userflags` VALUES(16,'reports','Zugriff auf Reportmodul',0);
16
INSERT INTO `userflags` VALUES(16,'reports','Zugriff auf Reports',0);
17
INSERT INTO `userflags` VALUES(17,'staffaccess','Berechtigungen/Logins für Bibliotheksmitarbeiter vergeben',0);
17
INSERT INTO `userflags` VALUES(17,'staffaccess','Berechtigungen/Logins für Bibliotheksmitarbeiter vergeben',0);
18
INSERT INTO `userflags` VALUES(18,'coursereserves','Semesteraparate',0);
18
INSERT INTO `userflags` VALUES(18,'coursereserves','Semesterapparate',0);
19
INSERT INTO `userflags` VALUES(19,'plugins', 'Koha Plugins', '0');
19
INSERT INTO `userflags` VALUES(19,'plugins', 'Koha Plugins', '0');
(-)a/installer/data/mysql/de-DE/mandatory/userpermissions.sql (-3 / +3 lines)
Lines 26-32 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
26
   (11, 'budget_add_del', 'Konten hinzufügen/ändern, aber bestehende nicht ändern'),
26
   (11, 'budget_add_del', 'Konten hinzufügen/ändern, aber bestehende nicht ändern'),
27
   (11, 'budget_manage_all', 'Alle Konten verwalten'),
27
   (11, 'budget_manage_all', 'Alle Konten verwalten'),
28
   (13, 'edit_news', 'Nachrichten für OPAC und Dienstoberfläche verfassen'),
28
   (13, 'edit_news', 'Nachrichten für OPAC und Dienstoberfläche verfassen'),
29
   (13, 'label_creator', 'Etiketten und Barcodes aus Katalog- und Benutzerdaten erstellen'),
29
   (13, 'label_creator', 'Signaturschilder, Barcodeetiketten und Ausweise erstellen'),
30
   (13, 'edit_calendar', 'Schließtage eintragen'),
30
   (13, 'edit_calendar', 'Schließtage eintragen'),
31
   (13, 'moderate_comments', 'Benutzerkommentare moderieren'),
31
   (13, 'moderate_comments', 'Benutzerkommentare moderieren'),
32
   (13, 'edit_notices', 'Benachrichtigungen verwalten'),
32
   (13, 'edit_notices', 'Benachrichtigungen verwalten'),
Lines 52-58 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
52
   (13, 'marc_modification_templates', 'Templates für MARC-Modifikationen verwalten'),
52
   (13, 'marc_modification_templates', 'Templates für MARC-Modifikationen verwalten'),
53
   (15, 'check_expiration', 'Ablauf eines Abonnements prüfen'),
53
   (15, 'check_expiration', 'Ablauf eines Abonnements prüfen'),
54
   (15, 'claim_serials', 'Fehlende Hefte reklamieren'),
54
   (15, 'claim_serials', 'Fehlende Hefte reklamieren'),
55
   (15, 'create_subscription', 'Neues Abonnement anlegen'),
55
   (15, 'create_subscription', 'Neue Abonnements anlegen'),
56
   (15, 'delete_subscription', 'Bestehende Abonnements löschen'),
56
   (15, 'delete_subscription', 'Bestehende Abonnements löschen'),
57
   (15, 'edit_subscription', 'Bestehende Abonnements bearbeiten'),
57
   (15, 'edit_subscription', 'Bestehende Abonnements bearbeiten'),
58
   (15, 'receive_serials', 'Zugang von Heften'),
58
   (15, 'receive_serials', 'Zugang von Heften'),
Lines 61-67 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
61
   (15, 'superserials', 'Abonnements aller Bibliotheken verwalten (nur relevant wenn IndependentBranches verwendet wird)'),
61
   (15, 'superserials', 'Abonnements aller Bibliotheken verwalten (nur relevant wenn IndependentBranches verwendet wird)'),
62
   (16, 'execute_reports', 'SQL-Reports ausführen'),
62
   (16, 'execute_reports', 'SQL-Reports ausführen'),
63
   (16, 'create_reports', 'SQL-Reports erstellen'),
63
   (16, 'create_reports', 'SQL-Reports erstellen'),
64
   (18, 'manage_courses', 'Semesterapparate anlegen, bearbenten und löschen'),
64
   (18, 'manage_courses', 'Semesterapparate anlegen, bearbeiten und löschen'),
65
   (18, 'add_reserves', 'Semesterapparate anlegen'),
65
   (18, 'add_reserves', 'Semesterapparate anlegen'),
66
   (18, 'delete_reserves', 'Semesterapparate löschen'),
66
   (18, 'delete_reserves', 'Semesterapparate löschen'),
67
   (19, 'manage', 'Plugins verwalten (installieren/deinstallieren)'),
67
   (19, 'manage', 'Plugins verwalten (installieren/deinstallieren)'),
(-)a/installer/data/mysql/de-DE/optional/auth_val.sql (-9 / +9 lines)
Lines 59-72 INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_ Link Here
59
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'ACC', 'Gebühren');
59
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'ACC', 'Gebühren');
60
60
61
-- SIP2 media types
61
-- SIP2 media types
62
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '000', 'Other');
62
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '000', 'Sonstiges');
63
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '001', 'Book');
63
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '001', 'Buch');
64
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '002', 'Magazine');
64
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '002', 'Zeitschrift');
65
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '003', 'Bound journal');
65
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '003', 'Gebundene Zeitschrift');
66
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '004', 'Audio tape');
66
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '004', 'Audio CD/Kassette');
67
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '005', 'Video tape');
67
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '005', 'Video/DVD');
68
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '006', 'CD/CDROM');
68
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '006', 'CD/CDROM');
69
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '007', 'Diskette');
69
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '007', 'Diskette');
70
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '008', 'Book with diskette');
70
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '008', 'Buch mit Diskette');
71
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '009', 'Book with CD');
71
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '009', 'Buch mit CD');
72
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '010', 'Book with audio tape');
72
INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('SIP_MEDIA_TYPE', '010', 'Buch mit Audio CD/Kassette');
(-)a/installer/data/mysql/de-DE/optional/csv_profiles.sql (-1 / +1 lines)
Lines 1-2 Link Here
1
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type )
1
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type )
2
VALUES ( "Zeitschriftenreklamationen", "Standardprofil für den Export von Heftinformationen für Zeitschriftenreklamationen", "LIEFERANT=aqbooksellers.name|TITEL=subscription.title|HEFTNUMMER=serial.serialseq|SEIT=serial.planneddate", ",", "sql" );
2
VALUES ( "Zeitschriftenreklamationen", "Standardprofil für den Export von Heftinformationen für Zeitschriftenreklamationen", "LIEFERANT=aqbooksellers.name|TITEL=subscription.title|HEFTNUMMER=serial.serialseq|VERSPÄTET SEIT=serial.planneddate", ",", "sql" );
(-)a/installer/data/mysql/de-DE/optional/patron_categories.sql (-1 / +1 lines)
Lines 20-23 INSERT INTO `categories` (`categorycode`, `description`, `enrolmentperiod`, `upp Link Here
20
('L','Bibliothek',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','I'),
20
('L','Bibliothek',99,999,18,NULL,NULL,'0.000000',1,NULL,'0.000000','I'),
21
21
22
-- Staff
22
-- Staff
23
('S','Mitarbeiter',99,999,18,NULL,NULL,'0.000000',0,NULL,'0.000000','S');
23
('S','Bibliotheksmitarbeiter',99,999,18,NULL,NULL,'0.000000',0,NULL,'0.000000','S');
(-)a/installer/data/mysql/de-DE/optional/patron_categories.txt (-3 / +3 lines)
Lines 15-26 Organisation - Benutzer ist eine Institution, keine Person Link Here
15
				SC	- Schule
15
				SC	- Schule
16
				L	- Bibliothek
16
				L	- Bibliothek
17
17
18
Professioneller - Mitglied einer Organisation mit der Organisation als Bürgen
18
Mitarbeiter (Organisation) - Mitarbeiter einer Organisation mit der Organisation als Bürgen
19
				T	- Lehrer
19
				T	- Lehrer
20
				B	- Gremienmitglied
20
				B	- Gremienmitglied
21
				
21
				
22
Mitarbeiter - Benutzer ist Mitarbeiter der Bibliothek mit entsprechenden Berechtigungen
22
Bibliotheksmitarbeiter - Benutzer ist Mitarbeiter der Bibliothek mit entsprechenden Berechtigungen
23
				S	- Mitarbeiter
23
				S	- Bibliotheksmitarbeiter
24
24
25
Die Benutzerkategorien sind fest codiert, Benutzertypen können aber jederzeit
25
Die Benutzerkategorien sind fest codiert, Benutzertypen können aber jederzeit
26
im Administrationsbereich neu angelegt, geändert oder gelöscht werden.
26
im Administrationsbereich neu angelegt, geändert oder gelöscht werden.
(-)a/installer/data/mysql/de-DE/optional/sample_creator_data.sql (-4 / +3 lines)
Lines 3-9 Link Here
3
3
4
LOCK TABLES `creator_layouts` WRITE;
4
LOCK TABLES `creator_layouts` WRITE;
5
/*!40000 ALTER TABLE `creator_layouts` DISABLE KEYS */;
5
/*!40000 ALTER TABLE `creator_layouts` DISABLE KEYS */;
6
INSERT INTO `creator_layouts` VALUES (17,'CODE39',1,'BIBBAR','Label Test',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(18,'CODE39',1,'BAR','DEFAULT',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(19,'CODE39',1,'BAR','DEFAULT',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(20,'CODE39',1,'BAR','Test Layout',0,'TR',10,'POINT',0,'L','barcode','<opt page_side="F" units="POINT">
6
INSERT INTO `creator_layouts` VALUES (17,'CODE39',1,'BIBBAR','Etikettentest',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(18,'CODE39',1,'BAR','DEFAULT',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(19,'CODE39',1,'BAR','DEFAULT',0,'TR',3,'POINT',0,'L','title, author, isbn, issn, itemtype, barcode, itemcallnumber','<opt></opt>','Labels'),(20,'CODE39',1,'BAR','Testlayout',0,'TR',10,'POINT',0,'L','barcode','<opt page_side="F" units="POINT">
7
  <images name="image_1" Dx="72" Ox="0" Oy="0" Sx="0" Sy="0" Tx="4.5" Ty="63">
7
  <images name="image_1" Dx="72" Ox="0" Oy="0" Sx="0" Sy="0" Tx="4.5" Ty="63">
8
    <data_source image_name="none" image_source="patronimages" />
8
    <data_source image_name="none" image_source="patronimages" />
9
  </images>
9
  </images>
Lines 21-33 UNLOCK TABLES; Link Here
21
21
22
LOCK TABLES `creator_templates` WRITE;
22
LOCK TABLES `creator_templates` WRITE;
23
/*!40000 ALTER TABLE `creator_templates` DISABLE KEYS */;
23
/*!40000 ALTER TABLE `creator_templates` DISABLE KEYS */;
24
INSERT INTO `creator_templates` VALUES (1,1,'Avery 5160 | 1 x 2-5/8','3 columns, 10 rows of labels',8.5,11,2.63,1,0.139,0,0.35,0.23,3,10,0.13,0,'INCH','Labels'),(7,13,'Demco WS14942260','1\" X 1.5\" Spine Label | Setup for up to four lines of text',8.5,11,1.5,1,0.236,0,0.5,0.25,5,10,0.0625,0,'INCH','Labels'),(12,14,'Demco WS14942260','1\" X 1.5\" Spine Label | Setup for five lines of text',8.5,11,1.5,1,0.139,0,0.53,0.3,5,10,0.0625,0,'INCH','Labels'),(22,0,'DEFAULT TEMPLATE 01','Default description',0,5,0,0,0,0,0,0,0,0,0,0,'POINT','Labels'),(23,16,'HB-PC0001','A template for home brewed patron card forms',8.5,11,3.1875,1.9375,0,0,0.6875,0.875,2,4,0.4375,0.1875,'INCH','Patroncards');
24
INSERT INTO `creator_templates` VALUES (1,1,'Avery 5160 | 1 x 2-5/8','3 Spalten, 10 Reihen mit Etiketten',8.5,11,2.63,1,0.139,0,0.35,0.23,3,10,0.13,0,'INCH','Labels'),(7,13,'Demco WS14942260','1\" X 1.5\" Rückenschild | Bis zu 4 Zeilen Text',8.5,11,1.5,1,0.236,0,0.5,0.25,5,10,0.0625,0,'INCH','Labels'),(12,14,'Demco WS14942260','1\" X 1.5\" Rückenschild | Bis zu 5 Zeilen Text',8.5,11,1.5,1,0.139,0,0.53,0.3,5,10,0.0625,0,'INCH','Labels'),(22,0,'Standardtemplate 01','Standardbeschreibung',0,5,0,0,0,0,0,0,0,0,0,0,'POINT','Labels'),(23,16,'HB-PC0001','Template für selbsterstellte Benutzerausweise',8.5,11,3.1875,1.9375,0,0,0.6875,0.875,2,4,0.4375,0.1875,'INCH','Patroncards');
25
/*!40000 ALTER TABLE `creator_templates` ENABLE KEYS */;
25
/*!40000 ALTER TABLE `creator_templates` ENABLE KEYS */;
26
UNLOCK TABLES;
26
UNLOCK TABLES;
27
27
28
LOCK TABLES `printers_profile` WRITE;
28
LOCK TABLES `printers_profile` WRITE;
29
/*!40000 ALTER TABLE `printers_profile` DISABLE KEYS */;
29
/*!40000 ALTER TABLE `printers_profile` DISABLE KEYS */;
30
INSERT INTO `printers_profile` VALUES (1,'Library Laser',1,'Bypass',-2,9,3,0,'POINT','Labels'),(11,'Library Laser',1,'Tray 1',0,0,0,0,'POINT','Labels'),(16,'Test Printer 01',23,'Test Bin',0,0,0,0,'POINT','Patroncards');
30
INSERT INTO `printers_profile` VALUES (1,'Laserdrucker Bibliothek',1,'Bypass',-2,9,3,0,'POINT','Labels'),(11,'Laserdrucker Bibliothek',1,'Fach 1',0,0,0,0,'POINT','Labels'),(16,'Testdrucker 01',23,'Testfach',0,0,0,0,'POINT','Patroncards');
31
/*!40000 ALTER TABLE `printers_profile` ENABLE KEYS */;
31
/*!40000 ALTER TABLE `printers_profile` ENABLE KEYS */;
32
UNLOCK TABLES;
32
UNLOCK TABLES;
33
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
33
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
34
- 

Return to bug 10964