25 lines
		
	
	
		
			756 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			756 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' => 'Puppenbau',
 | |
|   'technician' => 'Technik',
 | |
|   'inspector' => 'Inspizienz',
 | |
|   'assistant' => 'Assistenz',
 | |
|   'actor' => 'Schauspiel',
 | |
|   'painter' => 'Malen',
 | |
|   'creator' => 'Herstellung',
 | |
|   'equipment_supplier' => 'Ausstattung',
 | |
|   'contributing_institution' => 'Mitwirkende Institution',
 | |
|   'event_organizer' => 'Veranstaltungsorganisation',
 | |
|   'movement_trainer' => 'Bewegungstraining',
 | |
| );
 |