2024-05-07 18:30:22 +02:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
$series_contributor_role = array (
|
|
|
|
'author' => 'Author',
|
|
|
|
'director' => 'Director',
|
|
|
|
'dramaturg' => 'Dramaturg',
|
|
|
|
'production_designer' => 'Production designer',
|
|
|
|
'costumer' => 'Costumer',
|
|
|
|
'musician' => 'Musician',
|
|
|
|
'choreographer' => 'Choreographer',
|
|
|
|
'make_up_artist' => 'Make-up artist',
|
|
|
|
'speech_trainer' => 'Speech trainer',
|
|
|
|
'puppet_maker' => 'Puppet maker',
|
|
|
|
'technician' => 'Technician',
|
|
|
|
'inspector' => 'Inspector',
|
|
|
|
'assistant' => 'Assistant',
|
|
|
|
'actor' => 'Actor',
|
|
|
|
'painter' => 'Painter',
|
|
|
|
'creator' => 'Creator',
|
2024-06-19 22:58:30 +02:00
|
|
|
'equipment_supplier' => 'Equipment supplier',
|
|
|
|
'contributing_institution' => 'Contributing institution',
|
|
|
|
'event_organizer' => 'Event organizer',
|
2024-05-07 18:30:22 +02:00
|
|
|
);
|