11 lines
293 B
PHP
11 lines
293 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',
|
|
'university_collection' => 'Universitäre Sammlung',
|
|
);
|