25 lines
777 B
PHP
25 lines
777 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$series_contributor_role = array (
|
|
'author' => 'Autor',
|
|
'director' => 'Ředitel',
|
|
'dramaturg' => 'dramaturg',
|
|
'production_designer' => 'Výtvarník/výtvarnice',
|
|
'costumer' => 'Zákazník',
|
|
'musician' => 'Hudebník',
|
|
'choreographer' => 'Choreograf',
|
|
'make_up_artist' => 'Vizážista/Vizážistka',
|
|
'speech_trainer' => 'Řečník',
|
|
'puppet_maker' => 'Loutkář',
|
|
'technician' => 'Technik',
|
|
'inspector' => 'Inspektor',
|
|
'assistant' => 'Asistent',
|
|
'actor' => 'Herec',
|
|
'painter' => 'Malíř',
|
|
'creator' => 'Tvůrce',
|
|
'equipment_supplier' => 'Dodavatel vybavení',
|
|
'contributing_institution' => 'Přispívající instituce',
|
|
'event_organizer' => 'Organizátor akce',
|
|
'movement_trainer' => 'Trenér pohybu',
|
|
);
|