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   395521 use base qw(MARC::Leader::L10N);
  3         6  
  3         915  
4 3     3   19 use strict;
  3         5  
  3         66  
5 3     3   13 use warnings;
  3         6  
  3         811  
6              
7             our $VERSION = 0.03;
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             'impl_def_portion_len.0' => 'Number of characters in the implementation-defined portion of a Directory entry',
42              
43             'indicator_count.2' => 'Number of character positions used for indicators',
44              
45             'length_of_field_portion_len.4' => 'Number of characters in the length-of-field portion of a Directory entry',
46              
47             'multipart_resource_record_level._' => 'Not specified or not applicable',
48             'multipart_resource_record_level.a' => 'Set',
49             'multipart_resource_record_level.b' => 'Part with independent title',
50             'multipart_resource_record_level.c' => 'Part with dependent title',
51              
52             'starting_char_pos_portion_len.5' => 'Number of characters in the starting-character-position portion of a Directory entry',
53              
54             'status.a' => 'Increase in encoding level',
55             'status.c' => 'Corrected or revised',
56             'status.d' => 'Deleted',
57             'status.n' => 'New',
58             'status.p' => 'Increase in encoding level from prepublication',
59              
60             'subfield_code_count.2' => 'Number of character positions used for a subfield code',
61              
62             'type.a' => 'Language material',
63             'type.c' => 'Notated music',
64             'type.d' => 'Manuscript notated music',
65             'type.e' => 'Cartographic material',
66             'type.f' => 'Manuscript cartographic material',
67             'type.g' => 'Projected medium',
68             'type.i' => 'Nonmusical sound recording',
69             'type.j' => 'Musical sound recording',
70             'type.k' => 'Two-dimensional nonprojectable graphic',
71             'type.m' => 'Computer file',
72             'type.o' => 'Kit',
73             'type.p' => 'Mixed materials',
74             'type.r' => 'Three-dimensional artifact or naturally occurring object',
75             'type.t' => 'Manuscript language material',
76              
77             'type_of_control._' => 'No specified type',
78             'type_of_control.a' => 'Archival',
79              
80             'undefined.0' => 'Undefined',
81             );
82              
83             1;
84              
85             __END__