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

(-)a/Koha/CodeList/Unimarc/MediumOfPerformance.pm (-2 / +22 lines)
Lines 18-24 package Koha::CodeList::Unimarc::MediumOfPerformance; Link Here
18
use Modern::Perl;
18
use Modern::Perl;
19
use utf8;
19
use utf8;
20
20
21
use Koha::I18N qw( N__ N__p );
21
use Koha::I18N;
22
23
use parent 'Exporter';
24
our @EXPORT = qw(
25
    brass
26
    choruses
27
    conductors
28
    electronic
29
    keyboard
30
    misc
31
    number_of_hands_or_keys
32
    orchestras
33
    other
34
    other_performers
35
    other2
36
    percussion
37
    strings_bowed
38
    strings_plucked
39
    tessitura
40
    voices
41
    woodwinds
42
);
22
43
23
sub voices {
44
sub voices {
24
    return {
45
    return {
25
- 

Return to bug 30941