25 lines
1.3 KiB
PHP
25 lines
1.3 KiB
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$series_contributor_role = array (
|
|
'author' => 'ஆசிரியர்',
|
|
'director' => 'இயக்குனர்',
|
|
'dramaturg' => 'நாடகர்க்',
|
|
'production_designer' => 'தயாரிப்பு வடிவமைப்பாளர்',
|
|
'costumer' => 'காஸ்ட்யூமர்',
|
|
'musician' => 'இசைக்கலைஞர்',
|
|
'choreographer' => 'நடன இயக்குனர்',
|
|
'make_up_artist' => 'ஒப்பனை கலைஞர்',
|
|
'speech_trainer' => 'பேச்சு பயிற்சியாளர்',
|
|
'puppet_maker' => 'பப்பட் மார்க்கர்',
|
|
'technician' => 'தொழில்நுட்ப வல்லுநர்',
|
|
'inspector' => 'இன்ஸ்பெக்டர்',
|
|
'assistant' => 'உதவியாளர்',
|
|
'actor' => 'நடிகர்',
|
|
'painter' => 'ஓவியர்',
|
|
'creator' => 'உருவாக்கியவர்',
|
|
'equipment_supplier' => 'உபகரணங்கள் சப்ளையர்',
|
|
'contributing_institution' => 'பங்களிப்பு நிறுவனம்',
|
|
'event_organizer' => 'நிகழ்வு அமைப்பாளர்',
|
|
'movement_trainer' => 'இயக்கம் பயிற்சியாளர்',
|
|
);
|