21 lines
579 B
PHP
21 lines
579 B
PHP
|
<?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',
|
||
|
);
|