Approval.
This commit is contained in:
parent
17d7c33a10
commit
33854d23a7
|
@ -1,9 +1,9 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$institution_basic_category_set = array (
|
$institution_basic_category_set = array (
|
||||||
'archive' => 'Archive',
|
'archive' => 'Archívum',
|
||||||
'library' => 'Library',
|
'library' => 'Könyvtár',
|
||||||
'memorial_site' => 'Memorial site',
|
'memorial_site' => 'Emlékhely',
|
||||||
'private_collection' => 'Private collection',
|
'private_collection' => 'Magánygyűjtemény',
|
||||||
'museum' => 'Museum',
|
'museum' => 'Múzeum',
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,30 +1,30 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$institution_collection_area_set = array (
|
$institution_collection_area_set = array (
|
||||||
'everyday_life' => 'Everyday life',
|
'everyday_life' => 'Mindennapok',
|
||||||
'archaeology' => 'Archaeology',
|
'archaeology' => 'Régészet',
|
||||||
'architecture' => 'Architecture',
|
'architecture' => 'Építészet',
|
||||||
'history_of_mining' => 'History of mining',
|
'history_of_mining' => 'Bányászattörténet',
|
||||||
'botany' => 'Botany',
|
'botany' => 'Botanika',
|
||||||
'history_of_film' => 'History of film',
|
'history_of_film' => 'Filmtörténet',
|
||||||
'political_history' => 'Political history',
|
'political_history' => 'Politikatörténet',
|
||||||
'arts' => 'Arts',
|
'arts' => 'Képzőművészet',
|
||||||
'applied_arts' => 'Applied arts',
|
'applied_arts' => 'Alkalmazott művészet',
|
||||||
'agriculture' => 'Agriculture',
|
'agriculture' => 'Mezőgazdaság',
|
||||||
'literature' => 'Literature',
|
'literature' => 'Irodalom',
|
||||||
'history_of_medicine' => 'History of medicine',
|
'history_of_medicine' => 'Gyógyszertörténet',
|
||||||
'military_history' => 'Military history',
|
'military_history' => 'Hadtörténet',
|
||||||
'mineralogy' => 'Mineralogy',
|
'mineralogy' => 'Ásványtan',
|
||||||
'music' => 'Music',
|
'music' => 'Zene',
|
||||||
'numismatics' => 'Numismatics',
|
'numismatics' => 'Numizmatika',
|
||||||
'paleontology' => 'Paleontology',
|
'paleontology' => 'Paleontológia',
|
||||||
'personalia' => 'Personalia',
|
'personalia' => 'Personalia',
|
||||||
'regional_history' => 'Regional history',
|
'regional_history' => 'Helytörténet',
|
||||||
'religion' => 'Religion',
|
'religion' => 'Vallás',
|
||||||
'technology' => 'Technology',
|
'technology' => 'Technológia',
|
||||||
'ethnography' => 'Ethnography',
|
'ethnography' => 'Néprajz',
|
||||||
'zoology' => 'Zoology',
|
'zoology' => 'Zoológia',
|
||||||
);
|
);
|
||||||
$institution_basic_category_set = array (
|
$institution_basic_category_set = array (
|
||||||
'museum' => 'Museum',
|
'museum' => 'Múzeum',
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$institution_musdb_use_case_set = array (
|
$institution_musdb_use_case_set = array (
|
||||||
'collection_management' => 'Collection management',
|
'collection_management' => 'Gyűjteménykezelés',
|
||||||
'publication' => 'Publication',
|
'publication' => 'Publikáicó',
|
||||||
'collection_management_and_publication' => 'Collection management and publication',
|
'collection_management_and_publication' => 'Gyűjteménykezelés és publikáció',
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$institution_public_private_category_set = array (
|
$institution_public_private_category_set = array (
|
||||||
'public' => 'Public',
|
'public' => 'Közintézmény',
|
||||||
'private' => 'Private',
|
'private' => 'Magánintézmény',
|
||||||
'religious' => 'Religious',
|
'religious' => 'Egyházi',
|
||||||
'mixed' => 'Mixed',
|
'mixed' => 'Vegyes',
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$object_document_type_set = array (
|
$object_document_type_set = array (
|
||||||
'undefined' => 'Undefined',
|
'undefined' => 'Meghatározatlan',
|
||||||
'provenance_report' => 'Provenance report',
|
'provenance_report' => 'Proveniencia beszámoló',
|
||||||
'purchase_contract' => 'Purchase contract',
|
'purchase_contract' => 'Adásvételi szerződés',
|
||||||
'restoration_report' => 'Restoration report',
|
'restoration_report' => 'Restaurálási dokumentáció',
|
||||||
'assessment' => 'Assessment',
|
'assessment' => 'Értékelés',
|
||||||
'correspondence' => 'Correspondence',
|
'correspondence' => 'Levelezés',
|
||||||
'legacy_documentation' => 'Legacy documentation',
|
'legacy_documentation' => 'Hagyatéki dokumentáció',
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user