| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package MARC::Field008::L10N::cs; |
|
2
|
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
142170
|
use base qw(MARC::Field008::L10N); |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
1592
|
|
|
4
|
2
|
|
|
2
|
|
17
|
use strict; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
56
|
|
|
5
|
2
|
|
|
2
|
|
12
|
use warnings; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
117
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
1585
|
use Unicode::UTF8 qw(decode_utf8); |
|
|
2
|
|
|
|
|
2211
|
|
|
|
2
|
|
|
|
|
10908
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = 0.01; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our %Lexicon = ( |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# Common terms. |
|
14
|
|
|
|
|
|
|
'Date entered on file' => decode_utf8('Datum uložení do souboru'), |
|
15
|
|
|
|
|
|
|
'Type of date/Publication status' => decode_utf8('Typ data/publikační status'), |
|
16
|
|
|
|
|
|
|
'Date 1' => decode_utf8('Datum 1'), |
|
17
|
|
|
|
|
|
|
'Date 2' => decode_utf8('Datum 2'), |
|
18
|
|
|
|
|
|
|
'Place of publication, production, or execution' => decode_utf8('Místo vydání, produkce nebo realizace'), |
|
19
|
|
|
|
|
|
|
'Material' => decode_utf8('Materiál'), |
|
20
|
|
|
|
|
|
|
'Language' => 'Jazyk dokumentu', |
|
21
|
|
|
|
|
|
|
'Modified record' => decode_utf8('Modifikace záznamu'), |
|
22
|
|
|
|
|
|
|
'Cataloging source' => 'Zdroj katalogizace', |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# Type of date. |
|
25
|
|
|
|
|
|
|
'type_of_date.b' => decode_utf8('data neuvedena - datum před n.l.'), |
|
26
|
|
|
|
|
|
|
'type_of_date.c' => decode_utf8('průběžně vydávaný'), |
|
27
|
|
|
|
|
|
|
'type_of_date.d' => decode_utf8('s ukončeným vydáváním'), |
|
28
|
|
|
|
|
|
|
'type_of_date.e' => decode_utf8('podrobné datum'), |
|
29
|
|
|
|
|
|
|
'type_of_date.i' => decode_utf8('data zahrnutá ve sbírce'), |
|
30
|
|
|
|
|
|
|
'type_of_date.k' => decode_utf8('data většiny sbírky'), |
|
31
|
|
|
|
|
|
|
'type_of_date.m' => decode_utf8('rozmezí dat (u vícedílných popisných jednotek)'), |
|
32
|
|
|
|
|
|
|
'type_of_date.n' => decode_utf8('neznámá data'), |
|
33
|
|
|
|
|
|
|
'type_of_date.p' => decode_utf8('datum distribuce/zveřejnění/vydání a datum produkce/nahrávky, pokud jsou odlišná'), |
|
34
|
|
|
|
|
|
|
'type_of_date.q' => decode_utf8('nejisté datum'), |
|
35
|
|
|
|
|
|
|
'type_of_date.r' => decode_utf8('datum reprintu/reedice a datum původního vydání'), |
|
36
|
|
|
|
|
|
|
'type_of_date.s' => decode_utf8('jedno známé/pravděpodobné datum'), |
|
37
|
|
|
|
|
|
|
'type_of_date.t' => decode_utf8('datum vydání a datum copyrightu'), |
|
38
|
|
|
|
|
|
|
'type_of_date.u' => decode_utf8('status není znám (datum zahájení a/nebo ukončení vydávání není známo)'), |
|
39
|
|
|
|
|
|
|
'type_of_date.|' => decode_utf8('kód se neuvádí'), |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
# Modified record. |
|
42
|
|
|
|
|
|
|
'modified_record._' => decode_utf8('nemodifikován'), |
|
43
|
|
|
|
|
|
|
'modified_record.d' => decode_utf8('vynechán podrobný rozpis'), |
|
44
|
|
|
|
|
|
|
'modified_record.o' => decode_utf8('plně v latince/tisk lístků v latince'), |
|
45
|
|
|
|
|
|
|
'modified_record.r' => decode_utf8('plně v latince/tisk lístků v nelatinkovém písmu'), |
|
46
|
|
|
|
|
|
|
'modified_record.s' => decode_utf8('zkrácený'), |
|
47
|
|
|
|
|
|
|
'modified_record.x' => decode_utf8('vynechané znaky'), |
|
48
|
|
|
|
|
|
|
'modified_record.|' => decode_utf8('kód se neuvádí'), |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
# Cataloging source. |
|
51
|
|
|
|
|
|
|
'cataloging_source._' => decode_utf8('národní bibliografická agentura'), |
|
52
|
|
|
|
|
|
|
'cataloging_source.c' => decode_utf8('program kooperativní katalogizace'), |
|
53
|
|
|
|
|
|
|
'cataloging_source.d' => decode_utf8('jiný zdroj'), |
|
54
|
|
|
|
|
|
|
'cataloging_source.u' => decode_utf8('není znám'), |
|
55
|
|
|
|
|
|
|
'cataloging_source.|' => decode_utf8('kód se neuvádí'), |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
# Common material terms. |
|
58
|
|
|
|
|
|
|
'Form of item' => decode_utf8('Forma popisné jednotky'), |
|
59
|
|
|
|
|
|
|
'Government publication' => decode_utf8('Vládní publikace'), |
|
60
|
|
|
|
|
|
|
'Index' => decode_utf8('Rejstřík'), |
|
61
|
|
|
|
|
|
|
'Target audience' => decode_utf8('Uživatelské určení'), |
|
62
|
|
|
|
|
|
|
'Undefined' => decode_utf8('Nedefinován'), |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# books |
|
65
|
|
|
|
|
|
|
'Illustrations' => 'Ilustrace', |
|
66
|
|
|
|
|
|
|
# Target audience |
|
67
|
|
|
|
|
|
|
# Form of item |
|
68
|
|
|
|
|
|
|
'Nature of contents' => decode_utf8('Povaha obsahu'), |
|
69
|
|
|
|
|
|
|
# Government publication |
|
70
|
|
|
|
|
|
|
'Conference publication' => decode_utf8('Publikace z konference'), |
|
71
|
|
|
|
|
|
|
'Festschrift' => decode_utf8('Jubilejní sborník'), |
|
72
|
|
|
|
|
|
|
# Index |
|
73
|
|
|
|
|
|
|
# Undefined |
|
74
|
|
|
|
|
|
|
'Literary form' => decode_utf8('Literární forma'), |
|
75
|
|
|
|
|
|
|
'Biography' => 'Biografie', |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
# common material - Target audience. |
|
78
|
|
|
|
|
|
|
'target_audience._' => decode_utf8('není znám nebo specifikován'), |
|
79
|
|
|
|
|
|
|
'target_audience.a' => decode_utf8('předškolní'), |
|
80
|
|
|
|
|
|
|
'target_audience.b' => decode_utf8('mladší děti'), |
|
81
|
|
|
|
|
|
|
'target_audience.c' => decode_utf8('starší děti'), |
|
82
|
|
|
|
|
|
|
'target_audience.d' => decode_utf8('mladiství'), |
|
83
|
|
|
|
|
|
|
'target_audience.e' => decode_utf8('dospělí'), |
|
84
|
|
|
|
|
|
|
'target_audience.f' => decode_utf8('specialisté'), |
|
85
|
|
|
|
|
|
|
'target_audience.g' => decode_utf8('všeobecně'), |
|
86
|
|
|
|
|
|
|
'target_audience.j' => decode_utf8('děti a mládež'), |
|
87
|
|
|
|
|
|
|
'target_audience.|' => decode_utf8('kód se neuvádí'), |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
# common material - Government publication. |
|
90
|
|
|
|
|
|
|
'government_publication._' => decode_utf8('nejedná se o vládní publikaci'), |
|
91
|
|
|
|
|
|
|
'government_publication.a' => decode_utf8('autonomní nebo částečně autonomní složka'), |
|
92
|
|
|
|
|
|
|
'government_publication.c' => decode_utf8('působící ve více lokalitách'), |
|
93
|
|
|
|
|
|
|
'government_publication.f' => decode_utf8('federální/národní'), |
|
94
|
|
|
|
|
|
|
'government_publication.i' => decode_utf8('mezinárodní/mezivládní'), |
|
95
|
|
|
|
|
|
|
'government_publication.l' => decode_utf8('lokální'), |
|
96
|
|
|
|
|
|
|
'government_publication.m' => decode_utf8('působící ve více státech'), |
|
97
|
|
|
|
|
|
|
'government_publication.o' => decode_utf8('vládní publikace - neurčitá úroveň'), |
|
98
|
|
|
|
|
|
|
'government_publication.s' => decode_utf8('státní, oblastní, teritoriální atd.'), |
|
99
|
|
|
|
|
|
|
'government_publication.u' => decode_utf8('není známo, zda se jedná o vládní publikaci'), |
|
100
|
|
|
|
|
|
|
'government_publication.z' => decode_utf8('jiný'), |
|
101
|
|
|
|
|
|
|
'government_publication.|' => decode_utf8('kód se neuvádí'), |
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
# book, map, music, continuing resources, visual material, mixed materials - Form of item. |
|
104
|
|
|
|
|
|
|
'form_of_item._' => decode_utf8('žádný z uvedených'), |
|
105
|
|
|
|
|
|
|
'form_of_item.a' => decode_utf8('mikrofilm'), |
|
106
|
|
|
|
|
|
|
'form_of_item.b' => decode_utf8('mikrofiš'), |
|
107
|
|
|
|
|
|
|
'form_of_item.c' => decode_utf8('mikrokarta'), |
|
108
|
|
|
|
|
|
|
'form_of_item.d' => decode_utf8('zvětšené písmo'), |
|
109
|
|
|
|
|
|
|
'form_of_item.f' => decode_utf8('Braille'), |
|
110
|
|
|
|
|
|
|
'form_of_item.o' => decode_utf8('online'), |
|
111
|
|
|
|
|
|
|
'form_of_item.q' => decode_utf8('přímý elektronický přístup'), |
|
112
|
|
|
|
|
|
|
'form_of_item.r' => decode_utf8('reprodukce normálního písma'), |
|
113
|
|
|
|
|
|
|
'form_of_item.s' => decode_utf8('elektronická podoba'), |
|
114
|
|
|
|
|
|
|
'form_of_item.|' => decode_utf8('kód se neuvádí'), |
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
# book, map - Index. |
|
117
|
|
|
|
|
|
|
'index.0' => decode_utf8('neobsahuje rejstřík'), |
|
118
|
|
|
|
|
|
|
'index.1' => decode_utf8('obsahuje rejstřík'), |
|
119
|
|
|
|
|
|
|
'index.|' => decode_utf8('kód se neuvádí'), |
|
120
|
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
# book, continuing_resources - Conference publication. |
|
122
|
|
|
|
|
|
|
'conference_publication.0' => decode_utf8('nejedná se o materiál z konference'), |
|
123
|
|
|
|
|
|
|
'conference_publication.1' => decode_utf8('materiál z konference'), |
|
124
|
|
|
|
|
|
|
'conference_publication.|' => decode_utf8('kód se neuvádí'), |
|
125
|
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
# book, continuing_resources - Nature of contents. |
|
127
|
|
|
|
|
|
|
'nature_of_content._' => decode_utf8('nespecifikován'), |
|
128
|
|
|
|
|
|
|
'nature_of_content.a' => decode_utf8('referáty/resumé'), |
|
129
|
|
|
|
|
|
|
'nature_of_content.b' => decode_utf8('bibliografie'), |
|
130
|
|
|
|
|
|
|
'nature_of_content.c' => decode_utf8('katalogy'), |
|
131
|
|
|
|
|
|
|
'nature_of_content.d' => decode_utf8('slovníky'), |
|
132
|
|
|
|
|
|
|
'nature_of_content.e' => decode_utf8('encyklopedie'), |
|
133
|
|
|
|
|
|
|
'nature_of_content.f' => decode_utf8('příručky'), |
|
134
|
|
|
|
|
|
|
'nature_of_content.g' => decode_utf8('právnické články'), |
|
135
|
|
|
|
|
|
|
'nature_of_content.i' => decode_utf8('rejstříky'), |
|
136
|
|
|
|
|
|
|
'nature_of_content.j' => decode_utf8('patentové dokumenty'), |
|
137
|
|
|
|
|
|
|
'nature_of_content.k' => decode_utf8('diskografie'), |
|
138
|
|
|
|
|
|
|
'nature_of_content.l' => decode_utf8('legislativa'), |
|
139
|
|
|
|
|
|
|
'nature_of_content.m' => decode_utf8('disertace'), |
|
140
|
|
|
|
|
|
|
'nature_of_content.n' => decode_utf8('literární přehledy z určitého vědního oboru'), |
|
141
|
|
|
|
|
|
|
'nature_of_content.o' => decode_utf8('recenze'), |
|
142
|
|
|
|
|
|
|
'nature_of_content.p' => decode_utf8('programové texty'), |
|
143
|
|
|
|
|
|
|
'nature_of_content.q' => decode_utf8('filmografie'), |
|
144
|
|
|
|
|
|
|
'nature_of_content.r' => decode_utf8('adresáře'), |
|
145
|
|
|
|
|
|
|
'nature_of_content.s' => decode_utf8('statistiky'), |
|
146
|
|
|
|
|
|
|
'nature_of_content.t' => decode_utf8('technické zprávy'), |
|
147
|
|
|
|
|
|
|
'nature_of_content.u' => decode_utf8('standardy/specifikace'), |
|
148
|
|
|
|
|
|
|
'nature_of_content.v' => decode_utf8('právnické kauzy a poznámky ke kauzám'), |
|
149
|
|
|
|
|
|
|
'nature_of_content.w' => decode_utf8('přehledy a výběry z právnických materiálů'), |
|
150
|
|
|
|
|
|
|
'nature_of_content.y' => decode_utf8('ročenky'), |
|
151
|
|
|
|
|
|
|
'nature_of_content.z' => decode_utf8('smlouvy'), |
|
152
|
|
|
|
|
|
|
'nature_of_content.2' => decode_utf8('separáty'), |
|
153
|
|
|
|
|
|
|
'nature_of_content.5' => decode_utf8('kalendáře'), |
|
154
|
|
|
|
|
|
|
'nature_of_content.6' => decode_utf8('komiksy/grafické romány'), |
|
155
|
|
|
|
|
|
|
'nature_of_content.|' => decode_utf8('kód se neuvádí'), |
|
156
|
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
# book - Illustrations. |
|
158
|
|
|
|
|
|
|
'book.illustrations._' => decode_utf8('bez ilustrací'), |
|
159
|
|
|
|
|
|
|
'book.illustrations.a' => decode_utf8('ilustrace'), |
|
160
|
|
|
|
|
|
|
'book.illustrations.b' => decode_utf8('mapy'), |
|
161
|
|
|
|
|
|
|
'book.illustrations.c' => decode_utf8('portréty'), |
|
162
|
|
|
|
|
|
|
'book.illustrations.d' => decode_utf8('grafická znázornění'), |
|
163
|
|
|
|
|
|
|
'book.illustrations.e' => decode_utf8('plány'), |
|
164
|
|
|
|
|
|
|
'book.illustrations.f' => decode_utf8('obrazové přílohy'), |
|
165
|
|
|
|
|
|
|
'book.illustrations.g' => decode_utf8('hudba (noty)'), |
|
166
|
|
|
|
|
|
|
'book.illustrations.h' => decode_utf8('faksimile'), |
|
167
|
|
|
|
|
|
|
'book.illustrations.i' => decode_utf8('erby'), |
|
168
|
|
|
|
|
|
|
'book.illustrations.j' => decode_utf8('genealogické tabulky'), |
|
169
|
|
|
|
|
|
|
'book.illustrations.k' => decode_utf8('formuláře, tiskopisy'), |
|
170
|
|
|
|
|
|
|
'book.illustrations.l' => decode_utf8('ukázky, vzorky'), |
|
171
|
|
|
|
|
|
|
'book.illustrations.m' => decode_utf8('zvukové záznamy'), |
|
172
|
|
|
|
|
|
|
'book.illustrations.o' => decode_utf8('fotografie'), |
|
173
|
|
|
|
|
|
|
'book.illustrations.p' => decode_utf8('iluminace'), |
|
174
|
|
|
|
|
|
|
'book.illustrations.|' => decode_utf8('kód se neuvádí'), |
|
175
|
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
# book - Festschrift. |
|
177
|
|
|
|
|
|
|
'book.festschrift.0' => decode_utf8('nejedná se o jubilejní sborník'), |
|
178
|
|
|
|
|
|
|
'book.festschrift.1' => decode_utf8('jubilejní sborník'), |
|
179
|
|
|
|
|
|
|
'book.festschrift.|' => decode_utf8('kód se neuvádí'), |
|
180
|
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
# book - Literary form. |
|
182
|
|
|
|
|
|
|
'book.literary_form.0' => decode_utf8('nejedná se o beletrii (bez další specifikace)'), |
|
183
|
|
|
|
|
|
|
'book.literary_form.1' => decode_utf8('beletrie (bez další specifikace)'), |
|
184
|
|
|
|
|
|
|
'book.literary_form.d' => decode_utf8('dramata'), |
|
185
|
|
|
|
|
|
|
'book.literary_form.e' => decode_utf8('eseje'), |
|
186
|
|
|
|
|
|
|
'book.literary_form.f' => decode_utf8('romány'), |
|
187
|
|
|
|
|
|
|
'book.literary_form.h' => decode_utf8('humoristická díla, satiry atd.'), |
|
188
|
|
|
|
|
|
|
'book.literary_form.i' => decode_utf8('dopisy'), |
|
189
|
|
|
|
|
|
|
'book.literary_form.j' => decode_utf8('povídky'), |
|
190
|
|
|
|
|
|
|
'book.literary_form.m' => decode_utf8('smíšené formy'), |
|
191
|
|
|
|
|
|
|
'book.literary_form.p' => decode_utf8('poezie'), |
|
192
|
|
|
|
|
|
|
'book.literary_form.s' => decode_utf8('projevy'), |
|
193
|
|
|
|
|
|
|
'book.literary_form.u' => decode_utf8('není znám'), |
|
194
|
|
|
|
|
|
|
'book.literary_form.|' => decode_utf8('kód se neuvádí'), |
|
195
|
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
# book - Biography. |
|
197
|
|
|
|
|
|
|
'book.biography._' => decode_utf8('nejedná se o biografii'), |
|
198
|
|
|
|
|
|
|
'book.biography.a' => decode_utf8('autobiografie'), |
|
199
|
|
|
|
|
|
|
'book.biography.b' => decode_utf8('individuální biografie'), |
|
200
|
|
|
|
|
|
|
'book.biography.c' => decode_utf8('skupinová biografie'), |
|
201
|
|
|
|
|
|
|
'book.biography.d' => decode_utf8('obsahuje biografické informace'), |
|
202
|
|
|
|
|
|
|
'book.biography.|' => decode_utf8('kód se neuvádí'), |
|
203
|
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
# computer files |
|
205
|
|
|
|
|
|
|
# Undefined |
|
206
|
|
|
|
|
|
|
# Target audience |
|
207
|
|
|
|
|
|
|
# Form of item |
|
208
|
|
|
|
|
|
|
# Undefined |
|
209
|
|
|
|
|
|
|
'Type of computer file' => decode_utf8('Typ počítačového souboru'), |
|
210
|
|
|
|
|
|
|
# Undefined |
|
211
|
|
|
|
|
|
|
# Government publication |
|
212
|
|
|
|
|
|
|
# Undefined |
|
213
|
|
|
|
|
|
|
|
|
214
|
|
|
|
|
|
|
# computer_file - Form of item. |
|
215
|
|
|
|
|
|
|
'computer_file.form_of_item._' => decode_utf8('žádný z uvedených'), |
|
216
|
|
|
|
|
|
|
'computer_file.form_of_item.o' => decode_utf8('online zdroj'), |
|
217
|
|
|
|
|
|
|
'computer_file.form_of_item.q' => decode_utf8('přímo elektronický'), |
|
218
|
|
|
|
|
|
|
'computer_file.form_of_item.|' => decode_utf8('kód se neuvádí'), |
|
219
|
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
# computer_file - Type of computer file |
|
221
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.a' => decode_utf8('numerická data'), |
|
222
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.b' => decode_utf8('počítačový program'), |
|
223
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.c' => decode_utf8('reprezentační data'), |
|
224
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.d' => decode_utf8('dokument'), |
|
225
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.e' => decode_utf8('bibliografická data'), |
|
226
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.f' => decode_utf8('font'), |
|
227
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.g' => decode_utf8('hra'), |
|
228
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.h' => decode_utf8('zvuk'), |
|
229
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.i' => decode_utf8('interaktivní multimédia'), |
|
230
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.j' => decode_utf8('online systém / služba'), |
|
231
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.m' => decode_utf8('kombinace'), |
|
232
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.u' => decode_utf8('neznámý'), |
|
233
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.z' => decode_utf8('jiný'), |
|
234
|
|
|
|
|
|
|
'computer_file.type_of_computer_file.|' => decode_utf8('kód se neuvádí'), |
|
235
|
|
|
|
|
|
|
|
|
236
|
|
|
|
|
|
|
# maps |
|
237
|
|
|
|
|
|
|
'Relief' => decode_utf8('Relief'), |
|
238
|
|
|
|
|
|
|
'Projection' => decode_utf8('Kartografická projekce'), |
|
239
|
|
|
|
|
|
|
# Undefined |
|
240
|
|
|
|
|
|
|
'Type of cartographic material' => decode_utf8('Typ kartografického dokumentu'), |
|
241
|
|
|
|
|
|
|
# Undefined |
|
242
|
|
|
|
|
|
|
# Government publication |
|
243
|
|
|
|
|
|
|
# Form of item |
|
244
|
|
|
|
|
|
|
# Undefined |
|
245
|
|
|
|
|
|
|
# Index |
|
246
|
|
|
|
|
|
|
# Undefined |
|
247
|
|
|
|
|
|
|
'Special format characteristics' => decode_utf8('Zvláštní formální charakteristiky'), |
|
248
|
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
# map - Relief. |
|
250
|
|
|
|
|
|
|
'map.relief._' => decode_utf8('reliéf není znázorněn'), |
|
251
|
|
|
|
|
|
|
'map.relief.a' => decode_utf8('vrstevnice'), |
|
252
|
|
|
|
|
|
|
'map.relief.b' => decode_utf8('stínování'), |
|
253
|
|
|
|
|
|
|
'map.relief.c' => decode_utf8('hypsometrické a batymetrické barevné stupnice'), |
|
254
|
|
|
|
|
|
|
'map.relief.d' => decode_utf8('šrafy'), |
|
255
|
|
|
|
|
|
|
'map.relief.e' => decode_utf8('batymetrie / hloubkové údaje'), |
|
256
|
|
|
|
|
|
|
'map.relief.f' => decode_utf8('tvarové čáry'), |
|
257
|
|
|
|
|
|
|
'map.relief.g' => decode_utf8('kótované výšky'), |
|
258
|
|
|
|
|
|
|
'map.relief.i' => decode_utf8('obrazové znázornění'), |
|
259
|
|
|
|
|
|
|
'map.relief.j' => decode_utf8('tvary reliéfu (geomorfologické prvky)'), |
|
260
|
|
|
|
|
|
|
'map.relief.k' => decode_utf8('batymetrie / izolinie'), |
|
261
|
|
|
|
|
|
|
'map.relief.m' => decode_utf8('kresba skal (skalní kresba)'), |
|
262
|
|
|
|
|
|
|
'map.relief.z' => decode_utf8('jiné'), |
|
263
|
|
|
|
|
|
|
'map.relief.|' => decode_utf8('kód se neuvádí'), |
|
264
|
|
|
|
|
|
|
|
|
265
|
|
|
|
|
|
|
# map - Projection. |
|
266
|
|
|
|
|
|
|
'map.projection.__' => decode_utf8('projekce neuvedena'), |
|
267
|
|
|
|
|
|
|
'map.projection.aa' => decode_utf8('Aitoffova projekce'), |
|
268
|
|
|
|
|
|
|
'map.projection.ab' => decode_utf8('gnomonická projekce'), |
|
269
|
|
|
|
|
|
|
'map.projection.ac' => decode_utf8('Lambertova azimutální plochojevná projekce'), |
|
270
|
|
|
|
|
|
|
'map.projection.ad' => decode_utf8('ortografická projekce'), |
|
271
|
|
|
|
|
|
|
'map.projection.ae' => decode_utf8('azimutální ekvidistantní projekce'), |
|
272
|
|
|
|
|
|
|
'map.projection.af' => decode_utf8('stereografická projekce'), |
|
273
|
|
|
|
|
|
|
'map.projection.ag' => decode_utf8('obecná vertikální (near-sided) projekce'), |
|
274
|
|
|
|
|
|
|
'map.projection.am' => decode_utf8('modifikovaná stereografická projekce pro Aljašku'), |
|
275
|
|
|
|
|
|
|
'map.projection.an' => decode_utf8('Chamberlinova trimetrická projekce'), |
|
276
|
|
|
|
|
|
|
'map.projection.ap' => decode_utf8('polární stereografická projekce'), |
|
277
|
|
|
|
|
|
|
'map.projection.au' => decode_utf8('azimutální projekce – blíže neurčená'), |
|
278
|
|
|
|
|
|
|
'map.projection.az' => decode_utf8('azimutální projekce – jiná'), |
|
279
|
|
|
|
|
|
|
'map.projection.ba' => decode_utf8('Gallova projekce'), |
|
280
|
|
|
|
|
|
|
'map.projection.bb' => decode_utf8('Goodova homolografická projekce'), |
|
281
|
|
|
|
|
|
|
'map.projection.bc' => decode_utf8('Lambertova válcová plochojevná projekce'), |
|
282
|
|
|
|
|
|
|
'map.projection.bd' => decode_utf8('Mercatorova projekce'), |
|
283
|
|
|
|
|
|
|
'map.projection.be' => decode_utf8('Millerova projekce'), |
|
284
|
|
|
|
|
|
|
'map.projection.bf' => decode_utf8('Mollweideova projekce'), |
|
285
|
|
|
|
|
|
|
'map.projection.bg' => decode_utf8('sinusoidální projekce'), |
|
286
|
|
|
|
|
|
|
'map.projection.bh' => decode_utf8('příčná Mercatorova projekce'), |
|
287
|
|
|
|
|
|
|
'map.projection.bi' => decode_utf8('Gaussova–Krügerova projekce'), |
|
288
|
|
|
|
|
|
|
'map.projection.bj' => decode_utf8('ekvidistantní válcová projekce (equirektangulární)'), |
|
289
|
|
|
|
|
|
|
'map.projection.bk' => decode_utf8('Křovákova projekce'), |
|
290
|
|
|
|
|
|
|
'map.projection.bl' => decode_utf8('Cassiniho–Soldnerova projekce'), |
|
291
|
|
|
|
|
|
|
'map.projection.bo' => decode_utf8('šikmá Mercatorova projekce'), |
|
292
|
|
|
|
|
|
|
'map.projection.br' => decode_utf8('Robinsonova projekce'), |
|
293
|
|
|
|
|
|
|
'map.projection.bs' => decode_utf8('prostorová šikmá Mercatorova projekce'), |
|
294
|
|
|
|
|
|
|
'map.projection.bu' => decode_utf8('válcová projekce – blíže neurčená'), |
|
295
|
|
|
|
|
|
|
'map.projection.bz' => decode_utf8('válcová projekce – jiná'), |
|
296
|
|
|
|
|
|
|
'map.projection.ca' => decode_utf8('Albersova plochojevná kuželová projekce'), |
|
297
|
|
|
|
|
|
|
'map.projection.cb' => decode_utf8('Bonneova projekce'), |
|
298
|
|
|
|
|
|
|
'map.projection.cc' => decode_utf8('Lambertova konformní kuželová projekce'), |
|
299
|
|
|
|
|
|
|
'map.projection.ce' => decode_utf8('ekvidistantní kuželová projekce'), |
|
300
|
|
|
|
|
|
|
'map.projection.cp' => decode_utf8('polykuželová projekce'), |
|
301
|
|
|
|
|
|
|
'map.projection.cu' => decode_utf8('kuželová projekce – blíže neurčená'), |
|
302
|
|
|
|
|
|
|
'map.projection.cz' => decode_utf8('kuželová projekce – jiná'), |
|
303
|
|
|
|
|
|
|
'map.projection.da' => decode_utf8('Armadillo projekce'), |
|
304
|
|
|
|
|
|
|
'map.projection.db' => decode_utf8('Butterfly (motýlí) projekce'), |
|
305
|
|
|
|
|
|
|
'map.projection.dc' => decode_utf8('Eckertova projekce'), |
|
306
|
|
|
|
|
|
|
'map.projection.dd' => decode_utf8('Goodova homolosinová projekce'), |
|
307
|
|
|
|
|
|
|
'map.projection.de' => decode_utf8('Millerova bipolární šikmá konformní kuželová projekce'), |
|
308
|
|
|
|
|
|
|
'map.projection.df' => decode_utf8('Van der Grintenova projekce'), |
|
309
|
|
|
|
|
|
|
'map.projection.dg' => decode_utf8('Dymaxion projekce'), |
|
310
|
|
|
|
|
|
|
'map.projection.dh' => decode_utf8('kordiformní projekce (srdcovitá)'), |
|
311
|
|
|
|
|
|
|
'map.projection.dl' => decode_utf8('Lambertova konformní projekce'), |
|
312
|
|
|
|
|
|
|
'map.projection.zz' => decode_utf8('jiná projekce'), |
|
313
|
|
|
|
|
|
|
'map.projection.||' => decode_utf8('kód se neuvádí'), |
|
314
|
|
|
|
|
|
|
|
|
315
|
|
|
|
|
|
|
# map - Type of cartographic material. |
|
316
|
|
|
|
|
|
|
'map.type_of_cartographic_material.a' => decode_utf8('samostatná mapa'), |
|
317
|
|
|
|
|
|
|
'map.type_of_cartographic_material.b' => decode_utf8('mapová řada'), |
|
318
|
|
|
|
|
|
|
'map.type_of_cartographic_material.c' => decode_utf8('mapový seriál'), |
|
319
|
|
|
|
|
|
|
'map.type_of_cartographic_material.d' => decode_utf8('glóbus'), |
|
320
|
|
|
|
|
|
|
'map.type_of_cartographic_material.e' => decode_utf8('atlas'), |
|
321
|
|
|
|
|
|
|
'map.type_of_cartographic_material.f' => decode_utf8('samostatná příloha k jinému dílu'), |
|
322
|
|
|
|
|
|
|
'map.type_of_cartographic_material.g' => decode_utf8('součást jiného díla'), |
|
323
|
|
|
|
|
|
|
'map.type_of_cartographic_material.r' => decode_utf8('snímek dálkového průzkumu Země'), |
|
324
|
|
|
|
|
|
|
'map.type_of_cartographic_material.u' => decode_utf8('neznámý'), |
|
325
|
|
|
|
|
|
|
'map.type_of_cartographic_material.z' => decode_utf8('jiný'), |
|
326
|
|
|
|
|
|
|
'map.type_of_cartographic_material.|' => decode_utf8('kód se neuvádí'), |
|
327
|
|
|
|
|
|
|
|
|
328
|
|
|
|
|
|
|
# map - Special format characteristics. |
|
329
|
|
|
|
|
|
|
'map.special_format_characteristics._' => decode_utf8('žádné zvláštní formální charakteristiky'), |
|
330
|
|
|
|
|
|
|
'map.special_format_characteristics.e' => decode_utf8('rukopis'), |
|
331
|
|
|
|
|
|
|
'map.special_format_characteristics.j' => decode_utf8('obrázková karta, pohlednice'), |
|
332
|
|
|
|
|
|
|
'map.special_format_characteristics.k' => decode_utf8('kalendář'), |
|
333
|
|
|
|
|
|
|
'map.special_format_characteristics.l' => decode_utf8('skládačka (puzzle)'), |
|
334
|
|
|
|
|
|
|
'map.special_format_characteristics.n' => decode_utf8('hra'), |
|
335
|
|
|
|
|
|
|
'map.special_format_characteristics.o' => decode_utf8('nástěnná mapa'), |
|
336
|
|
|
|
|
|
|
'map.special_format_characteristics.p' => decode_utf8('hrací karty'), |
|
337
|
|
|
|
|
|
|
'map.special_format_characteristics.r' => decode_utf8('volné listy'), |
|
338
|
|
|
|
|
|
|
'map.special_format_characteristics.z' => decode_utf8('jiné'), |
|
339
|
|
|
|
|
|
|
'map.special_format_characteristics.|' => decode_utf8('kód se neuvádí'), |
|
340
|
|
|
|
|
|
|
|
|
341
|
|
|
|
|
|
|
# music |
|
342
|
|
|
|
|
|
|
'Form of composition' => decode_utf8('Forma hudebního díla'), |
|
343
|
|
|
|
|
|
|
'Format of music' => decode_utf8('Hudební zápis'), |
|
344
|
|
|
|
|
|
|
'Music parts' => decode_utf8('Hlasy'), |
|
345
|
|
|
|
|
|
|
# Target audience |
|
346
|
|
|
|
|
|
|
# Form of item |
|
347
|
|
|
|
|
|
|
'Accompanying matter' => decode_utf8('Doprovodný materiál'), |
|
348
|
|
|
|
|
|
|
'Literary text for sound recordings' => decode_utf8('Textová složka zvukového záznamu'), |
|
349
|
|
|
|
|
|
|
# Undefined |
|
350
|
|
|
|
|
|
|
'Transposition and arrangement' => decode_utf8('Transpozice a aranžmá'), |
|
351
|
|
|
|
|
|
|
# Undefined |
|
352
|
|
|
|
|
|
|
|
|
353
|
|
|
|
|
|
|
# music - Form of composition. |
|
354
|
|
|
|
|
|
|
'music.form_of_composition.an' => decode_utf8('anthemy'), |
|
355
|
|
|
|
|
|
|
'music.form_of_composition.bd' => decode_utf8('balady'), |
|
356
|
|
|
|
|
|
|
'music.form_of_composition.bg' => decode_utf8('bluegrass'), |
|
357
|
|
|
|
|
|
|
'music.form_of_composition.bl' => decode_utf8('blues'), |
|
358
|
|
|
|
|
|
|
'music.form_of_composition.bt' => decode_utf8('balety'), |
|
359
|
|
|
|
|
|
|
'music.form_of_composition.ca' => decode_utf8('chaconny'), |
|
360
|
|
|
|
|
|
|
'music.form_of_composition.cb' => decode_utf8('zpěvy (jiná náboženství)'), |
|
361
|
|
|
|
|
|
|
'music.form_of_composition.cc' => decode_utf8('křesťanský chorál'), |
|
362
|
|
|
|
|
|
|
'music.form_of_composition.cg' => decode_utf8('concerto grosso'), |
|
363
|
|
|
|
|
|
|
'music.form_of_composition.ch' => decode_utf8('chorály'), |
|
364
|
|
|
|
|
|
|
'music.form_of_composition.cl' => decode_utf8('chorální předehry'), |
|
365
|
|
|
|
|
|
|
'music.form_of_composition.cn' => decode_utf8('kánony a ronda'), |
|
366
|
|
|
|
|
|
|
'music.form_of_composition.co' => decode_utf8('koncerty'), |
|
367
|
|
|
|
|
|
|
'music.form_of_composition.cp' => decode_utf8('polyfonní šansony'), |
|
368
|
|
|
|
|
|
|
'music.form_of_composition.cr' => decode_utf8('koledy'), |
|
369
|
|
|
|
|
|
|
'music.form_of_composition.cs' => decode_utf8('aleatorní skladby'), |
|
370
|
|
|
|
|
|
|
'music.form_of_composition.ct' => decode_utf8('kantáty'), |
|
371
|
|
|
|
|
|
|
'music.form_of_composition.cy' => decode_utf8('country hudba'), |
|
372
|
|
|
|
|
|
|
'music.form_of_composition.cz' => decode_utf8('canzony'), |
|
373
|
|
|
|
|
|
|
'music.form_of_composition.df' => decode_utf8('taneční formy'), |
|
374
|
|
|
|
|
|
|
'music.form_of_composition.dv' => decode_utf8('divertimenta, serenády, kasace, divertissementy, nokturna'), |
|
375
|
|
|
|
|
|
|
'music.form_of_composition.fg' => decode_utf8('fugy'), |
|
376
|
|
|
|
|
|
|
'music.form_of_composition.fl' => decode_utf8('flamenco'), |
|
377
|
|
|
|
|
|
|
'music.form_of_composition.fm' => decode_utf8('lidová hudba'), |
|
378
|
|
|
|
|
|
|
'music.form_of_composition.ft' => decode_utf8('fantazie'), |
|
379
|
|
|
|
|
|
|
'music.form_of_composition.gm' => decode_utf8('gospel'), |
|
380
|
|
|
|
|
|
|
'music.form_of_composition.hy' => decode_utf8('hymny'), |
|
381
|
|
|
|
|
|
|
'music.form_of_composition.jz' => decode_utf8('jazz'), |
|
382
|
|
|
|
|
|
|
'music.form_of_composition.mc' => decode_utf8('hudební revue a komedie'), |
|
383
|
|
|
|
|
|
|
'music.form_of_composition.md' => decode_utf8('madrigaly'), |
|
384
|
|
|
|
|
|
|
'music.form_of_composition.mi' => decode_utf8('menuety'), |
|
385
|
|
|
|
|
|
|
'music.form_of_composition.mo' => decode_utf8('moteta'), |
|
386
|
|
|
|
|
|
|
'music.form_of_composition.mp' => decode_utf8('filmová hudba'), |
|
387
|
|
|
|
|
|
|
'music.form_of_composition.mr' => decode_utf8('pochody'), |
|
388
|
|
|
|
|
|
|
'music.form_of_composition.ms' => decode_utf8('mše'), |
|
389
|
|
|
|
|
|
|
'music.form_of_composition.mu' => decode_utf8('více forem'), |
|
390
|
|
|
|
|
|
|
'music.form_of_composition.mz' => decode_utf8('mazurky'), |
|
391
|
|
|
|
|
|
|
'music.form_of_composition.nc' => decode_utf8('nokturna'), |
|
392
|
|
|
|
|
|
|
'music.form_of_composition.nn' => decode_utf8('nelze použít'), |
|
393
|
|
|
|
|
|
|
'music.form_of_composition.op' => decode_utf8('opery'), |
|
394
|
|
|
|
|
|
|
'music.form_of_composition.or' => decode_utf8('oratoria'), |
|
395
|
|
|
|
|
|
|
'music.form_of_composition.ov' => decode_utf8('předehry'), |
|
396
|
|
|
|
|
|
|
'music.form_of_composition.pg' => decode_utf8('programní hudba'), |
|
397
|
|
|
|
|
|
|
'music.form_of_composition.pm' => decode_utf8('pašije'), |
|
398
|
|
|
|
|
|
|
'music.form_of_composition.po' => decode_utf8('polonézy'), |
|
399
|
|
|
|
|
|
|
'music.form_of_composition.pp' => decode_utf8('populární hudba'), |
|
400
|
|
|
|
|
|
|
'music.form_of_composition.pr' => decode_utf8('preludia'), |
|
401
|
|
|
|
|
|
|
'music.form_of_composition.ps' => decode_utf8('passacaglie'), |
|
402
|
|
|
|
|
|
|
'music.form_of_composition.pt' => decode_utf8('vícehlasé písně'), |
|
403
|
|
|
|
|
|
|
'music.form_of_composition.pv' => decode_utf8('pavany'), |
|
404
|
|
|
|
|
|
|
'music.form_of_composition.rc' => decode_utf8('rocková hudba'), |
|
405
|
|
|
|
|
|
|
'music.form_of_composition.rd' => decode_utf8('ronda'), |
|
406
|
|
|
|
|
|
|
'music.form_of_composition.rg' => decode_utf8('ragtime'), |
|
407
|
|
|
|
|
|
|
'music.form_of_composition.ri' => decode_utf8('ricercary'), |
|
408
|
|
|
|
|
|
|
'music.form_of_composition.rp' => decode_utf8('rapsodie'), |
|
409
|
|
|
|
|
|
|
'music.form_of_composition.rq' => decode_utf8('rekviem'), |
|
410
|
|
|
|
|
|
|
'music.form_of_composition.sd' => decode_utf8('square dance'), |
|
411
|
|
|
|
|
|
|
'music.form_of_composition.sg' => decode_utf8('písně'), |
|
412
|
|
|
|
|
|
|
'music.form_of_composition.sn' => decode_utf8('sonáty'), |
|
413
|
|
|
|
|
|
|
'music.form_of_composition.sp' => decode_utf8('symfonické básně'), |
|
414
|
|
|
|
|
|
|
'music.form_of_composition.st' => decode_utf8('studie a cvičení'), |
|
415
|
|
|
|
|
|
|
'music.form_of_composition.su' => decode_utf8('suité'), |
|
416
|
|
|
|
|
|
|
'music.form_of_composition.sy' => decode_utf8('symfonie'), |
|
417
|
|
|
|
|
|
|
'music.form_of_composition.tc' => decode_utf8('toccaty'), |
|
418
|
|
|
|
|
|
|
'music.form_of_composition.tl' => decode_utf8('teatro lirico'), |
|
419
|
|
|
|
|
|
|
'music.form_of_composition.ts' => decode_utf8('triové sonáty'), |
|
420
|
|
|
|
|
|
|
'music.form_of_composition.uu' => decode_utf8('neznámé'), |
|
421
|
|
|
|
|
|
|
'music.form_of_composition.vi' => decode_utf8('villancicos'), |
|
422
|
|
|
|
|
|
|
'music.form_of_composition.vr' => decode_utf8('variace'), |
|
423
|
|
|
|
|
|
|
'music.form_of_composition.wz' => decode_utf8('valčíky'), |
|
424
|
|
|
|
|
|
|
'music.form_of_composition.za' => decode_utf8('zarzuely'), |
|
425
|
|
|
|
|
|
|
'music.form_of_composition.za' => decode_utf8('jiné'), |
|
426
|
|
|
|
|
|
|
'music.form_of_composition.||' => decode_utf8('kód se neuvádí'), |
|
427
|
|
|
|
|
|
|
|
|
428
|
|
|
|
|
|
|
# music - Format of music. |
|
429
|
|
|
|
|
|
|
'music.format_of_music.a' => decode_utf8('úplná partitura'), |
|
430
|
|
|
|
|
|
|
'music.format_of_music.b' => decode_utf8('zmenšená (studijní) partitura'), |
|
431
|
|
|
|
|
|
|
'music.format_of_music.c' => decode_utf8('doprovod redukovaný pro klávesový nástroj'), |
|
432
|
|
|
|
|
|
|
'music.format_of_music.d' => decode_utf8('vokální partitura bez doprovodu'), |
|
433
|
|
|
|
|
|
|
'music.format_of_music.e' => decode_utf8('zhuštěná partitura / klavírní dirigentská partitura'), |
|
434
|
|
|
|
|
|
|
'music.format_of_music.g' => decode_utf8('uzavřená partitura'), |
|
435
|
|
|
|
|
|
|
'music.format_of_music.h' => decode_utf8('sborová partitura'), |
|
436
|
|
|
|
|
|
|
'music.format_of_music.i' => decode_utf8('zhuštěná partitura'), |
|
437
|
|
|
|
|
|
|
'music.format_of_music.j' => decode_utf8('part pro interpreta-dirigenta'), |
|
438
|
|
|
|
|
|
|
'music.format_of_music.k' => decode_utf8('vokální partitura'), |
|
439
|
|
|
|
|
|
|
'music.format_of_music.l' => decode_utf8('partitura'), |
|
440
|
|
|
|
|
|
|
'music.format_of_music.m' => decode_utf8('více forem zápisu'), |
|
441
|
|
|
|
|
|
|
'music.format_of_music.n' => decode_utf8('nelze použít'), |
|
442
|
|
|
|
|
|
|
'music.format_of_music.p' => decode_utf8('klavírní partitura'), |
|
443
|
|
|
|
|
|
|
'music.format_of_music.u' => decode_utf8('neznámý'), |
|
444
|
|
|
|
|
|
|
'music.format_of_music.z' => decode_utf8('jiný'), |
|
445
|
|
|
|
|
|
|
'music.format_of_music.|' => decode_utf8('kód se neuvádí'), |
|
446
|
|
|
|
|
|
|
|
|
447
|
|
|
|
|
|
|
# music - Music parts. |
|
448
|
|
|
|
|
|
|
'music.music_parts._' => decode_utf8('hlasy nejsou k dispozici nebo nejsou specifikovány'), |
|
449
|
|
|
|
|
|
|
'music.music_parts.d' => decode_utf8('instrumentální a vokální hlasy'), |
|
450
|
|
|
|
|
|
|
'music.music_parts.e' => decode_utf8('instrumentální hlasy'), |
|
451
|
|
|
|
|
|
|
'music.music_parts.f' => decode_utf8('vokální hlasy'), |
|
452
|
|
|
|
|
|
|
'music.music_parts.n' => decode_utf8('nelze použít'), |
|
453
|
|
|
|
|
|
|
'music.music_parts.u' => decode_utf8('neznámé'), |
|
454
|
|
|
|
|
|
|
'music.music_parts.|' => decode_utf8('kód se neuvádí'), |
|
455
|
|
|
|
|
|
|
|
|
456
|
|
|
|
|
|
|
# music - Accompanying matter. |
|
457
|
|
|
|
|
|
|
'music.accompanying_matter._' => decode_utf8('bez doprovodného materiálu'), |
|
458
|
|
|
|
|
|
|
'music.accompanying_matter.a' => decode_utf8('diskografie'), |
|
459
|
|
|
|
|
|
|
'music.accompanying_matter.b' => decode_utf8('bibliografie'), |
|
460
|
|
|
|
|
|
|
'music.accompanying_matter.c' => decode_utf8('tematický katalog'), |
|
461
|
|
|
|
|
|
|
'music.accompanying_matter.d' => decode_utf8('libreto nebo text'), |
|
462
|
|
|
|
|
|
|
'music.accompanying_matter.e' => decode_utf8('životopis skladatele nebo autora'), |
|
463
|
|
|
|
|
|
|
'music.accompanying_matter.f' => decode_utf8('životopis interpreta nebo historie souboru'), |
|
464
|
|
|
|
|
|
|
'music.accompanying_matter.g' => decode_utf8('technické a/nebo historické informace o nástrojích'), |
|
465
|
|
|
|
|
|
|
'music.accompanying_matter.h' => decode_utf8('technické informace o hudbě'), |
|
466
|
|
|
|
|
|
|
'music.accompanying_matter.i' => decode_utf8('historické informace'), |
|
467
|
|
|
|
|
|
|
'music.accompanying_matter.k' => decode_utf8('etnologické informace'), |
|
468
|
|
|
|
|
|
|
'music.accompanying_matter.r' => decode_utf8('instruktážní materiály'), |
|
469
|
|
|
|
|
|
|
'music.accompanying_matter.s' => decode_utf8('hudba (notový materiál jako doplněk)'), |
|
470
|
|
|
|
|
|
|
'music.accompanying_matter.z' => decode_utf8('jiné'), |
|
471
|
|
|
|
|
|
|
'music.accompanying_matter.|' => decode_utf8('kód se neuvádí'), |
|
472
|
|
|
|
|
|
|
|
|
473
|
|
|
|
|
|
|
# music - Literary text for sound recordings. |
|
474
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings._' => decode_utf8('hudební zvukový záznam'), |
|
475
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.a' => decode_utf8('autobiografie'), |
|
476
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.b' => decode_utf8('biografie'), |
|
477
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.c' => decode_utf8('sborník z konference'), |
|
478
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.d' => decode_utf8('drama'), |
|
479
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.e' => decode_utf8('eseje'), |
|
480
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.f' => decode_utf8('beletrie'), |
|
481
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.g' => decode_utf8('zpravodajství / reportáže'), |
|
482
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.h' => decode_utf8('historie'), |
|
483
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.i' => decode_utf8('instruktáž / výuka'), |
|
484
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.j' => decode_utf8('jazyková výuka'), |
|
485
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.k' => decode_utf8('komedie'), |
|
486
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.l' => decode_utf8('přednášky, projevy'), |
|
487
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.m' => decode_utf8('paměti'), |
|
488
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.n' => decode_utf8('nelze použít'), |
|
489
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.o' => decode_utf8('lidové pohádky'), |
|
490
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.p' => decode_utf8('poezie'), |
|
491
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.r' => decode_utf8('zkoušky'), |
|
492
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.s' => decode_utf8('zvuky'), |
|
493
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.t' => decode_utf8('rozhovory'), |
|
494
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.z' => decode_utf8('jiné'), |
|
495
|
|
|
|
|
|
|
'music.literary_text_for_sound_recordings.|' => decode_utf8('kód se neuvádí'), |
|
496
|
|
|
|
|
|
|
|
|
497
|
|
|
|
|
|
|
# music - Transposition and arrangement. |
|
498
|
|
|
|
|
|
|
'music.transposition_and_arrangement._' => decode_utf8('nejde o transpozici ani aranžmá'), |
|
499
|
|
|
|
|
|
|
'music.transposition_and_arrangement.a' => decode_utf8('transpozice'), |
|
500
|
|
|
|
|
|
|
'music.transposition_and_arrangement.b' => decode_utf8('aranžmá'), |
|
501
|
|
|
|
|
|
|
'music.transposition_and_arrangement.c' => decode_utf8('transpozice i aranžmá'), |
|
502
|
|
|
|
|
|
|
'music.transposition_and_arrangement.n' => decode_utf8('nelze použít'), |
|
503
|
|
|
|
|
|
|
'music.transposition_and_arrangement.u' => decode_utf8('neznámé'), |
|
504
|
|
|
|
|
|
|
'music.transposition_and_arrangement.|' => decode_utf8('kód se neuvádí'), |
|
505
|
|
|
|
|
|
|
|
|
506
|
|
|
|
|
|
|
# continuing resources |
|
507
|
|
|
|
|
|
|
'Frequency' => decode_utf8('Periodicita'), |
|
508
|
|
|
|
|
|
|
'Regularity' => decode_utf8('Pravidelnost'), |
|
509
|
|
|
|
|
|
|
# Undefined |
|
510
|
|
|
|
|
|
|
'Type of continuing resource' => decode_utf8('Typ pokračujícího zdroje'), |
|
511
|
|
|
|
|
|
|
'Form of original item' => decode_utf8('Forma původního dokumentu'), |
|
512
|
|
|
|
|
|
|
# Form of item |
|
513
|
|
|
|
|
|
|
'Nature of entire work' => decode_utf8('Charakter celého díla'), |
|
514
|
|
|
|
|
|
|
# Nature of contents |
|
515
|
|
|
|
|
|
|
# Government publication |
|
516
|
|
|
|
|
|
|
# Conference publication |
|
517
|
|
|
|
|
|
|
# Undefined |
|
518
|
|
|
|
|
|
|
'Original alphabet or script of title' => decode_utf8('Původní abeceda nebo písmo názvu'), |
|
519
|
|
|
|
|
|
|
'Entry convention' => decode_utf8('Konvence záhlaví'), |
|
520
|
|
|
|
|
|
|
|
|
521
|
|
|
|
|
|
|
# continuing_resources - Frequency. |
|
522
|
|
|
|
|
|
|
'continuing_resource.frequency._' => decode_utf8('nelze určit periodicitu'), |
|
523
|
|
|
|
|
|
|
'continuing_resource.frequency.a' => decode_utf8('ročně'), |
|
524
|
|
|
|
|
|
|
'continuing_resource.frequency.b' => decode_utf8('dvouměsíčně'), |
|
525
|
|
|
|
|
|
|
'continuing_resource.frequency.c' => decode_utf8('dvakrát týdně'), |
|
526
|
|
|
|
|
|
|
'continuing_resource.frequency.d' => decode_utf8('denně'), |
|
527
|
|
|
|
|
|
|
'continuing_resource.frequency.e' => decode_utf8('jednou za dva týdny'), |
|
528
|
|
|
|
|
|
|
'continuing_resource.frequency.f' => decode_utf8('pololetně'), |
|
529
|
|
|
|
|
|
|
'continuing_resource.frequency.g' => decode_utf8('jednou za dva roky'), |
|
530
|
|
|
|
|
|
|
'continuing_resource.frequency.h' => decode_utf8('jednou za tři roky'), |
|
531
|
|
|
|
|
|
|
'continuing_resource.frequency.i' => decode_utf8('třikrát týdně'), |
|
532
|
|
|
|
|
|
|
'continuing_resource.frequency.j' => decode_utf8('třikrát měsíčně'), |
|
533
|
|
|
|
|
|
|
'continuing_resource.frequency.k' => decode_utf8('průběžně aktualizováno'), |
|
534
|
|
|
|
|
|
|
'continuing_resource.frequency.m' => decode_utf8('měsíčně'), |
|
535
|
|
|
|
|
|
|
'continuing_resource.frequency.q' => decode_utf8('čtvrtletně'), |
|
536
|
|
|
|
|
|
|
'continuing_resource.frequency.s' => decode_utf8('dvakrát měsíčně'), |
|
537
|
|
|
|
|
|
|
'continuing_resource.frequency.t' => decode_utf8('třikrát ročně'), |
|
538
|
|
|
|
|
|
|
'continuing_resource.frequency.u' => decode_utf8('neznámá periodicita'), |
|
539
|
|
|
|
|
|
|
'continuing_resource.frequency.w' => decode_utf8('týdně'), |
|
540
|
|
|
|
|
|
|
'continuing_resource.frequency.z' => decode_utf8('jiná periodicita'), |
|
541
|
|
|
|
|
|
|
'continuing_resource.frequency.|' => decode_utf8('kód se neuvádí'), |
|
542
|
|
|
|
|
|
|
|
|
543
|
|
|
|
|
|
|
# continuing_resources - Regularity. |
|
544
|
|
|
|
|
|
|
'continuing_resource.regularity.n' => decode_utf8('normalizovaně nepravidelná'), |
|
545
|
|
|
|
|
|
|
'continuing_resource.regularity.r' => decode_utf8('pravidelná'), |
|
546
|
|
|
|
|
|
|
'continuing_resource.regularity.u' => decode_utf8('neznámá'), |
|
547
|
|
|
|
|
|
|
'continuing_resource.regularity.x' => decode_utf8('zcela nepravidelná'), |
|
548
|
|
|
|
|
|
|
'continuing_resource.regularity.|' => decode_utf8('kód se neuvádí'), |
|
549
|
|
|
|
|
|
|
|
|
550
|
|
|
|
|
|
|
# continuing_resources - Type of continuing resource. |
|
551
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource._' => decode_utf8('žádný z uvedených typů'), |
|
552
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.d' => decode_utf8('aktualizovaná databáze'), |
|
553
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.g' => decode_utf8('časopis'), |
|
554
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.h' => decode_utf8('blog'), |
|
555
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.j' => decode_utf8('odborný časopis'), |
|
556
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.l' => decode_utf8('aktualizované volné listy'), |
|
557
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.m' => decode_utf8('monografická řada'), |
|
558
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.n' => decode_utf8('noviny'), |
|
559
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.p' => decode_utf8('periodikum'), |
|
560
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.r' => decode_utf8('repozitář'), |
|
561
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.s' => decode_utf8('zpravodaj'), |
|
562
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.t' => decode_utf8('adresář'), |
|
563
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.w' => decode_utf8('aktualizovaná webová stránka'), |
|
564
|
|
|
|
|
|
|
'continuing_resources.type_of_continuing_resource.|' => decode_utf8('kód se neuvádí'), |
|
565
|
|
|
|
|
|
|
|
|
566
|
|
|
|
|
|
|
# continuing_resources - Form of original item. |
|
567
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item._' => decode_utf8('žádná z uvedených forem'), |
|
568
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.a' => decode_utf8('mikrofilm'), |
|
569
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.b' => decode_utf8('mikrofiš'), |
|
570
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.c' => decode_utf8('mikrotisk'), |
|
571
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.d' => decode_utf8('velké písmo'), |
|
572
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.e' => decode_utf8('novinový formát'), |
|
573
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.f' => decode_utf8('Braillovo písmo'), |
|
574
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.o' => decode_utf8('online'), |
|
575
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.q' => decode_utf8('přímo elektronický'), |
|
576
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.s' => decode_utf8('elektronický'), |
|
577
|
|
|
|
|
|
|
'continuing_resource.form_of_original_item.|' => decode_utf8('kód se neuvádí'), |
|
578
|
|
|
|
|
|
|
|
|
579
|
|
|
|
|
|
|
# continuing_resources - Nature of entire work. |
|
580
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work._' => decode_utf8('není specifikováno'), |
|
581
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.a' => decode_utf8('abstrakty / souhrny'), |
|
582
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.b' => decode_utf8('bibliografie'), |
|
583
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.c' => decode_utf8('katalogy'), |
|
584
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.d' => decode_utf8('slovníky'), |
|
585
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.e' => decode_utf8('encyklopedie'), |
|
586
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.f' => decode_utf8('příručky'), |
|
587
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.g' => decode_utf8('právní články'), |
|
588
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.h' => decode_utf8('biografie'), |
|
589
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.i' => decode_utf8('rejstříky'), |
|
590
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.k' => decode_utf8('diskografie'), |
|
591
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.l' => decode_utf8('legislativa'), |
|
592
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.m' => decode_utf8('disertace'), |
|
593
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.n' => decode_utf8('přehledy literatury v oboru'), |
|
594
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.o' => decode_utf8('recenze'), |
|
595
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.p' => decode_utf8('programované texty'), |
|
596
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.q' => decode_utf8('filmografie'), |
|
597
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.r' => decode_utf8('adresáře'), |
|
598
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.s' => decode_utf8('statistiky'), |
|
599
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.t' => decode_utf8('technické zprávy'), |
|
600
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.u' => decode_utf8('normy / specifikace'), |
|
601
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.v' => decode_utf8('soudní případy a komentáře k nim'), |
|
602
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.w' => decode_utf8('sbírky rozhodnutí a právní přehledy'), |
|
603
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.y' => decode_utf8('ročenky'), |
|
604
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.z' => decode_utf8('smlouvy'), |
|
605
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.5' => decode_utf8('kalendáře'), |
|
606
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.6' => decode_utf8('komiksy / grafické romány'), |
|
607
|
|
|
|
|
|
|
'continuing_resource.nature_of_entire_work.|' => decode_utf8('kód se neuvádí'), |
|
608
|
|
|
|
|
|
|
|
|
609
|
|
|
|
|
|
|
# continuing_resources - Original alphabet or script of title. |
|
610
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title._' => decode_utf8('není uvedena abeceda/písmo / není klíčový název'), |
|
611
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.a' => decode_utf8('základní latinka'), |
|
612
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.b' => decode_utf8('rozšířená latinka'), |
|
613
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.c' => decode_utf8('cyrilice'), |
|
614
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.d' => decode_utf8('japonské písmo'), |
|
615
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.e' => decode_utf8('čínské písmo'), |
|
616
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.f' => decode_utf8('arabské písmo'), |
|
617
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.g' => decode_utf8('řecké písmo'), |
|
618
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.h' => decode_utf8('hebrejské písmo'), |
|
619
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.i' => decode_utf8('thajské písmo'), |
|
620
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.j' => decode_utf8('dévanágarí'), |
|
621
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.k' => decode_utf8('korejské písmo'), |
|
622
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.l' => decode_utf8('tamilské písmo'), |
|
623
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.u' => decode_utf8('neznámé'), |
|
624
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.z' => decode_utf8('jiné'), |
|
625
|
|
|
|
|
|
|
'continuing_resource.original_alphabet_or_script_of_title.|' => decode_utf8('kód se neuvádí'), |
|
626
|
|
|
|
|
|
|
|
|
627
|
|
|
|
|
|
|
# continuing_resources - Entry convention. |
|
628
|
|
|
|
|
|
|
'continuing_resources.entry_convention.0' => decode_utf8('postupné záhlaví'), |
|
629
|
|
|
|
|
|
|
'continuing_resources.entry_convention.1' => decode_utf8('nejnovější záhlaví'), |
|
630
|
|
|
|
|
|
|
'continuing_resources.entry_convention.2' => decode_utf8('integrované záhlaví'), |
|
631
|
|
|
|
|
|
|
'continuing_resources.entry_convention.|' => decode_utf8('kód se neuvádí'), |
|
632
|
|
|
|
|
|
|
|
|
633
|
|
|
|
|
|
|
# visual materials |
|
634
|
|
|
|
|
|
|
'Running time for motion pictures and videorecordings' => decode_utf8('Délka trvání (filmu / videonahrávky)'), |
|
635
|
|
|
|
|
|
|
# Undefined |
|
636
|
|
|
|
|
|
|
# Target audience |
|
637
|
|
|
|
|
|
|
# Undefined |
|
638
|
|
|
|
|
|
|
# Government publication |
|
639
|
|
|
|
|
|
|
# Form of item |
|
640
|
|
|
|
|
|
|
# Undefined |
|
641
|
|
|
|
|
|
|
'Type of visual material' => decode_utf8('Typ vizuálního dokumentu'), |
|
642
|
|
|
|
|
|
|
'Technique' => decode_utf8('Technika'), |
|
643
|
|
|
|
|
|
|
|
|
644
|
|
|
|
|
|
|
# visual_material - Running time for motion pictures and videorecordings. |
|
645
|
|
|
|
|
|
|
'visual_material.running_time_for_motion_pictures_and_videorecordings.000' => decode_utf8('délka trvání přesahuje tři znaky'), |
|
646
|
|
|
|
|
|
|
'visual_material.running_time_for_motion_pictures_and_videorecordings.001' => decode_utf8('délka trvání'), |
|
647
|
|
|
|
|
|
|
'visual_material.running_time_for_motion_pictures_and_videorecordings.nnn' => decode_utf8('nelze použít'), |
|
648
|
|
|
|
|
|
|
'visual_material.running_time_for_motion_pictures_and_videorecordings.---' => decode_utf8('neznámá délka trvání'), |
|
649
|
|
|
|
|
|
|
'visual_material.running_time_for_motion_pictures_and_videorecordings.|||' => decode_utf8('kód se neuvádí'), |
|
650
|
|
|
|
|
|
|
|
|
651
|
|
|
|
|
|
|
# visual_material - Type of visual material. |
|
652
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.a' => decode_utf8('originál výtvarného díla'), |
|
653
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.b' => decode_utf8('soubor'), |
|
654
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.c' => decode_utf8('reprodukce výtvarného díla'), |
|
655
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.d' => decode_utf8('dioráma'), |
|
656
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.f' => decode_utf8('filmový pás'), |
|
657
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.g' => decode_utf8('hra'), |
|
658
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.i' => decode_utf8('obraz'), |
|
659
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.k' => decode_utf8('grafika'), |
|
660
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.l' => decode_utf8('technický výkres'), |
|
661
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.m' => decode_utf8('film'), |
|
662
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.n' => decode_utf8('diagram / schéma'), |
|
663
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.o' => decode_utf8('výukové kartičky'), |
|
664
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.p' => decode_utf8('mikroskopický preparát'), |
|
665
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.q' => decode_utf8('model'), |
|
666
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.r' => decode_utf8('reálie'), |
|
667
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.s' => decode_utf8('diapozitiv'), |
|
668
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.t' => decode_utf8('transparent'), |
|
669
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.v' => decode_utf8('videonahrávka'), |
|
670
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.w' => decode_utf8('hračka'), |
|
671
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.z' => decode_utf8('jiné'), |
|
672
|
|
|
|
|
|
|
'visual_material.type_of_visual_material.|' => decode_utf8('kód se neuvádí'), |
|
673
|
|
|
|
|
|
|
|
|
674
|
|
|
|
|
|
|
# visual_material - Technique. |
|
675
|
|
|
|
|
|
|
'visual_material.technique.a' => decode_utf8('animace'), |
|
676
|
|
|
|
|
|
|
'visual_material.technique.c' => decode_utf8('animace a hraný film'), |
|
677
|
|
|
|
|
|
|
'visual_material.technique.l' => decode_utf8('hraný film'), |
|
678
|
|
|
|
|
|
|
'visual_material.technique.n' => decode_utf8('nelze použít'), |
|
679
|
|
|
|
|
|
|
'visual_material.technique.u' => decode_utf8('neznámá'), |
|
680
|
|
|
|
|
|
|
'visual_material.technique.z' => decode_utf8('jiná'), |
|
681
|
|
|
|
|
|
|
'visual_material.technique.|' => decode_utf8('kód se neuvádí'), |
|
682
|
|
|
|
|
|
|
|
|
683
|
|
|
|
|
|
|
# mixed materials |
|
684
|
|
|
|
|
|
|
# Undefined |
|
685
|
|
|
|
|
|
|
# Form of item |
|
686
|
|
|
|
|
|
|
# Undefined |
|
687
|
|
|
|
|
|
|
|
|
688
|
|
|
|
|
|
|
); |
|
689
|
|
|
|
|
|
|
|
|
690
|
|
|
|
|
|
|
1; |
|
691
|
|
|
|
|
|
|
|
|
692
|
|
|
|
|
|
|
__END__ |