21 lines
565 B
PHP
21 lines
565 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$series_contributor_role = array (
|
|
'author' => 'Text',
|
|
'director' => 'Regie',
|
|
'dramaturg' => 'Dramaturgie',
|
|
'production_designer' => 'Bühnenbild',
|
|
'costumer' => 'Kostüm',
|
|
'musician' => 'Musik',
|
|
'choreographer' => 'Choreographie',
|
|
'make_up_artist' => 'Maske',
|
|
'speech_trainer' => 'Sprecherziehung',
|
|
'puppet_maker' => 'Puppenerstellung',
|
|
'technician' => 'Technik',
|
|
'inspector' => 'Inspizienz',
|
|
'assistant' => 'Assistenz',
|
|
'actor' => 'Schauspiel',
|
|
'painter' => 'Malen',
|
|
'creator' => 'Herstellung',
|
|
);
|