9 lines
206 B
PHP
9 lines
206 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$podcast_contributor_roles = array (
|
|
'onair' => 'Orateur',
|
|
'recording' => 'Enregistrement',
|
|
'technical_support' => 'Technique',
|
|
'organization' => 'Organisation',
|
|
);
|