10 lines
238 B
PHP
10 lines
238 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
$institution_basic_category_set = array (
|
||
|
'archive' => 'Archiv',
|
||
|
'library' => 'Bibliothek',
|
||
|
'memorial_site' => 'Gedenkstätte',
|
||
|
'private_collection' => 'Privatsammlung',
|
||
|
'museum' => 'Museum',
|
||
|
);
|