9 lines
262 B
PHP
9 lines
262 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$podcast_contributor_roles = array (
|
|
'onair' => 'ऑन एयर',
|
|
'recording' => 'रिकॉर्डिंग',
|
|
'technical_support' => 'तकनीकी समर्थन',
|
|
'organization' => 'संगठन',
|
|
);
|