9 lines
196 B
PHP
9 lines
196 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
$institution_public_private_category_set = array (
|
||
|
'public' => 'Öffentlich',
|
||
|
'private' => 'Privat',
|
||
|
'religious' => 'Religiös',
|
||
|
'mixed' => 'Gemischt',
|
||
|
);
|