9 lines
224 B
PHP
9 lines
224 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$eventtype_groups = array (
|
|
'production' => 'Készítés',
|
|
'post_production' => 'Készítés után',
|
|
'pre_production' => 'Készítés előtt',
|
|
'no_production' => 'Ø Készítés',
|
|
);
|