Approval.

This commit is contained in:
2024-05-10 14:22:03 +00:00
committed by md translation bot
parent 90e20227f7
commit eff355e85c
105 changed files with 1365 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$institution_basic_category_set = array (
'archive' => 'Archiv',
'library' => 'Bibliothek',
'memorial_site' => 'Gedenkstätte',
'private_collection' => 'Privatsammlung',
'museum' => 'Museum',
);

View File

@ -0,0 +1,30 @@
<?PHP
declare(strict_types = 1);
$institution_collection_area_set = array (
'everyday_life' => 'Alltag',
'archaeology' => 'Archäologie',
'architecture' => 'Architektur',
'history_of_mining' => 'Bergbau',
'botany' => 'Botanik',
'history_of_film' => 'Filmgeschichte',
'political_history' => 'Politische Geschichte',
'arts' => 'Kunst',
'applied_arts' => 'Kunstgewerbe',
'agriculture' => 'Landwirtschaft',
'literature' => 'Literatur',
'history_of_medicine' => 'Medizingeschichte',
'military_history' => 'Militärgeschichte',
'mineralogy' => 'Mineralogie',
'music' => 'Musik',
'numismatics' => 'Numismatik',
'paleontology' => 'Paläontologie',
'personalia' => 'Personalia',
'regional_history' => 'Regionalgeschichte',
'religion' => 'Religion',
'technology' => 'Technologie',
'ethnography' => 'Volks- und Völkerkunde',
'zoology' => 'Zoologie',
);
$institution_basic_category_set = array (
'museum' => 'Museum',
);

View File

@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$institution_musdb_use_case_set = array (
'collection_management' => 'Sammlungsmanagement',
'publication' => 'Publikation',
'collection_management_and_publication' => 'Sammlungsmanagement und Publikation',
);

View File

@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$institution_public_private_category_set = array (
'public' => 'Öffentlich',
'private' => 'Privat',
'religious' => 'Religiös',
'mixed' => 'Gemischt',
);

View File

@ -0,0 +1,11 @@
<?PHP
declare(strict_types = 1);
$object_document_type_set = array (
'undefined' => 'Undefiniert / allgemeines Dokument',
'provenance_report' => 'Provenienzbericht',
'purchase_contract' => 'Kaufvertrag',
'restoration_report' => 'Restaurierungsbericht',
'assessment' => 'Gutachten',
'correspondence' => 'Korrespondenz',
'legacy_documentation' => 'Alte Objektdokumentation',
);