9 lines
297 B
PHP
9 lines
297 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$eventtype_groups = array (
|
|
'production' => 'उत्पादन',
|
|
'post_production' => 'डाक उत्पादन',
|
|
'pre_production' => 'पूर्व-उत्पादन',
|
|
'no_production' => 'कोई उत्पादन नहीं',
|
|
);
|