File Coverage

blib/lib/MARC/Leader/L10N/en.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package MARC::Leader::L10N::en;
2              
3 3     3   334490 use base qw(MARC::Leader::L10N);
  3         4  
  3         1072  
4 3     3   15 use strict;
  3         4  
  3         60  
5 3     3   9 use warnings;
  3         3  
  3         538  
6              
7             our $VERSION = 0.05;
8              
9             our %Lexicon = (
10             '_AUTO' => 1,
11              
12             'bibliographic_level.a' => 'Monographic component part',
13             'bibliographic_level.b' => 'Serial component part',
14             'bibliographic_level.c' => 'Collection',
15             'bibliographic_level.d' => 'Subunit',
16             'bibliographic_level.i' => 'Integrating resource',
17             'bibliographic_level.m' => 'Monograph/Item',
18             'bibliographic_level.s' => 'Serial',
19              
20             'char_coding_scheme._' => 'MARC-8',
21             'char_coding_scheme.a' => 'UCS/Unicode',
22              
23             'descriptive_cataloging_form._' => 'Non-ISBD',
24             'descriptive_cataloging_form.a' => 'AACR 2',
25             'descriptive_cataloging_form.c' => 'ISBD punctuation omitted',
26             'descriptive_cataloging_form.i' => 'ISBD punctuation included',
27             'descriptive_cataloging_form.n' => 'Non-ISBD punctuation omitted',
28             'descriptive_cataloging_form.u' => 'Unknown',
29              
30             'encoding_level._' => 'Full level',
31             'encoding_level.1' => 'Full level, material not examined',
32             'encoding_level.2' => 'Less-than-full level, material not examined',
33             'encoding_level.3' => 'Abbreviated level',
34             'encoding_level.4' => 'Core level',
35             'encoding_level.5' => 'Partial (preliminary) level',
36             'encoding_level.7' => 'Minimal level',
37             'encoding_level.8' => 'Prepublication level',
38             'encoding_level.u' => 'Unknown',
39             'encoding_level.z' => 'Not applicable',
40              
41             'multipart_resource_record_level._' => 'Not specified or not applicable',
42             'multipart_resource_record_level.a' => 'Set',
43             'multipart_resource_record_level.b' => 'Part with independent title',
44             'multipart_resource_record_level.c' => 'Part with dependent title',
45              
46             'status.a' => 'Increase in encoding level',
47             'status.c' => 'Corrected or revised',
48             'status.d' => 'Deleted',
49             'status.n' => 'New',
50             'status.p' => 'Increase in encoding level from prepublication',
51              
52             'type.a' => 'Language material',
53             'type.c' => 'Notated music',
54             'type.d' => 'Manuscript notated music',
55             'type.e' => 'Cartographic material',
56             'type.f' => 'Manuscript cartographic material',
57             'type.g' => 'Projected medium',
58             'type.i' => 'Nonmusical sound recording',
59             'type.j' => 'Musical sound recording',
60             'type.k' => 'Two-dimensional nonprojectable graphic',
61             'type.m' => 'Computer file',
62             'type.o' => 'Kit',
63             'type.p' => 'Mixed materials',
64             'type.r' => 'Three-dimensional artifact or naturally occurring object',
65             'type.t' => 'Manuscript language material',
66              
67             'type_of_control._' => 'No specified type',
68             'type_of_control.a' => 'Archival',
69              
70             'undefined.0' => 'Undefined',
71             );
72              
73             1;
74              
75             __END__