Approval.

This commit is contained in:
Joshua Ramon Enslin 2023-01-23 21:37:48 +00:00 committed by md translation bot
parent 08aa8753aa
commit 6922772f3e
860 changed files with 11842 additions and 6622 deletions
ar
de
dsb

@ -1,10 +1,16 @@
<?PHP
$actor_variant_types_set['birth_name'] = 'Birth name';
$actor_variant_types_set['married_name'] = 'Married name';
$actor_variant_types_set['monastic_name'] = 'Monastic name';
$actor_variant_types_set['pseudonym'] = 'Pseudonym';
$actor_variant_types_set['regnal_name'] = 'Regnal name';
$actor_variant_types_set['nickname'] = 'Nickname';
$actor_variant_types_set['artist_name'] = 'Artist name';
$actor_variant_types_set['civil_name'] = 'Civil name';
$actor_variant_types_set['generic_other_name'] = 'Alternative Name (generic)';
declare(strict_types = 1);
array (
'actor_variant_types_set' =>
array (
'birth_name' => 'Birth name',
'married_name' => 'Married name',
'monastic_name' => 'Monastic name',
'pseudonym' => 'Pseudonym',
'regnal_name' => 'Regnal name',
'nickname' => 'Nickname',
'artist_name' => 'Artist name',
'civil_name' => 'Civil name',
'generic_other_name' => 'Alternative Name (generic)',
),
)

@ -1,4 +1,10 @@
<?PHP
$appointment_attendance_modes['offline'] = 'Offline';
$appointment_attendance_modes['online'] = 'Online';
$appointment_attendance_modes['mixed'] = 'Offline and online';
declare(strict_types = 1);
array (
'appointment_attendance_modes' =>
array (
'offline' => 'Offline',
'online' => 'Online',
'mixed' => 'Offline and online',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_cancellation_status_set['scheduled_done'] = 'Scheduled or done as planned';
$appointment_cancellation_status_set['cancelled'] = 'Cancelled';
declare(strict_types = 1);
array (
'appointment_cancellation_status_set' =>
array (
'scheduled_done' => 'Scheduled or done as planned',
'cancelled' => 'Cancelled',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_contributor_roles['organizer'] = 'Organizer';
$appointment_contributor_roles['presenter'] = 'Presenter';
declare(strict_types = 1);
array (
'appointment_contributor_roles' =>
array (
'organizer' => 'Organizer',
'presenter' => 'Presenter',
),
)

@ -1,5 +1,11 @@
<?PHP
$appointment_status['scheduled'] = 'Scheduled';
$appointment_status['cancelled'] = 'Cancelled';
$appointment_status['moved_online'] = 'Moved online';
$appointment_status['postponed'] = 'Postponed';
declare(strict_types = 1);
array (
'appointment_status' =>
array (
'scheduled' => 'Scheduled',
'cancelled' => 'Cancelled',
'moved_online' => 'Moved online',
'postponed' => 'Postponed',
),
)

@ -1,3 +1,9 @@
<?PHP
$attendance_status_set['offline'] = 'Offline';
$attendance_status_set['online'] = 'Online';
declare(strict_types = 1);
array (
'attendance_status_set' =>
array (
'offline' => 'Offline',
'online' => 'Online',
),
)

@ -1,5 +1,11 @@
<?PHP
$closer_location_types_set['0'] = '';
$closer_location_types_set['1'] = 'Place of recording';
$closer_location_types_set['2'] = 'Place of discovery';
$closer_location_types_set['3'] = 'Former place';
declare(strict_types = 1);
array (
'closer_location_types_set' =>
array (
0 => '',
1 => 'Place of recording',
2 => 'Place of discovery',
3 => 'Former place',
),
)

@ -1,17 +1,23 @@
<?PHP
$colors_set['black'] = 'Black';
$colors_set['green'] = 'Green';
$colors_set['silver'] = 'Silver';
$colors_set['lime'] = 'Lime';
$colors_set['gray'] = 'Gray';
$colors_set['olive'] = 'Olive';
$colors_set['white'] = 'White';
$colors_set['yellow'] = 'Yellow';
$colors_set['maroon'] = 'Maroon';
$colors_set['navy'] = 'Navy';
$colors_set['red'] = 'Red';
$colors_set['blue'] = 'Blue';
$colors_set['purple'] = 'Purple';
$colors_set['teal'] = 'Teal';
$colors_set['fuchsia'] = 'Fuchsia';
$colors_set['aqua'] = 'Aqua';
declare(strict_types = 1);
array (
'colors_set' =>
array (
'black' => 'Black',
'green' => 'Green',
'silver' => 'Silver',
'lime' => 'Lime',
'gray' => 'Gray',
'olive' => 'Olive',
'white' => 'White',
'yellow' => 'Yellow',
'maroon' => 'Maroon',
'navy' => 'Navy',
'red' => 'Red',
'blue' => 'Blue',
'purple' => 'Purple',
'teal' => 'Teal',
'fuchsia' => 'Fuchsia',
'aqua' => 'Aqua',
),
)

@ -1,7 +1,13 @@
<?PHP
$conservation_report_type_set['damage'] = 'Damage';
$conservation_report_type_set['conservation'] = 'Conservation';
$conservation_report_type_set['condition'] = 'Condition';
$conservation_report_type_set['restoration'] = 'Restoration';
$conservation_report_type_set['other_report'] = 'Other report';
$conservation_report_type_set['other'] = 'Other report';
declare(strict_types = 1);
array (
'conservation_report_type_set' =>
array (
'damage' => 'Damage',
'conservation' => 'Conservation',
'condition' => 'Condition',
'restoration' => 'Restoration',
'other_report' => 'Other report',
'other' => 'Other report',
),
)

@ -1,21 +1,30 @@
<?PHP
$currencies_set['eu-EUR'] = 'Euro';
$currencies_set['de-DM'] = 'Deutsche Mark';
$currencies_set['de-RM'] = 'Reichsmark (Germany)';
$currencies_set['es-Real'] = 'Spanish Real';
$currencies_set['hu-Ft'] = 'Forint';
$currencies_set['hu-Lari'] = 'Lari';
$currencies_set['hu-Pengő'] = 'Pengő';
$currencies_set['id-IDR'] = 'Indonesian Rupiah';
$currencies_set['pl-Złoty'] = 'Złoty';
$currencies_set['us-USD'] = 'US Dollar';
$currencies_set['ddr-Mark'] = 'Mark (GDR)';
$currencies_set['ddr-MDN'] = 'MDN (GDR)';
$currencies_set['hu-Korona'] = 'Austro-Hungarian krone';
$currencies_set['fr-FF'] = 'French Franc';
$currencies_set['uk-GBP'] = 'Pound Sterling';
$currencies_set['by-BYN'] = 'Belarusian ruble';
$currencies_set['ru-RUB'] = 'Russian ruble';
$currencies_set['su-SUR'] = 'Soviet ruble';
$currencies_set['ua-UAH'] = 'Ukrainian hryvnia';
$license_full_names['CC BY-NC-ND'] = 'Attribution - Non Commercial - No Derivates';
declare(strict_types = 1);
array (
'currencies_set' =>
array (
'eu-EUR' => 'Euro',
'de-DM' => 'Deutsche Mark',
'de-RM' => 'Reichsmark (Germany)',
'es-Real' => 'Spanish Real',
'hu-Ft' => 'Forint',
'hu-Lari' => 'Lari',
'hu-Pengő' => 'Pengő',
'id-IDR' => 'Indonesian Rupiah',
'pl-Złoty' => 'Złoty',
'us-USD' => 'US Dollar',
'ddr-Mark' => 'Mark (GDR)',
'ddr-MDN' => 'MDN (GDR)',
'hu-Korona' => 'Austro-Hungarian krone',
'fr-FF' => 'French Franc',
'uk-GBP' => 'Pound Sterling',
'by-BYN' => 'Belarusian ruble',
'ru-RUB' => 'Russian ruble',
'su-SUR' => 'Soviet ruble',
'ua-UAH' => 'Ukrainian hryvnia',
),
'license_full_names' =>
array (
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
),
)

@ -1,5 +1,11 @@
<?PHP
$custom_report_targets_set['object_single'] = 'Single object';
$custom_report_targets_set['object_list'] = 'Multiple objects';
$custom_report_targets_set['loan'] = 'Loan';
$custom_report_targets_set['exhibition'] = 'Exhibition';
declare(strict_types = 1);
array (
'custom_report_targets_set' =>
array (
'object_single' => 'Single object',
'object_list' => 'Multiple objects',
'loan' => 'Loan',
'exhibition' => 'Exhibition',
),
)

@ -1,4 +1,10 @@
<?PHP
$disposal_method_set['sold'] = 'Sold';
$disposal_method_set['destroyed'] = 'Destroyed';
$disposal_method_set['garbage'] = 'Thrown away / garbage collection';
declare(strict_types = 1);
array (
'disposal_method_set' =>
array (
'sold' => 'Sold',
'destroyed' => 'Destroyed',
'garbage' => 'Thrown away / garbage collection',
),
)

@ -1,19 +1,25 @@
<?PHP
$entry_types['0'] = '';
$entry_types['1'] = 'Donation';
$entry_types['2'] = 'Purchase';
$entry_types['3'] = 'Excavation';
$entry_types['4'] = 'Emergency Rescue';
$entry_types['5'] = 'Inheritance';
$entry_types['6'] = 'Endowment';
$entry_types['7'] = 'Dispossession';
$entry_types['8'] = 'Original condition';
$entry_types['9'] = 'Loan';
$entry_types['10'] = 'Exchange';
$entry_types['11'] = 'In-house production';
$entry_types['12'] = 'Material Strain (Törzsanyag)';
$entry_types['14'] = 'Vorlass';
$entry_types['15'] = 'Finding';
$entry_types['98'] = 'To be checked';
$entry_types['99'] = 'Other legal acquisition';
$entry_types['16'] = 'Permanent loan';
declare(strict_types = 1);
array (
'entry_types' =>
array (
0 => '',
1 => 'Donation',
2 => 'Purchase',
3 => 'Excavation',
4 => 'Emergency Rescue',
5 => 'Inheritance',
6 => 'Endowment',
7 => 'Dispossession',
8 => 'Original condition',
9 => 'Loan',
10 => 'Exchange',
11 => 'In-house production',
12 => 'Material Strain (Törzsanyag)',
14 => 'Vorlass',
15 => 'Finding',
98 => 'To be checked',
99 => 'Other legal acquisition',
16 => 'Permanent loan',
),
)

@ -1,49 +1,55 @@
<?PHP
$eventname['1'] = 'مُنشأ';
$eventname['2'] = 'موجود';
$eventname['3'] = 'منشور';
$eventname['4'] = 'انشاء مرجع ';
$eventname['5'] = 'مُصور';
$eventname['6'] = 'مُستعمل';
$eventname['7'] = 'مكتوب';
$eventname['8'] = 'مجموع';
$eventname['9'] = 'مُلون';
$eventname['10'] = 'صورة ملتقطة';
$eventname['11'] = 'مُستَلم';
$eventname['12'] = 'انشئت الصفحة المطبوعة ';
$eventname['13'] = 'مُرسل';
$eventname['14'] = 'مُحرر';
$eventname['15'] = 'مُوقَع';
$eventname['16'] = 'وصف النموذج ';
$eventname['19'] = 'مرسوم';
$eventname['20'] = 'نُسخ -باليد- ';
$eventname['21'] = 'قد عاش ';
$eventname['22'] = '[العلاقة مع الموقع]';
$eventname['23'] = '[العلاقة مع شخص او مؤسسة]';
$eventname['24'] = '[العلاقة مع الوقت]';
$eventname['25'] = 'مُكلف';
$eventname['26'] = 'مطبوع';
$eventname['27'] = 'مُسجل';
$eventname['28'] = 'مُغنى';
$eventname['29'] = 'الديكور مصمم ';
$eventname['30'] = 'الشكل مصمم';
$eventname['31'] = 'النموذج منشأ ';
$eventname['32'] = 'مُوقع بخط اليد ';
$eventname['33'] = 'مُشار اليه ';
$eventname['34'] = 'مدفون ';
$eventname['35'] = 'ابداع فكري';
$eventname['36'] = 'مُصور';
$eventname['37'] = 'مرسوم على ';
$eventname['38'] = 'مُوضح بالرسوم';
$eventname['39'] = 'Assembled';
$eventname['40'] = 'Auctioned';
$eventname['41'] = 'Bought';
$eventname['42'] = 'Owned';
$eventname['43'] = 'Sold';
$eventname['44'] = 'Restorated';
$eventname['45'] = 'Damaged';
$eventname['46'] = 'Destroyed';
$eventname['47'] = 'Lost';
$eventname['48'] = 'Edited';
$eventname['49'] = 'Donated / present';
$eventname['50'] = 'Inherited';
declare(strict_types = 1);
array (
'eventname' =>
array (
1 => 'مُنشأ',
2 => 'موجود',
3 => 'منشور',
4 => 'انشاء مرجع ',
5 => 'مُصور',
6 => 'مُستعمل',
7 => 'مكتوب',
8 => 'مجموع',
9 => 'مُلون',
10 => 'صورة ملتقطة',
11 => 'مُستَلم',
12 => 'انشئت الصفحة المطبوعة ',
13 => 'مُرسل',
14 => 'مُحرر',
15 => 'مُوقَع',
16 => 'وصف النموذج ',
19 => 'مرسوم',
20 => 'نُسخ -باليد- ',
21 => 'قد عاش ',
22 => '[العلاقة مع الموقع]',
23 => '[العلاقة مع شخص او مؤسسة]',
24 => '[العلاقة مع الوقت]',
25 => 'مُكلف',
26 => 'مطبوع',
27 => 'مُسجل',
28 => 'مُغنى',
29 => 'الديكور مصمم ',
30 => 'الشكل مصمم',
31 => 'النموذج منشأ ',
32 => 'مُوقع بخط اليد ',
33 => 'مُشار اليه ',
34 => 'مدفون ',
35 => 'ابداع فكري',
36 => 'مُصور',
37 => 'مرسوم على ',
38 => 'مُوضح بالرسوم',
39 => 'Assembled',
40 => 'Auctioned',
41 => 'Bought',
42 => 'Owned',
43 => 'Sold',
44 => 'Restorated',
45 => 'Damaged',
46 => 'Destroyed',
47 => 'Lost',
48 => 'Edited',
49 => 'Donated / present',
50 => 'Inherited',
),
)

@ -1,6 +1,12 @@
<?PHP
$exhibition_contributor_roles['concept'] = 'Concept';
$exhibition_contributor_roles['curator'] = 'Curator';
$exhibition_contributor_roles['design'] = 'Design';
$exhibition_contributor_roles['coordinator'] = 'Coordinator';
$exhibition_contributor_roles['protagonist'] = 'Protagonist';
declare(strict_types = 1);
array (
'exhibition_contributor_roles' =>
array (
'concept' => 'Concept',
'curator' => 'Curator',
'design' => 'Design',
'coordinator' => 'Coordinator',
'protagonist' => 'Protagonist',
),
)

@ -1,4 +1,10 @@
<?PHP
$gender_set['female'] = 'Female';
$gender_set['male'] = 'Male';
$gender_set['other'] = 'Other';
declare(strict_types = 1);
array (
'gender_set' =>
array (
'female' => 'Female',
'male' => 'Male',
'other' => 'Other',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_explica['CC BY-NC-SA'] = 'For non commercial purposes the material might be used (even changed) freely if the attribution is given. Rights status has to be kept as it is in case of distribution.';
$license_explica['CC BY-NC-ND'] = 'For non commercial purposes the material might be used freely if the attribution is given. It may not be altered.';
$license_explica['CC BY-NC'] = 'For non commercial purposes the material might be used freely if the attribution is given.';
$license_explica['CC BY-ND'] = 'The material might be used freely if the attribution is given. It may not be altered.';
$license_explica['CC BY-SA'] = 'The material might be used freely (and even altered) if the attribution is given. Rights status has to be kept as it is in case of distribution.';
$license_explica['CC BY'] = 'The material might be used freely (and even altered) if the attribution is given.';
$license_explica['CC0'] = 'No Rights Reserved. You only should use CC0 if you have the right to waive all rights.';
$license_explica['RR-F'] = 'Free access - no reuse.';
$license_explica['RR-P'] = 'Paid access - no reuse. Previews might be freely accessible.';
$license_explica['RR-R'] = 'Restricted access. Reserved rights.';
$license_explica['Orphan Work'] = 'The rightsholder could not be determined. The work is listed at the EU list of orphan works.';
$license_explica['Public Domain Mark'] = 'This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.';
declare(strict_types = 1);
array (
'license_explica' =>
array (
'CC BY-NC-SA' => 'For non commercial purposes the material might be used (even changed) freely if the attribution is given. Rights status has to be kept as it is in case of distribution.',
'CC BY-NC-ND' => 'For non commercial purposes the material might be used freely if the attribution is given. It may not be altered.',
'CC BY-NC' => 'For non commercial purposes the material might be used freely if the attribution is given.',
'CC BY-ND' => 'The material might be used freely if the attribution is given. It may not be altered.',
'CC BY-SA' => 'The material might be used freely (and even altered) if the attribution is given. Rights status has to be kept as it is in case of distribution.',
'CC BY' => 'The material might be used freely (and even altered) if the attribution is given.',
'CC0' => 'No Rights Reserved. You only should use CC0 if you have the right to waive all rights.',
'RR-F' => 'Free access - no reuse.',
'RR-P' => 'Paid access - no reuse. Previews might be freely accessible.',
'RR-R' => 'Restricted access. Reserved rights.',
'Orphan Work' => 'The rightsholder could not be determined. The work is listed at the EU list of orphan works.',
'Public Domain Mark' => 'This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_full_names['CC BY-NC-SA'] = 'Attribution - Non Commercial - Share Alike';
$license_full_names['CC BY-NC'] = 'Attribution - Non Commercial';
$license_full_names['CC BY-ND'] = 'Attribution - No Derivates';
$license_full_names['CC BY-SA'] = 'Attribution - Share Alike';
$license_full_names['CC BY'] = 'Attribution';
$license_full_names['CC0'] = 'No Rights Reserved';
$license_full_names['RR-F'] = 'Rights Reserved - Free Access';
$license_full_names['RR-P'] = 'Rights Reserved - Paid Access';
$license_full_names['RR-R'] = 'Rights Reserved - Restricted Access';
$license_full_names['Orphan Work'] = 'Orphan Work';
$license_full_names['Public Domain Mark'] = 'Public Domain Mark';
$license_full_names['CC BY-NC-ND'] = 'Attribution - Non Commercial - No Derivates';
declare(strict_types = 1);
array (
'license_full_names' =>
array (
'CC BY-NC-SA' => 'Attribution - Non Commercial - Share Alike',
'CC BY-NC' => 'Attribution - Non Commercial',
'CC BY-ND' => 'Attribution - No Derivates',
'CC BY-SA' => 'Attribution - Share Alike',
'CC BY' => 'Attribution',
'CC0' => 'No Rights Reserved',
'RR-F' => 'Rights Reserved - Free Access',
'RR-P' => 'Rights Reserved - Paid Access',
'RR-R' => 'Rights Reserved - Restricted Access',
'Orphan Work' => 'Orphan Work',
'Public Domain Mark' => 'Public Domain Mark',
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_url['CC BY-NC-SA'] = 'https://creativecommons.org/licenses/by-nc-sa/4.0/';
$license_url['CC BY-NC-ND'] = 'https://creativecommons.org/licenses/by-nc-nd/4.0/';
$license_url['CC BY-NC'] = 'https://creativecommons.org/licenses/by-nc/4.0/';
$license_url['CC BY-ND'] = 'https://creativecommons.org/licenses/by-nd/4.0/';
$license_url['CC BY-SA'] = 'https://creativecommons.org/licenses/by-sa/4.0/';
$license_url['CC BY'] = 'https://creativecommons.org/licenses/by/4.0/';
$license_url['CC0'] = 'https://creativecommons.org/publicdomain/zero/1.0/';
$license_url['RR-F'] = 'http://www.europeana.eu/rights/rr-f/';
$license_url['RR-P'] = 'http://www.europeana.eu/rights/rr-p/';
$license_url['RR-R'] = 'http://www.europeana.eu/rights/rr-r/';
$license_url['Orphan Work'] = 'http://www.europeana.eu/rights/orphan-work-eu/';
$license_url['Public Domain Mark'] = 'https://creativecommons.org/publicdomain/mark/1.0/';
declare(strict_types = 1);
array (
'license_url' =>
array (
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-nd/4.0/',
'CC BY-NC' => 'https://creativecommons.org/licenses/by-nc/4.0/',
'CC BY-ND' => 'https://creativecommons.org/licenses/by-nd/4.0/',
'CC BY-SA' => 'https://creativecommons.org/licenses/by-sa/4.0/',
'CC BY' => 'https://creativecommons.org/licenses/by/4.0/',
'CC0' => 'https://creativecommons.org/publicdomain/zero/1.0/',
'RR-F' => 'http://www.europeana.eu/rights/rr-f/',
'RR-P' => 'http://www.europeana.eu/rights/rr-p/',
'RR-R' => 'http://www.europeana.eu/rights/rr-r/',
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/',
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/',
),
)

@ -1,3 +1,9 @@
<?PHP
$loan_types['outgoing'] = 'Outgoing';
$loan_types['incoming'] = 'Incoming';
declare(strict_types = 1);
array (
'loan_types' =>
array (
'outgoing' => 'Outgoing',
'incoming' => 'Incoming',
),
)

@ -1,20 +1,26 @@
<?PHP
$marking_types['signature'] = 'Signature';
$marking_types['watermark'] = 'Watermark';
$marking_types['engraving'] = 'Engraving';
$marking_types['scratch'] = 'Scratching';
$marking_types['stamp'] = 'Stamped';
$marking_types['overprint'] = 'Overprint';
$marking_types['embossing'] = 'Embossing';
$marking_types['handwritten'] = 'Handwritten';
$marking_types['glued'] = 'Glued';
$marking_types['embroidered'] = 'Embroidered';
$marking_types['sewn'] = 'Sewn';
$marking_types['screwed'] = 'Screwed';
$marking_types['burnt_in'] = 'Burnt in';
$marking_types['riveted'] = 'Riveted';
$marking_types['nailed'] = 'Nailed';
$marking_types['hallmarked'] = 'Hallmarked';
$marking_types['punched'] = 'Punched';
$marking_types['scarified'] = 'Scarified';
$marking_types['cast'] = 'Cast';
declare(strict_types = 1);
array (
'marking_types' =>
array (
'signature' => 'Signature',
'watermark' => 'Watermark',
'engraving' => 'Engraving',
'scratch' => 'Scratching',
'stamp' => 'Stamped',
'overprint' => 'Overprint',
'embossing' => 'Embossing',
'handwritten' => 'Handwritten',
'glued' => 'Glued',
'embroidered' => 'Embroidered',
'sewn' => 'Sewn',
'screwed' => 'Screwed',
'burnt_in' => 'Burnt in',
'riveted' => 'Riveted',
'nailed' => 'Nailed',
'hallmarked' => 'Hallmarked',
'punched' => 'Punched',
'scarified' => 'Scarified',
'cast' => 'Cast',
),
)

@ -1,4 +1,10 @@
<?PHP
$object_check_types_set['condition_check'] = 'Condition check';
$object_check_types_set['completeness_check'] = 'Completeness check';
$object_check_types_set['data_correctness_check'] = 'Data correctness check';
declare(strict_types = 1);
array (
'object_check_types_set' =>
array (
'condition_check' => 'Condition check',
'completeness_check' => 'Completeness check',
'data_correctness_check' => 'Data correctness check',
),
)

@ -1,6 +1,12 @@
<?PHP
$object_damage_status_set['identified'] = 'Identified';
$object_damage_status_set['repair_possible'] = 'Reviewed; repair possible';
$object_damage_status_set['repair_scheduled'] = 'Repair scheduled';
$object_damage_status_set['repaired'] = 'Repaired';
$object_damage_status_set['irreparable'] = 'Irreparable';
declare(strict_types = 1);
array (
'object_damage_status_set' =>
array (
'identified' => 'Identified',
'repair_possible' => 'Reviewed; repair possible',
'repair_scheduled' => 'Repair scheduled',
'repaired' => 'Repaired',
'irreparable' => 'Irreparable',
),
)

@ -1,3 +1,9 @@
<?PHP
$object_damage_types_set['water_damage'] = 'Water damage';
$object_damage_types_set['breakage'] = 'Breakage';
declare(strict_types = 1);
array (
'object_damage_types_set' =>
array (
'water_damage' => 'Water damage',
'breakage' => 'Breakage',
),
)

@ -1,6 +1,12 @@
<?PHP
$object_form_set['cube'] = 'Cube';
$object_form_set['cuboid'] = 'Cuboid';
$object_form_set['sphere'] = 'Sphere';
$object_form_set['cone'] = 'Cone';
$object_form_set['cylinder'] = 'Cylinder';
declare(strict_types = 1);
array (
'object_form_set' =>
array (
'cube' => 'Cube',
'cuboid' => 'Cuboid',
'sphere' => 'Sphere',
'cone' => 'Cone',
'cylinder' => 'Cylinder',
),
)

@ -1,7 +1,13 @@
<?PHP
$object_publication_background['0'] = 'Image published';
$object_publication_background['1'] = 'Transcript published';
$object_publication_background['2'] = 'Discussed';
$object_publication_background['3'] = 'Rezensiert';
$object_publication_background['4'] = 'Referenced';
$object_publication_background['5'] = 'Advertised';
declare(strict_types = 1);
array (
'object_publication_background' =>
array (
0 => 'Image published',
1 => 'Transcript published',
2 => 'Discussed',
3 => 'Rezensiert',
4 => 'Referenced',
5 => 'Advertised',
),
)

@ -1,8 +1,14 @@
<?PHP
$object_status['owned'] = 'Owned';
$object_status['permanent_loan'] = 'Permanent loan';
$object_status['borrowed'] = 'Borrowed';
$object_status['to_check_for_gift'] = 'To check (for gift)';
$object_status['to_check'] = 'To check';
$object_status['deaccessed'] = 'Deaccessed';
$object_status['third_party_property'] = 'Third party property';
declare(strict_types = 1);
array (
'object_status' =>
array (
'owned' => 'Owned',
'permanent_loan' => 'Permanent loan',
'borrowed' => 'Borrowed',
'to_check_for_gift' => 'To check (for gift)',
'to_check' => 'To check',
'deaccessed' => 'Deaccessed',
'third_party_property' => 'Third party property',
),
)

@ -1,7 +1,13 @@
<?PHP
$phone_types['work'] = 'Work';
$phone_types['home'] = 'Home';
$phone_types['mobile'] = 'Mobile';
$phone_types['work mobile'] = 'Work mobile';
$phone_types['fax'] = 'Fax';
$phone_types['fax work'] = 'Fax (Work)';
declare(strict_types = 1);
array (
'phone_types' =>
array (
'work' => 'Work',
'home' => 'Home',
'mobile' => 'Mobile',
'work mobile' => 'Work mobile',
'fax' => 'Fax',
'fax work' => 'Fax (Work)',
),
)

@ -1,10 +1,16 @@
<?PHP
$tlPlacetypes['0'] = 'Administrative';
$tlPlacetypes['1'] = 'Historical';
$tlPlacetypes['2'] = 'Region';
$tlPlacetypes['3'] = 'Street';
$tlPlacetypes['4'] = 'Building';
$tlPlacetypes['5'] = 'Mountains';
$tlPlacetypes['6'] = 'Forrest';
$tlPlacetypes['7'] = 'Body of water';
$tlPlacetypes['8'] = 'Island';
declare(strict_types = 1);
array (
'tlPlacetypes' =>
array (
0 => 'Administrative',
1 => 'Historical',
2 => 'Region',
3 => 'Street',
4 => 'Building',
5 => 'Mountains',
6 => 'Forrest',
7 => 'Body of water',
8 => 'Island',
),
)

@ -1,5 +1,11 @@
<?PHP
$podcast_contributor_roles['onair'] = 'On air';
$podcast_contributor_roles['recording'] = 'Recording';
$podcast_contributor_roles['technical_support'] = 'Technical support';
$podcast_contributor_roles['organization'] = 'Organization';
declare(strict_types = 1);
array (
'podcast_contributor_roles' =>
array (
'onair' => 'On air',
'recording' => 'Recording',
'technical_support' => 'Technical support',
'organization' => 'Organization',
),
)

@ -1,13 +1,19 @@
<?PHP
$position_set['left'] = 'Left';
$position_set['top_left'] = 'Top left';
$position_set['top'] = 'Top';
$position_set['top_right'] = 'Top right';
$position_set['right'] = 'Right';
$position_set['bottom_right'] = 'Bottom right';
$position_set['bottom'] = 'Bottom';
$position_set['bottom_left'] = 'Unten links';
$position_set['center'] = 'Center';
$position_set['rear_side'] = 'Rear side';
$position_set['edge'] = 'Edge';
$position_set['other'] = 'Other';
declare(strict_types = 1);
array (
'position_set' =>
array (
'left' => 'Left',
'top_left' => 'Top left',
'top' => 'Top',
'top_right' => 'Top right',
'right' => 'Right',
'bottom_right' => 'Bottom right',
'bottom' => 'Bottom',
'bottom_left' => 'Unten links',
'center' => 'Center',
'rear_side' => 'Rear side',
'edge' => 'Edge',
'other' => 'Other',
),
)

@ -1,15 +1,21 @@
<?PHP
$process_types['project'] = 'Project';
$process_types['grant_application'] = 'Grant application';
$process_types['exhibition'] = 'Exhibition';
$process_types['appointment'] = 'Appointment / Event';
$process_types['loan_incoming'] = 'Loan (incoming)';
$process_types['loan_outgoing'] = 'Loan (outgoing)';
$process_types['employment_ad'] = 'Employment ad';
$process_types['purchase'] = 'Purchase';
$process_types['deaccession'] = 'Deaccession';
$process_types['construction'] = 'Construction measure';
$process_types['pest_control_campaign'] = 'Pest control campaign';
$process_types['pr_campaign'] = 'PR campaign';
$process_types['relocation'] = 'Relocation';
$process_types['discussion'] = 'Discussion';
declare(strict_types = 1);
array (
'process_types' =>
array (
'project' => 'Project',
'grant_application' => 'Grant application',
'exhibition' => 'Exhibition',
'appointment' => 'Appointment / Event',
'loan_incoming' => 'Loan (incoming)',
'loan_outgoing' => 'Loan (outgoing)',
'employment_ad' => 'Employment ad',
'purchase' => 'Purchase',
'deaccession' => 'Deaccession',
'construction' => 'Construction measure',
'pest_control_campaign' => 'Pest control campaign',
'pr_campaign' => 'PR campaign',
'relocation' => 'Relocation',
'discussion' => 'Discussion',
),
)

@ -1,3 +1,9 @@
<?PHP
$recording_types_set['audio'] = 'Audio';
$recording_types_set['video'] = 'Video';
declare(strict_types = 1);
array (
'recording_types_set' =>
array (
'audio' => 'Audio',
'video' => 'Video',
),
)

@ -1,4 +1,10 @@
<?PHP
$research_status['bad'] = 'Not researched much';
$research_status['medium'] = 'Partly researched';
$research_status['good'] = 'Well researched';
declare(strict_types = 1);
array (
'research_status' =>
array (
'bad' => 'Not researched much',
'medium' => 'Partly researched',
'good' => 'Well researched',
),
)

@ -1,9 +1,15 @@
<?PHP
$source_type_set['article'] = 'Article';
$source_type_set['inbook'] = 'Article in collected volume';
$source_type_set['book'] = 'Book';
$source_type_set['phdthesis'] = 'PhD thesis';
$source_type_set['electronical'] = 'Electronic resource';
$source_type_set['misc'] = 'Miscelaneous';
$source_type_set['patent'] = 'Patent';
$source_type_set['unpublished'] = 'Unpublished';
declare(strict_types = 1);
array (
'source_type_set' =>
array (
'article' => 'Article',
'inbook' => 'Article in collected volume',
'book' => 'Book',
'phdthesis' => 'PhD thesis',
'electronical' => 'Electronic resource',
'misc' => 'Miscelaneous',
'patent' => 'Patent',
'unpublished' => 'Unpublished',
),
)

@ -1,3 +1,9 @@
<?PHP
$space_access_status['enter'] = 'Enter';
$space_access_status['leave'] = 'Leave';
declare(strict_types = 1);
array (
'space_access_status' =>
array (
'enter' => 'Enter',
'leave' => 'Leave',
),
)

@ -1,12 +1,18 @@
<?PHP
$space_types['building'] = 'Building';
$space_types['depot'] = 'Depot room';
$space_types['utility_room'] = 'Utility room';
$space_types['exhibition_room'] = 'Exhibition room';
$space_types['display_cabinet'] = 'Display cabinet';
$space_types['shelf'] = 'Shelf';
$space_types['box'] = 'Box';
$space_types['folder'] = 'Folder';
$space_types['office'] = 'Office';
$space_types['floor'] = 'Floor';
$space_types['hallway'] = 'Hallway';
declare(strict_types = 1);
array (
'space_types' =>
array (
'building' => 'Building',
'depot' => 'Depot room',
'utility_room' => 'Utility room',
'exhibition_room' => 'Exhibition room',
'display_cabinet' => 'Display cabinet',
'shelf' => 'Shelf',
'box' => 'Box',
'folder' => 'Folder',
'office' => 'Office',
'floor' => 'Floor',
'hallway' => 'Hallway',
),
)

@ -1,5 +1,11 @@
<?PHP
$syndication_repos['ddb'] = 'German Digital Library (DDB)';
$syndication_repos['europeana'] = 'Europeana';
$syndication_repos['smb-digital'] = 'SMB-digital';
$syndication_repos['kalliope-verbund'] = 'Kalliope Verbund';
declare(strict_types = 1);
array (
'syndication_repos' =>
array (
'ddb' => 'German Digital Library (DDB)',
'europeana' => 'Europeana',
'smb-digital' => 'SMB-digital',
'kalliope-verbund' => 'Kalliope Verbund',
),
)

@ -1,4 +1,10 @@
<?PHP
$timing_intervals_set['weekly'] = 'Weekly';
$timing_intervals_set['monthly'] = 'Monthly';
$timing_intervals_set['annual'] = 'Annual';
declare(strict_types = 1);
array (
'timing_intervals_set' =>
array (
'weekly' => 'Weekly',
'monthly' => 'Monthly',
'annual' => 'Annual',
),
)

@ -1,6 +1,12 @@
<?PHP
$title_types_set[''] = ' ';
$title_types_set['Science'] = 'Science';
$title_types_set['Everyday speech'] = 'Everyday speech';
$title_types_set['Colloquial speech'] = 'Colloquial speech';
$title_types_set['Dialect'] = 'Dialect';
declare(strict_types = 1);
array (
'title_types_set' =>
array (
'' => ' ',
'Science' => 'Science',
'Everyday speech' => 'Everyday speech',
'Colloquial speech' => 'Colloquial speech',
'Dialect' => 'Dialect',
),
)

@ -1,6 +1,12 @@
<?PHP
$todo_status['suggested'] = 'Suggested';
$todo_status['planned'] = 'Planned';
$todo_status['in_progress'] = 'In progress';
$todo_status['done'] = 'Done';
$todo_status['cancelled'] = 'Cancelled';
declare(strict_types = 1);
array (
'todo_status' =>
array (
'suggested' => 'Suggested',
'planned' => 'Planned',
'in_progress' => 'In progress',
'done' => 'Done',
'cancelled' => 'Cancelled',
),
)

@ -1,7 +1,13 @@
<?PHP
$units_length_set['m'] = 'm';
$units_length_set['dm'] = 'dm';
$units_length_set['cm'] = 'cm';
$units_length_set['mm'] = 'mm';
$units_length_set['ft'] = 'ft';
$units_length_set['in'] = 'inch';
declare(strict_types = 1);
array (
'units_length_set' =>
array (
'm' => 'm',
'dm' => 'dm',
'cm' => 'cm',
'mm' => 'mm',
'ft' => 'ft',
'in' => 'inch',
),
)

@ -1,4 +1,10 @@
<?PHP
$units_weight_set['t'] = 't';
$units_weight_set['kg'] = 'kg';
$units_weight_set['g'] = 'g';
declare(strict_types = 1);
array (
'units_weight_set' =>
array (
't' => 't',
'kg' => 'kg',
'g' => 'g',
),
)

@ -1,10 +1,16 @@
<?PHP
$actor_variant_types_set['birth_name'] = 'Geburtsname';
$actor_variant_types_set['married_name'] = 'Ehename';
$actor_variant_types_set['monastic_name'] = 'Ordensname';
$actor_variant_types_set['pseudonym'] = 'Pseudonym';
$actor_variant_types_set['regnal_name'] = 'Regierungsname';
$actor_variant_types_set['nickname'] = 'Spitzname';
$actor_variant_types_set['artist_name'] = 'Künstlername';
$actor_variant_types_set['civil_name'] = 'Bürgerlicher Name';
$actor_variant_types_set['generic_other_name'] = 'Alternative Schreibweise';
declare(strict_types = 1);
array (
'actor_variant_types_set' =>
array (
'birth_name' => 'Geburtsname',
'married_name' => 'Ehename',
'monastic_name' => 'Ordensname',
'pseudonym' => 'Pseudonym',
'regnal_name' => 'Regierungsname',
'nickname' => 'Spitzname',
'artist_name' => 'Künstlername',
'civil_name' => 'Bürgerlicher Name',
'generic_other_name' => 'Alternative Schreibweise',
),
)

@ -1,4 +1,10 @@
<?PHP
$appointment_attendance_modes['offline'] = 'Offline';
$appointment_attendance_modes['online'] = 'Online';
$appointment_attendance_modes['mixed'] = 'Offline und online';
declare(strict_types = 1);
array (
'appointment_attendance_modes' =>
array (
'offline' => 'Offline',
'online' => 'Online',
'mixed' => 'Offline und online',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_cancellation_status_set['scheduled_done'] = 'Geplant oder wie geplant abgeschlossen';
$appointment_cancellation_status_set['cancelled'] = 'Abgesagt';
declare(strict_types = 1);
array (
'appointment_cancellation_status_set' =>
array (
'scheduled_done' => 'Geplant oder wie geplant abgeschlossen',
'cancelled' => 'Abgesagt',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_contributor_roles['organizer'] = 'Organisation';
$appointment_contributor_roles['presenter'] = 'Vortragender';
declare(strict_types = 1);
array (
'appointment_contributor_roles' =>
array (
'organizer' => 'Organisation',
'presenter' => 'Vortragender',
),
)

@ -1,5 +1,11 @@
<?PHP
$appointment_status['scheduled'] = 'Geplant';
$appointment_status['cancelled'] = 'Abgesagt';
$appointment_status['moved_online'] = 'In Online-Veranstaltung umgewandelt';
$appointment_status['postponed'] = 'Verschoben';
declare(strict_types = 1);
array (
'appointment_status' =>
array (
'scheduled' => 'Geplant',
'cancelled' => 'Abgesagt',
'moved_online' => 'In Online-Veranstaltung umgewandelt',
'postponed' => 'Verschoben',
),
)

@ -1,3 +1,9 @@
<?PHP
$attendance_status_set['offline'] = 'Offline';
$attendance_status_set['online'] = 'Online';
declare(strict_types = 1);
array (
'attendance_status_set' =>
array (
'offline' => 'Offline',
'online' => 'Online',
),
)

@ -1,5 +1,11 @@
<?PHP
$closer_location_types_set['0'] = '';
$closer_location_types_set['1'] = 'Aufnahmeort';
$closer_location_types_set['2'] = 'Fundort';
$closer_location_types_set['3'] = 'Früherer Ort';
declare(strict_types = 1);
array (
'closer_location_types_set' =>
array (
0 => '',
1 => 'Aufnahmeort',
2 => 'Fundort',
3 => 'Früherer Ort',
),
)

@ -1,17 +1,23 @@
<?PHP
$colors_set['black'] = 'Schwarz';
$colors_set['green'] = 'Grün';
$colors_set['silver'] = 'Silber';
$colors_set['lime'] = 'Hellgrün';
$colors_set['gray'] = 'Grau';
$colors_set['olive'] = 'Oliv';
$colors_set['white'] = 'Weiß';
$colors_set['yellow'] = 'Gelb';
$colors_set['maroon'] = 'Braun';
$colors_set['navy'] = 'Dunkelblau';
$colors_set['red'] = 'Rot';
$colors_set['blue'] = 'Blau';
$colors_set['purple'] = 'Lila';
$colors_set['teal'] = 'Blaugrün';
$colors_set['fuchsia'] = 'Fuchsia';
$colors_set['aqua'] = 'Türkis';
declare(strict_types = 1);
array (
'colors_set' =>
array (
'black' => 'Schwarz',
'green' => 'Grün',
'silver' => 'Silber',
'lime' => 'Hellgrün',
'gray' => 'Grau',
'olive' => 'Oliv',
'white' => 'Weiß',
'yellow' => 'Gelb',
'maroon' => 'Braun',
'navy' => 'Dunkelblau',
'red' => 'Rot',
'blue' => 'Blau',
'purple' => 'Lila',
'teal' => 'Blaugrün',
'fuchsia' => 'Fuchsia',
'aqua' => 'Türkis',
),
)

@ -1,7 +1,13 @@
<?PHP
$conservation_report_type_set['damage'] = 'Schaden';
$conservation_report_type_set['conservation'] = 'Konservierung';
$conservation_report_type_set['condition'] = 'Zustand';
$conservation_report_type_set['restoration'] = 'Restaurierung';
$conservation_report_type_set['other_report'] = 'Anderer Bericht';
$conservation_report_type_set['other'] = 'Anderer Bericht';
declare(strict_types = 1);
array (
'conservation_report_type_set' =>
array (
'damage' => 'Schaden',
'conservation' => 'Konservierung',
'condition' => 'Zustand',
'restoration' => 'Restaurierung',
'other_report' => 'Anderer Bericht',
'other' => 'Anderer Bericht',
),
)

@ -1,21 +1,30 @@
<?PHP
$currencies_set['eu-EUR'] = 'Euro';
$currencies_set['de-DM'] = 'Deutsche Mark';
$currencies_set['de-RM'] = 'Reichsmark (Deutsches Reich)';
$currencies_set['es-Real'] = 'Real (Spanien)';
$currencies_set['hu-Ft'] = 'Forint';
$currencies_set['hu-Lari'] = 'Lari';
$currencies_set['hu-Pengő'] = 'Pengő';
$currencies_set['id-IDR'] = 'Indonesische Rupiah';
$currencies_set['pl-Złoty'] = 'Złoty';
$currencies_set['us-USD'] = 'US Dollar';
$currencies_set['ddr-Mark'] = 'Mark (DDR)';
$currencies_set['ddr-MDN'] = 'MDN (DDR)';
$currencies_set['hu-Korona'] = 'Österreichisch-ungarische Krone';
$currencies_set['fr-FF'] = 'Französischer Franc';
$currencies_set['uk-GBP'] = 'Pfund Sterling';
$currencies_set['by-BYN'] = 'Belarussischer Rubel';
$currencies_set['ru-RUB'] = 'Russischer Rubel';
$currencies_set['su-SUR'] = 'Sowjetischer Rubel';
$currencies_set['ua-UAH'] = 'Hrywnja';
$license_full_names['CC BY-NC-ND'] = 'Attribution - Non Commercial - No Derivates';
declare(strict_types = 1);
array (
'currencies_set' =>
array (
'eu-EUR' => 'Euro',
'de-DM' => 'Deutsche Mark',
'de-RM' => 'Reichsmark (Deutsches Reich)',
'es-Real' => 'Real (Spanien)',
'hu-Ft' => 'Forint',
'hu-Lari' => 'Lari',
'hu-Pengő' => 'Pengő',
'id-IDR' => 'Indonesische Rupiah',
'pl-Złoty' => 'Złoty',
'us-USD' => 'US Dollar',
'ddr-Mark' => 'Mark (DDR)',
'ddr-MDN' => 'MDN (DDR)',
'hu-Korona' => 'Österreichisch-ungarische Krone',
'fr-FF' => 'Französischer Franc',
'uk-GBP' => 'Pfund Sterling',
'by-BYN' => 'Belarussischer Rubel',
'ru-RUB' => 'Russischer Rubel',
'su-SUR' => 'Sowjetischer Rubel',
'ua-UAH' => 'Hrywnja',
),
'license_full_names' =>
array (
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
),
)

@ -1,5 +1,11 @@
<?PHP
$custom_report_targets_set['object_single'] = 'Einzelnes Objekt';
$custom_report_targets_set['object_list'] = 'Mehrere Objekte';
$custom_report_targets_set['loan'] = 'Leihvorgang';
$custom_report_targets_set['exhibition'] = 'Ausstellung';
declare(strict_types = 1);
array (
'custom_report_targets_set' =>
array (
'object_single' => 'Einzelnes Objekt',
'object_list' => 'Mehrere Objekte',
'loan' => 'Leihvorgang',
'exhibition' => 'Ausstellung',
),
)

@ -1,4 +1,10 @@
<?PHP
$disposal_method_set['sold'] = 'Verkauft';
$disposal_method_set['destroyed'] = 'Zerstört';
$disposal_method_set['garbage'] = 'Weggeworfen / Müllsammlung';
declare(strict_types = 1);
array (
'disposal_method_set' =>
array (
'sold' => 'Verkauft',
'destroyed' => 'Zerstört',
'garbage' => 'Weggeworfen / Müllsammlung',
),
)

@ -1,19 +1,25 @@
<?PHP
$entry_types['0'] = '';
$entry_types['1'] = 'Schenkung';
$entry_types['2'] = 'Kauf';
$entry_types['3'] = 'Grabung';
$entry_types['4'] = 'Notbergung';
$entry_types['5'] = 'Erbschaft / Nachlass';
$entry_types['6'] = 'Stiftung';
$entry_types['7'] = 'Enteignung';
$entry_types['8'] = 'Ursprungsbestand';
$entry_types['9'] = 'Leihgabe';
$entry_types['10'] = 'Tausch';
$entry_types['11'] = 'Eigenproduktion';
$entry_types['12'] = 'Material Strain (Törzsanyag)';
$entry_types['14'] = 'Vorlass';
$entry_types['15'] = 'Fund';
$entry_types['98'] = 'Ungeklärt';
$entry_types['99'] = 'Anderer rechtmäßiger Zugang';
$entry_types['16'] = 'Dauerleihgabe';
declare(strict_types = 1);
array (
'entry_types' =>
array (
0 => '',
1 => 'Schenkung',
2 => 'Kauf',
3 => 'Grabung',
4 => 'Notbergung',
5 => 'Erbschaft / Nachlass',
6 => 'Stiftung',
7 => 'Enteignung',
8 => 'Ursprungsbestand',
9 => 'Leihgabe',
10 => 'Tausch',
11 => 'Eigenproduktion',
12 => 'Material Strain (Törzsanyag)',
14 => 'Vorlass',
15 => 'Fund',
98 => 'Ungeklärt',
99 => 'Anderer rechtmäßiger Zugang',
16 => 'Dauerleihgabe',
),
)

@ -1,49 +1,55 @@
<?PHP
$eventname['1'] = 'Hergestellt';
$eventname['2'] = 'Gefunden';
$eventname['3'] = 'Veröffentlicht';
$eventname['4'] = 'Vorlagenerstellung';
$eventname['5'] = 'Wurde abgebildet (Akteur)';
$eventname['6'] = 'Wurde genutzt';
$eventname['7'] = 'Verfasst';
$eventname['8'] = 'Gesammelt';
$eventname['9'] = 'Gemalt';
$eventname['10'] = 'Aufgenommen';
$eventname['11'] = 'Empfangen';
$eventname['12'] = 'Druckplatte hergestellt';
$eventname['13'] = 'Abgeschickt';
$eventname['14'] = 'Ausgefertigt';
$eventname['15'] = 'Unterzeichnet';
$eventname['16'] = 'Erstbeschreibung';
$eventname['19'] = 'Gezeichnet';
$eventname['20'] = 'Abgeschrieben';
$eventname['21'] = 'Hat gelebt';
$eventname['22'] = '[Geographischer Bezug]';
$eventname['23'] = '[Person-Körperschaft-Bezug]';
$eventname['24'] = '[Zeitbezug]';
$eventname['25'] = 'Beauftragt';
$eventname['26'] = 'Gedruckt';
$eventname['27'] = 'Gesprochen';
$eventname['28'] = 'Gesungen';
$eventname['29'] = 'Dekor entworfen';
$eventname['30'] = 'Form entworfen';
$eventname['31'] = 'Modelliert';
$eventname['32'] = 'Signiert';
$eventname['33'] = 'Wurde erwähnt';
$eventname['34'] = 'Vergraben';
$eventname['35'] = 'Geistige Schöpfung';
$eventname['36'] = 'Wurde abgebildet (Ort)';
$eventname['37'] = 'Bemalt';
$eventname['38'] = 'Illustriert';
$eventname['39'] = 'Zusammengefügt';
$eventname['40'] = 'Versteigert';
$eventname['41'] = 'Gekauft';
$eventname['42'] = 'Besessen';
$eventname['43'] = 'Verkauft';
$eventname['44'] = 'Restauriert';
$eventname['45'] = 'Beschädigt';
$eventname['46'] = 'Zerstört';
$eventname['47'] = 'Verschollen';
$eventname['48'] = 'Herausgegeben';
$eventname['49'] = 'Gespendet / Geschenkt';
$eventname['50'] = 'Geerbt';
declare(strict_types = 1);
array (
'eventname' =>
array (
1 => 'Hergestellt',
2 => 'Gefunden',
3 => 'Veröffentlicht',
4 => 'Vorlagenerstellung',
5 => 'Wurde abgebildet (Akteur)',
6 => 'Wurde genutzt',
7 => 'Verfasst',
8 => 'Gesammelt',
9 => 'Gemalt',
10 => 'Aufgenommen',
11 => 'Empfangen',
12 => 'Druckplatte hergestellt',
13 => 'Abgeschickt',
14 => 'Ausgefertigt',
15 => 'Unterzeichnet',
16 => 'Erstbeschreibung',
19 => 'Gezeichnet',
20 => 'Abgeschrieben',
21 => 'Hat gelebt',
22 => '[Geographischer Bezug]',
23 => '[Person-Körperschaft-Bezug]',
24 => '[Zeitbezug]',
25 => 'Beauftragt',
26 => 'Gedruckt',
27 => 'Gesprochen',
28 => 'Gesungen',
29 => 'Dekor entworfen',
30 => 'Form entworfen',
31 => 'Modelliert',
32 => 'Signiert',
33 => 'Wurde erwähnt',
34 => 'Vergraben',
35 => 'Geistige Schöpfung',
36 => 'Wurde abgebildet (Ort)',
37 => 'Bemalt',
38 => 'Illustriert',
39 => 'Zusammengefügt',
40 => 'Versteigert',
41 => 'Gekauft',
42 => 'Besessen',
43 => 'Verkauft',
44 => 'Restauriert',
45 => 'Beschädigt',
46 => 'Zerstört',
47 => 'Verschollen',
48 => 'Herausgegeben',
49 => 'Gespendet / Geschenkt',
50 => 'Geerbt',
),
)

@ -1,6 +1,12 @@
<?PHP
$exhibition_contributor_roles['concept'] = 'Konzept';
$exhibition_contributor_roles['curator'] = 'Kurator';
$exhibition_contributor_roles['design'] = 'Design';
$exhibition_contributor_roles['coordinator'] = 'Koordination';
$exhibition_contributor_roles['protagonist'] = 'Protagonist';
declare(strict_types = 1);
array (
'exhibition_contributor_roles' =>
array (
'concept' => 'Konzept',
'curator' => 'Kurator',
'design' => 'Design',
'coordinator' => 'Koordination',
'protagonist' => 'Protagonist',
),
)

@ -1,4 +1,10 @@
<?PHP
$gender_set['female'] = 'Weiblich';
$gender_set['male'] = 'Männlich';
$gender_set['other'] = 'Weiteres';
declare(strict_types = 1);
array (
'gender_set' =>
array (
'female' => 'Weiblich',
'male' => 'Männlich',
'other' => 'Weiteres',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_explica['CC BY-NC-SA'] = 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet (auch verändert) werden. Bei einer Weitergabe muss der Rechtestatus erhalten bleiben.';
$license_explica['CC BY-NC-ND'] = 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet werden. Es darf nicht verändert werden.';
$license_explica['CC BY-NC'] = 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet werden.';
$license_explica['CC BY-ND'] = 'Das Material kann bei Namensnennung frei verwendet werden. Es darf nicht verändert werden.';
$license_explica['CC BY-SA'] = ' Material kann bei Namensnennung frei verwendet (auch verändert) werden. Bei einer Weitergabe muss der Rechtestatus erhalten bleiben.';
$license_explica['CC BY'] = 'Das Material kann bei Namensnennung frei verwendet werden.';
$license_explica['CC0'] = 'Verzicht auf alle Rechte. Sollte nur gewählt werden, wenn das Recht auf Rechte zu verzichten besteht.';
$license_explica['RR-F'] = 'Freier Zugang - Keine Weiterverwendung.';
$license_explica['RR-P'] = 'Zugang erst nach Zahlung - Keine Weiterverwendung. Voransichten sind möglicherweise frei zugänglich.';
$license_explica['RR-R'] = 'Eingeschränkter Zugang. Rechte bleiben vorbehalten.';
$license_explica['Orphan Work'] = 'Der Rechteinhaber läßt sich auch nach eingehender Prüfung nicht mehr ermitteln.';
$license_explica['Public Domain Mark'] = 'Das Material ist gemeinfrei.';
declare(strict_types = 1);
array (
'license_explica' =>
array (
'CC BY-NC-SA' => 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet (auch verändert) werden. Bei einer Weitergabe muss der Rechtestatus erhalten bleiben.',
'CC BY-NC-ND' => 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet werden. Es darf nicht verändert werden.',
'CC BY-NC' => 'Für nicht kommerzielle Zwecke kann das Material bei Namensnennung frei verwendet werden.',
'CC BY-ND' => 'Das Material kann bei Namensnennung frei verwendet werden. Es darf nicht verändert werden.',
'CC BY-SA' => ' Material kann bei Namensnennung frei verwendet (auch verändert) werden. Bei einer Weitergabe muss der Rechtestatus erhalten bleiben.',
'CC BY' => 'Das Material kann bei Namensnennung frei verwendet werden.',
'CC0' => 'Verzicht auf alle Rechte. Sollte nur gewählt werden, wenn das Recht auf Rechte zu verzichten besteht.',
'RR-F' => 'Freier Zugang - Keine Weiterverwendung.',
'RR-P' => 'Zugang erst nach Zahlung - Keine Weiterverwendung. Voransichten sind möglicherweise frei zugänglich.',
'RR-R' => 'Eingeschränkter Zugang. Rechte bleiben vorbehalten.',
'Orphan Work' => 'Der Rechteinhaber läßt sich auch nach eingehender Prüfung nicht mehr ermitteln.',
'Public Domain Mark' => 'Das Material ist gemeinfrei.',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_full_names['CC BY-NC-SA'] = 'Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen Bedingungen';
$license_full_names['CC BY-NC'] = 'Namensnennung - Nicht-kommerziell';
$license_full_names['CC BY-ND'] = 'Namensnennung - Keine Bearbeitung';
$license_full_names['CC BY-SA'] = 'Namensnennung - Weitergabe unter gleichen Bedingungen';
$license_full_names['CC BY'] = 'Namensnennung';
$license_full_names['CC0'] = 'Gemeinfrei (Verzicht auf Rechte)';
$license_full_names['RR-F'] = 'Freier Zugang - Keine Weiterverwendung';
$license_full_names['RR-P'] = 'Bezahlter Zugang - Keine Weiterverwendung';
$license_full_names['RR-R'] = 'Eingeschränkter Zugang - Rechte vorbehalten';
$license_full_names['Orphan Work'] = 'Verwaistes Werk';
$license_full_names['Public Domain Mark'] = 'Gemeinfrei';
$license_full_names['CC BY-NC-ND'] = 'Namensnennung - Nicht-kommerziell - Keine Bearbeitungen';
declare(strict_types = 1);
array (
'license_full_names' =>
array (
'CC BY-NC-SA' => 'Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen Bedingungen',
'CC BY-NC' => 'Namensnennung - Nicht-kommerziell',
'CC BY-ND' => 'Namensnennung - Keine Bearbeitung',
'CC BY-SA' => 'Namensnennung - Weitergabe unter gleichen Bedingungen',
'CC BY' => 'Namensnennung',
'CC0' => 'Gemeinfrei (Verzicht auf Rechte)',
'RR-F' => 'Freier Zugang - Keine Weiterverwendung',
'RR-P' => 'Bezahlter Zugang - Keine Weiterverwendung',
'RR-R' => 'Eingeschränkter Zugang - Rechte vorbehalten',
'Orphan Work' => 'Verwaistes Werk',
'Public Domain Mark' => 'Gemeinfrei',
'CC BY-NC-ND' => 'Namensnennung - Nicht-kommerziell - Keine Bearbeitungen',
),
)

@ -1,13 +1,19 @@
<?PHP
$license_url['CC BY-NC-SA'] = 'https://creativecommons.org/licenses/by-nc-sa/4.0/';
$license_url['CC BY-NC-ND'] = 'https://creativecommons.org/licenses/by-nc-nd/4.0/';
$license_url['CC BY-NC'] = 'https://creativecommons.org/licenses/by-nc/4.0/';
$license_url['CC BY-ND'] = 'https://creativecommons.org/licenses/by-nd/4.0/';
$license_url['CC BY-SA'] = 'https://creativecommons.org/licenses/by-sa/4.0/';
$license_url['CC BY'] = 'https://creativecommons.org/licenses/by/4.0/';
$license_url['CC0'] = 'https://creativecommons.org/publicdomain/zero/1.0/';
$license_url['RR-F'] = 'http://www.europeana.eu/rights/rr-f/';
$license_url['RR-P'] = 'http://www.europeana.eu/rights/rr-p/';
$license_url['RR-R'] = 'http://www.europeana.eu/rights/rr-r/';
$license_url['Orphan Work'] = 'http://www.europeana.eu/rights/orphan-work-eu/';
$license_url['Public Domain Mark'] = 'https://creativecommons.org/publicdomain/mark/1.0/';
declare(strict_types = 1);
array (
'license_url' =>
array (
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-nd/4.0/',
'CC BY-NC' => 'https://creativecommons.org/licenses/by-nc/4.0/',
'CC BY-ND' => 'https://creativecommons.org/licenses/by-nd/4.0/',
'CC BY-SA' => 'https://creativecommons.org/licenses/by-sa/4.0/',
'CC BY' => 'https://creativecommons.org/licenses/by/4.0/',
'CC0' => 'https://creativecommons.org/publicdomain/zero/1.0/',
'RR-F' => 'http://www.europeana.eu/rights/rr-f/',
'RR-P' => 'http://www.europeana.eu/rights/rr-p/',
'RR-R' => 'http://www.europeana.eu/rights/rr-r/',
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/',
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/',
),
)

@ -1,3 +1,9 @@
<?PHP
$loan_types['outgoing'] = 'Ausgehend';
$loan_types['incoming'] = 'Eingehend';
declare(strict_types = 1);
array (
'loan_types' =>
array (
'outgoing' => 'Ausgehend',
'incoming' => 'Eingehend',
),
)

@ -1,20 +1,26 @@
<?PHP
$marking_types['signature'] = 'Signatur';
$marking_types['watermark'] = 'Wasserzeichen';
$marking_types['engraving'] = 'Gravur';
$marking_types['scratch'] = 'Gekratzt';
$marking_types['stamp'] = 'Gestempelt';
$marking_types['overprint'] = 'Gedruckt';
$marking_types['embossing'] = 'Geprägt';
$marking_types['handwritten'] = 'Handschriftlich';
$marking_types['glued'] = 'Geklebt';
$marking_types['embroidered'] = 'Gestickt';
$marking_types['sewn'] = 'Genäht';
$marking_types['screwed'] = 'Geschraubt';
$marking_types['burnt_in'] = 'Eingebrannt';
$marking_types['riveted'] = 'Angenietet';
$marking_types['nailed'] = 'Genagelt';
$marking_types['hallmarked'] = 'Gepunzt';
$marking_types['punched'] = 'Gestanzt';
$marking_types['scarified'] = 'Geritzt';
$marking_types['cast'] = 'Guss';
declare(strict_types = 1);
array (
'marking_types' =>
array (
'signature' => 'Signatur',
'watermark' => 'Wasserzeichen',
'engraving' => 'Gravur',
'scratch' => 'Gekratzt',
'stamp' => 'Gestempelt',
'overprint' => 'Gedruckt',
'embossing' => 'Geprägt',
'handwritten' => 'Handschriftlich',
'glued' => 'Geklebt',
'embroidered' => 'Gestickt',
'sewn' => 'Genäht',
'screwed' => 'Geschraubt',
'burnt_in' => 'Eingebrannt',
'riveted' => 'Angenietet',
'nailed' => 'Genagelt',
'hallmarked' => 'Gepunzt',
'punched' => 'Gestanzt',
'scarified' => 'Geritzt',
'cast' => 'Guss',
),
)

@ -1,4 +1,10 @@
<?PHP
$object_check_types_set['condition_check'] = 'Zustands-Check';
$object_check_types_set['completeness_check'] = 'Vollständigkeits-Check';
$object_check_types_set['data_correctness_check'] = 'Überprüfung der Korrektheit der erfassten Daten';
declare(strict_types = 1);
array (
'object_check_types_set' =>
array (
'condition_check' => 'Zustands-Check',
'completeness_check' => 'Vollständigkeits-Check',
'data_correctness_check' => 'Überprüfung der Korrektheit der erfassten Daten',
),
)

@ -1,6 +1,12 @@
<?PHP
$object_damage_status_set['identified'] = 'Schaden identifiziert';
$object_damage_status_set['repair_possible'] = 'Instandsetzung möglich';
$object_damage_status_set['repair_scheduled'] = 'Instandsetzung geplant';
$object_damage_status_set['repaired'] = 'Repariert';
$object_damage_status_set['irreparable'] = 'Nicht reparierbar';
declare(strict_types = 1);
array (
'object_damage_status_set' =>
array (
'identified' => 'Schaden identifiziert',
'repair_possible' => 'Instandsetzung möglich',
'repair_scheduled' => 'Instandsetzung geplant',
'repaired' => 'Repariert',
'irreparable' => 'Nicht reparierbar',
),
)

@ -1,3 +1,9 @@
<?PHP
$object_damage_types_set['water_damage'] = 'Wasserschaden';
$object_damage_types_set['breakage'] = 'Bruchschaden';
declare(strict_types = 1);
array (
'object_damage_types_set' =>
array (
'water_damage' => 'Wasserschaden',
'breakage' => 'Bruchschaden',
),
)

@ -1,6 +1,12 @@
<?PHP
$object_form_set['cube'] = 'Würfel';
$object_form_set['cuboid'] = 'Quader';
$object_form_set['sphere'] = 'Kugel';
$object_form_set['cone'] = 'Kegel';
$object_form_set['cylinder'] = 'Zylinder';
declare(strict_types = 1);
array (
'object_form_set' =>
array (
'cube' => 'Würfel',
'cuboid' => 'Quader',
'sphere' => 'Kugel',
'cone' => 'Kegel',
'cylinder' => 'Zylinder',
),
)

@ -1,7 +1,13 @@
<?PHP
$object_publication_background['0'] = 'Abbildung veröffentlicht';
$object_publication_background['1'] = 'Transkript veröffentlicht';
$object_publication_background['2'] = 'besprochen';
$object_publication_background['3'] = 'rezensiert';
$object_publication_background['4'] = 'referenziert';
$object_publication_background['5'] = 'beworben';
declare(strict_types = 1);
array (
'object_publication_background' =>
array (
0 => 'Abbildung veröffentlicht',
1 => 'Transkript veröffentlicht',
2 => 'besprochen',
3 => 'rezensiert',
4 => 'referenziert',
5 => 'beworben',
),
)

@ -1,8 +1,14 @@
<?PHP
$object_status['owned'] = 'Eigentum des Museums';
$object_status['permanent_loan'] = 'Dauerleihe';
$object_status['borrowed'] = 'Geliehen';
$object_status['to_check_for_gift'] = 'Zur Prüfung im Museum (Schenkung)';
$object_status['to_check'] = 'Zur Prüfung im Museum';
$object_status['deaccessed'] = 'Deakzessiert';
$object_status['third_party_property'] = 'Fremdeigentum';
declare(strict_types = 1);
array (
'object_status' =>
array (
'owned' => 'Eigentum des Museums',
'permanent_loan' => 'Dauerleihe',
'borrowed' => 'Geliehen',
'to_check_for_gift' => 'Zur Prüfung im Museum (Schenkung)',
'to_check' => 'Zur Prüfung im Museum',
'deaccessed' => 'Deakzessiert',
'third_party_property' => 'Fremdeigentum',
),
)

@ -1,7 +1,13 @@
<?PHP
$phone_types['work'] = 'Arbeit';
$phone_types['home'] = 'Daheim';
$phone_types['mobile'] = 'Mobil';
$phone_types['work mobile'] = 'Mobil: Arbeit';
$phone_types['fax'] = 'Fax';
$phone_types['fax work'] = 'Fax: Arbeit';
declare(strict_types = 1);
array (
'phone_types' =>
array (
'work' => 'Arbeit',
'home' => 'Daheim',
'mobile' => 'Mobil',
'work mobile' => 'Mobil: Arbeit',
'fax' => 'Fax',
'fax work' => 'Fax: Arbeit',
),
)

@ -1,10 +1,16 @@
<?PHP
$tlPlacetypes['0'] = 'Administrativ';
$tlPlacetypes['1'] = 'Historisch';
$tlPlacetypes['2'] = 'Region';
$tlPlacetypes['3'] = 'Straße';
$tlPlacetypes['4'] = 'Gebäude';
$tlPlacetypes['5'] = 'Berg - Gebirge';
$tlPlacetypes['6'] = 'Wald';
$tlPlacetypes['7'] = 'Gewässer';
$tlPlacetypes['8'] = 'Insel';
declare(strict_types = 1);
array (
'tlPlacetypes' =>
array (
0 => 'Administrativ',
1 => 'Historisch',
2 => 'Region',
3 => 'Straße',
4 => 'Gebäude',
5 => 'Berg - Gebirge',
6 => 'Wald',
7 => 'Gewässer',
8 => 'Insel',
),
)

@ -1,5 +1,11 @@
<?PHP
$podcast_contributor_roles['onair'] = 'Sprecher';
$podcast_contributor_roles['recording'] = 'Aufnahme';
$podcast_contributor_roles['technical_support'] = 'Technik';
$podcast_contributor_roles['organization'] = 'Organisation';
declare(strict_types = 1);
array (
'podcast_contributor_roles' =>
array (
'onair' => 'Sprecher',
'recording' => 'Aufnahme',
'technical_support' => 'Technik',
'organization' => 'Organisation',
),
)

@ -1,13 +1,19 @@
<?PHP
$position_set['left'] = 'Links';
$position_set['top_left'] = 'Oben links';
$position_set['top'] = 'Oben';
$position_set['top_right'] = 'Oben rechts';
$position_set['right'] = 'Rechts';
$position_set['bottom_right'] = 'Unten rechts';
$position_set['bottom'] = 'Unten';
$position_set['bottom_left'] = 'Unten links';
$position_set['center'] = 'Mittig';
$position_set['rear_side'] = 'Rückseite';
$position_set['edge'] = 'Rand';
$position_set['other'] = 'Weiteres';
declare(strict_types = 1);
array (
'position_set' =>
array (
'left' => 'Links',
'top_left' => 'Oben links',
'top' => 'Oben',
'top_right' => 'Oben rechts',
'right' => 'Rechts',
'bottom_right' => 'Unten rechts',
'bottom' => 'Unten',
'bottom_left' => 'Unten links',
'center' => 'Mittig',
'rear_side' => 'Rückseite',
'edge' => 'Rand',
'other' => 'Weiteres',
),
)

@ -1,15 +1,21 @@
<?PHP
$process_types['project'] = 'Projekt';
$process_types['grant_application'] = 'Förderantrag';
$process_types['exhibition'] = 'Ausstellung';
$process_types['appointment'] = 'Veranstaltung';
$process_types['loan_incoming'] = 'Leihverkehr (eingehend)';
$process_types['loan_outgoing'] = 'Leihverkehr (ausgehend)';
$process_types['employment_ad'] = 'Stellenausschreibung';
$process_types['purchase'] = 'Ankauf';
$process_types['deaccession'] = 'Deakzession';
$process_types['construction'] = 'Baumaßnahme';
$process_types['pest_control_campaign'] = 'Schädlingsbekämpfungs-Kampagne';
$process_types['pr_campaign'] = 'PR-Kampagne';
$process_types['relocation'] = 'Umzug';
$process_types['discussion'] = 'Diskussion / Abstimmung';
declare(strict_types = 1);
array (
'process_types' =>
array (
'project' => 'Projekt',
'grant_application' => 'Förderantrag',
'exhibition' => 'Ausstellung',
'appointment' => 'Veranstaltung',
'loan_incoming' => 'Leihverkehr (eingehend)',
'loan_outgoing' => 'Leihverkehr (ausgehend)',
'employment_ad' => 'Stellenausschreibung',
'purchase' => 'Ankauf',
'deaccession' => 'Deakzession',
'construction' => 'Baumaßnahme',
'pest_control_campaign' => 'Schädlingsbekämpfungs-Kampagne',
'pr_campaign' => 'PR-Kampagne',
'relocation' => 'Umzug',
'discussion' => 'Diskussion / Abstimmung',
),
)

@ -1,3 +1,9 @@
<?PHP
$recording_types_set['audio'] = 'Audio';
$recording_types_set['video'] = 'Video';
declare(strict_types = 1);
array (
'recording_types_set' =>
array (
'audio' => 'Audio',
'video' => 'Video',
),
)

@ -1,4 +1,10 @@
<?PHP
$research_status['bad'] = 'Nicht gut erforscht';
$research_status['medium'] = 'Teilweise erforscht';
$research_status['good'] = 'Gut erforscht';
declare(strict_types = 1);
array (
'research_status' =>
array (
'bad' => 'Nicht gut erforscht',
'medium' => 'Teilweise erforscht',
'good' => 'Gut erforscht',
),
)

@ -1,9 +1,15 @@
<?PHP
$source_type_set['article'] = 'Artikel';
$source_type_set['inbook'] = 'Artikel in Sammelband';
$source_type_set['book'] = 'Buch';
$source_type_set['phdthesis'] = 'Doktorarbeit';
$source_type_set['electronical'] = 'Elektronische Resource';
$source_type_set['misc'] = 'Weiteres';
$source_type_set['patent'] = 'Patentschrift';
$source_type_set['unpublished'] = 'Unveröffentlicht';
declare(strict_types = 1);
array (
'source_type_set' =>
array (
'article' => 'Artikel',
'inbook' => 'Artikel in Sammelband',
'book' => 'Buch',
'phdthesis' => 'Doktorarbeit',
'electronical' => 'Elektronische Resource',
'misc' => 'Weiteres',
'patent' => 'Patentschrift',
'unpublished' => 'Unveröffentlicht',
),
)

@ -1,3 +1,9 @@
<?PHP
$space_access_status['enter'] = 'Eintreten';
$space_access_status['leave'] = 'Verlassen';
declare(strict_types = 1);
array (
'space_access_status' =>
array (
'enter' => 'Eintreten',
'leave' => 'Verlassen',
),
)

@ -1,12 +1,18 @@
<?PHP
$space_types['building'] = 'Gebäude';
$space_types['depot'] = 'Depotraum';
$space_types['utility_room'] = 'Allzweckraum';
$space_types['exhibition_room'] = 'Ausstellungsraum';
$space_types['display_cabinet'] = 'Vitrine';
$space_types['shelf'] = 'Regal';
$space_types['box'] = 'Kiste';
$space_types['folder'] = 'Mappe';
$space_types['office'] = 'Büro';
$space_types['floor'] = 'Stockwerk';
$space_types['hallway'] = 'Flur';
declare(strict_types = 1);
array (
'space_types' =>
array (
'building' => 'Gebäude',
'depot' => 'Depotraum',
'utility_room' => 'Allzweckraum',
'exhibition_room' => 'Ausstellungsraum',
'display_cabinet' => 'Vitrine',
'shelf' => 'Regal',
'box' => 'Kiste',
'folder' => 'Mappe',
'office' => 'Büro',
'floor' => 'Stockwerk',
'hallway' => 'Flur',
),
)

@ -1,5 +1,11 @@
<?PHP
$syndication_repos['ddb'] = 'Deutsche Digitale Bibliothek (DDB)';
$syndication_repos['europeana'] = 'Europeana';
$syndication_repos['smb-digital'] = 'SMB-digital';
$syndication_repos['kalliope-verbund'] = 'Kalliope Verbund';
declare(strict_types = 1);
array (
'syndication_repos' =>
array (
'ddb' => 'Deutsche Digitale Bibliothek (DDB)',
'europeana' => 'Europeana',
'smb-digital' => 'SMB-digital',
'kalliope-verbund' => 'Kalliope Verbund',
),
)

@ -1,4 +1,10 @@
<?PHP
$timing_intervals_set['weekly'] = 'Wöchentlich';
$timing_intervals_set['monthly'] = 'Monatlich';
$timing_intervals_set['annual'] = 'Jährlich';
declare(strict_types = 1);
array (
'timing_intervals_set' =>
array (
'weekly' => 'Wöchentlich',
'monthly' => 'Monatlich',
'annual' => 'Jährlich',
),
)

@ -1,6 +1,12 @@
<?PHP
$title_types_set[''] = ' ';
$title_types_set['Science'] = 'Wissenschaft';
$title_types_set['Everyday speech'] = 'Alltagssprache';
$title_types_set['Colloquial speech'] = 'Umgangssprache';
$title_types_set['Dialect'] = 'Dialekt';
declare(strict_types = 1);
array (
'title_types_set' =>
array (
'' => ' ',
'Science' => 'Wissenschaft',
'Everyday speech' => 'Alltagssprache',
'Colloquial speech' => 'Umgangssprache',
'Dialect' => 'Dialekt',
),
)

@ -1,6 +1,12 @@
<?PHP
$todo_status['suggested'] = 'Vorgeschlagen';
$todo_status['planned'] = 'Geplant';
$todo_status['in_progress'] = 'In Arbeit';
$todo_status['done'] = 'Getan';
$todo_status['cancelled'] = 'Abgebrochen';
declare(strict_types = 1);
array (
'todo_status' =>
array (
'suggested' => 'Vorgeschlagen',
'planned' => 'Geplant',
'in_progress' => 'In Arbeit',
'done' => 'Getan',
'cancelled' => 'Abgebrochen',
),
)

@ -1,7 +1,13 @@
<?PHP
$units_length_set['m'] = 'm';
$units_length_set['dm'] = 'dm';
$units_length_set['cm'] = 'cm';
$units_length_set['mm'] = 'mm';
$units_length_set['ft'] = 'Fuß';
$units_length_set['in'] = 'Zoll';
declare(strict_types = 1);
array (
'units_length_set' =>
array (
'm' => 'm',
'dm' => 'dm',
'cm' => 'cm',
'mm' => 'mm',
'ft' => 'Fuß',
'in' => 'Zoll',
),
)

@ -1,4 +1,10 @@
<?PHP
$units_weight_set['t'] = 't';
$units_weight_set['kg'] = 'kg';
$units_weight_set['g'] = 'g';
declare(strict_types = 1);
array (
'units_weight_set' =>
array (
't' => 't',
'kg' => 'kg',
'g' => 'g',
),
)

@ -1,10 +1,16 @@
<?PHP
$actor_variant_types_set['birth_name'] = 'Birth name';
$actor_variant_types_set['married_name'] = 'Married name';
$actor_variant_types_set['monastic_name'] = 'Monastic name';
$actor_variant_types_set['pseudonym'] = 'Pseudonym';
$actor_variant_types_set['regnal_name'] = 'Regnal name';
$actor_variant_types_set['nickname'] = 'Nickname';
$actor_variant_types_set['artist_name'] = 'Artist name';
$actor_variant_types_set['civil_name'] = 'Civil name';
$actor_variant_types_set['generic_other_name'] = 'Alternative Name (generic)';
declare(strict_types = 1);
array (
'actor_variant_types_set' =>
array (
'birth_name' => 'Birth name',
'married_name' => 'Married name',
'monastic_name' => 'Monastic name',
'pseudonym' => 'Pseudonym',
'regnal_name' => 'Regnal name',
'nickname' => 'Nickname',
'artist_name' => 'Artist name',
'civil_name' => 'Civil name',
'generic_other_name' => 'Alternative Name (generic)',
),
)

@ -1,4 +1,10 @@
<?PHP
$appointment_attendance_modes['offline'] = 'Offline';
$appointment_attendance_modes['online'] = 'Online';
$appointment_attendance_modes['mixed'] = 'Offline and online';
declare(strict_types = 1);
array (
'appointment_attendance_modes' =>
array (
'offline' => 'Offline',
'online' => 'Online',
'mixed' => 'Offline and online',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_cancellation_status_set['scheduled_done'] = 'Scheduled or done as planned';
$appointment_cancellation_status_set['cancelled'] = 'Cancelled';
declare(strict_types = 1);
array (
'appointment_cancellation_status_set' =>
array (
'scheduled_done' => 'Scheduled or done as planned',
'cancelled' => 'Cancelled',
),
)

@ -1,3 +1,9 @@
<?PHP
$appointment_contributor_roles['organizer'] = 'Organizer';
$appointment_contributor_roles['presenter'] = 'Presenter';
declare(strict_types = 1);
array (
'appointment_contributor_roles' =>
array (
'organizer' => 'Organizer',
'presenter' => 'Presenter',
),
)

@ -1,5 +1,11 @@
<?PHP
$appointment_status['scheduled'] = 'Scheduled';
$appointment_status['cancelled'] = 'Cancelled';
$appointment_status['moved_online'] = 'Moved online';
$appointment_status['postponed'] = 'Postponed';
declare(strict_types = 1);
array (
'appointment_status' =>
array (
'scheduled' => 'Scheduled',
'cancelled' => 'Cancelled',
'moved_online' => 'Moved online',
'postponed' => 'Postponed',
),
)

@ -1,3 +1,9 @@
<?PHP
$attendance_status_set['offline'] = 'Offline';
$attendance_status_set['online'] = 'Online';
declare(strict_types = 1);
array (
'attendance_status_set' =>
array (
'offline' => 'Offline',
'online' => 'Online',
),
)

@ -1,5 +1,11 @@
<?PHP
$closer_location_types_set['0'] = '';
$closer_location_types_set['1'] = 'Place of recording';
$closer_location_types_set['2'] = 'Place of discovery';
$closer_location_types_set['3'] = 'Former place';
declare(strict_types = 1);
array (
'closer_location_types_set' =>
array (
0 => '',
1 => 'Place of recording',
2 => 'Place of discovery',
3 => 'Former place',
),
)

@ -1,17 +1,23 @@
<?PHP
$colors_set['black'] = 'Black';
$colors_set['green'] = 'Green';
$colors_set['silver'] = 'Silver';
$colors_set['lime'] = 'Lime';
$colors_set['gray'] = 'Gray';
$colors_set['olive'] = 'Olive';
$colors_set['white'] = 'White';
$colors_set['yellow'] = 'Yellow';
$colors_set['maroon'] = 'Maroon';
$colors_set['navy'] = 'Navy';
$colors_set['red'] = 'Red';
$colors_set['blue'] = 'Blue';
$colors_set['purple'] = 'Purple';
$colors_set['teal'] = 'Teal';
$colors_set['fuchsia'] = 'Fuchsia';
$colors_set['aqua'] = 'Aqua';
declare(strict_types = 1);
array (
'colors_set' =>
array (
'black' => 'Black',
'green' => 'Green',
'silver' => 'Silver',
'lime' => 'Lime',
'gray' => 'Gray',
'olive' => 'Olive',
'white' => 'White',
'yellow' => 'Yellow',
'maroon' => 'Maroon',
'navy' => 'Navy',
'red' => 'Red',
'blue' => 'Blue',
'purple' => 'Purple',
'teal' => 'Teal',
'fuchsia' => 'Fuchsia',
'aqua' => 'Aqua',
),
)

@ -1,7 +1,13 @@
<?PHP
$conservation_report_type_set['damage'] = 'Damage';
$conservation_report_type_set['conservation'] = 'Conservation';
$conservation_report_type_set['condition'] = 'Condition';
$conservation_report_type_set['restoration'] = 'Restoration';
$conservation_report_type_set['other_report'] = 'Other report';
$conservation_report_type_set['other'] = 'Other report';
declare(strict_types = 1);
array (
'conservation_report_type_set' =>
array (
'damage' => 'Damage',
'conservation' => 'Conservation',
'condition' => 'Condition',
'restoration' => 'Restoration',
'other_report' => 'Other report',
'other' => 'Other report',
),
)

@ -1,21 +1,30 @@
<?PHP
$currencies_set['eu-EUR'] = 'Euro';
$currencies_set['de-DM'] = 'Deutsche Mark';
$currencies_set['de-RM'] = 'Reichsmark (Germany)';
$currencies_set['es-Real'] = 'Spanish Real';
$currencies_set['hu-Ft'] = 'Forint';
$currencies_set['hu-Lari'] = 'Lari';
$currencies_set['hu-Pengő'] = 'Pengő';
$currencies_set['id-IDR'] = 'Indonesian Rupiah';
$currencies_set['pl-Złoty'] = 'Złoty';
$currencies_set['us-USD'] = 'US Dollar';
$currencies_set['ddr-Mark'] = 'Mark (GDR)';
$currencies_set['ddr-MDN'] = 'MDN (GDR)';
$currencies_set['hu-Korona'] = 'Austro-Hungarian krone';
$currencies_set['fr-FF'] = 'French Franc';
$currencies_set['uk-GBP'] = 'Pound Sterling';
$currencies_set['by-BYN'] = 'Belarusian ruble';
$currencies_set['ru-RUB'] = 'Russian ruble';
$currencies_set['su-SUR'] = 'Soviet ruble';
$currencies_set['ua-UAH'] = 'Ukrainian hryvnia';
$license_full_names['CC BY-NC-ND'] = 'Attribution - Non Commercial - No Derivates';
declare(strict_types = 1);
array (
'currencies_set' =>
array (
'eu-EUR' => 'Euro',
'de-DM' => 'Deutsche Mark',
'de-RM' => 'Reichsmark (Germany)',
'es-Real' => 'Spanish Real',
'hu-Ft' => 'Forint',
'hu-Lari' => 'Lari',
'hu-Pengő' => 'Pengő',
'id-IDR' => 'Indonesian Rupiah',
'pl-Złoty' => 'Złoty',
'us-USD' => 'US Dollar',
'ddr-Mark' => 'Mark (GDR)',
'ddr-MDN' => 'MDN (GDR)',
'hu-Korona' => 'Austro-Hungarian krone',
'fr-FF' => 'French Franc',
'uk-GBP' => 'Pound Sterling',
'by-BYN' => 'Belarusian ruble',
'ru-RUB' => 'Russian ruble',
'su-SUR' => 'Soviet ruble',
'ua-UAH' => 'Ukrainian hryvnia',
),
'license_full_names' =>
array (
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
),
)

@ -1,5 +1,11 @@
<?PHP
$custom_report_targets_set['object_single'] = 'Single object';
$custom_report_targets_set['object_list'] = 'Multiple objects';
$custom_report_targets_set['loan'] = 'Loan';
$custom_report_targets_set['exhibition'] = 'Exhibition';
declare(strict_types = 1);
array (
'custom_report_targets_set' =>
array (
'object_single' => 'Single object',
'object_list' => 'Multiple objects',
'loan' => 'Loan',
'exhibition' => 'Exhibition',
),
)

@ -1,4 +1,10 @@
<?PHP
$disposal_method_set['sold'] = 'Sold';
$disposal_method_set['destroyed'] = 'Destroyed';
$disposal_method_set['garbage'] = 'Thrown away / garbage collection';
declare(strict_types = 1);
array (
'disposal_method_set' =>
array (
'sold' => 'Sold',
'destroyed' => 'Destroyed',
'garbage' => 'Thrown away / garbage collection',
),
)

@ -1,19 +1,25 @@
<?PHP
$entry_types['0'] = '';
$entry_types['1'] = 'Donation';
$entry_types['2'] = 'Purchase';
$entry_types['3'] = 'Excavation';
$entry_types['4'] = 'Emergency Rescue';
$entry_types['5'] = 'Inheritance';
$entry_types['6'] = 'Endowment';
$entry_types['7'] = 'Dispossession';
$entry_types['8'] = 'Original condition';
$entry_types['9'] = 'Loan';
$entry_types['10'] = 'Exchange';
$entry_types['11'] = 'In-house production';
$entry_types['12'] = 'Material Strain (Törzsanyag)';
$entry_types['14'] = 'Vorlass';
$entry_types['15'] = 'Finding';
$entry_types['98'] = 'To be checked';
$entry_types['99'] = 'Other legal acquisition';
$entry_types['16'] = 'Permanent loan';
declare(strict_types = 1);
array (
'entry_types' =>
array (
0 => '',
1 => 'Donation',
2 => 'Purchase',
3 => 'Excavation',
4 => 'Emergency Rescue',
5 => 'Inheritance',
6 => 'Endowment',
7 => 'Dispossession',
8 => 'Original condition',
9 => 'Loan',
10 => 'Exchange',
11 => 'In-house production',
12 => 'Material Strain (Törzsanyag)',
14 => 'Vorlass',
15 => 'Finding',
98 => 'To be checked',
99 => 'Other legal acquisition',
16 => 'Permanent loan',
),
)

@ -1,49 +1,55 @@
<?PHP
$eventname['1'] = 'Hergestellt';
$eventname['2'] = 'Gefunden';
$eventname['3'] = 'Veröffentlicht';
$eventname['4'] = 'Vorlagenerstellung';
$eventname['5'] = 'Wurde abgebildet (Akteur)';
$eventname['6'] = 'Wurde genutzt';
$eventname['7'] = 'Verfasst';
$eventname['8'] = 'Gesammelt';
$eventname['9'] = 'Gemalt';
$eventname['10'] = 'Aufgenommen';
$eventname['11'] = 'Empfangen';
$eventname['12'] = 'Druckplatte hergestellt';
$eventname['13'] = 'Abgeschickt';
$eventname['14'] = 'Ausgefertigt';
$eventname['15'] = 'Unterzeichnet';
$eventname['16'] = 'Erstbeschreibung';
$eventname['19'] = 'Gezeichnet';
$eventname['20'] = 'Abgeschrieben';
$eventname['21'] = 'Hat gelebt';
$eventname['22'] = '[Geographischer Bezug]';
$eventname['23'] = '[Person-Körperschaft-Bezug]';
$eventname['24'] = '[Zeitbezug]';
$eventname['25'] = 'Beauftragt';
$eventname['26'] = 'Gedruckt';
$eventname['27'] = 'Gesprochen';
$eventname['28'] = 'Gesungen';
$eventname['29'] = 'Dekor entworfen';
$eventname['30'] = 'Form entworfen';
$eventname['31'] = 'Modelliert';
$eventname['32'] = 'Signiert';
$eventname['33'] = 'Wurde erwähnt';
$eventname['34'] = 'Vergraben';
$eventname['35'] = 'Geistige Schöpfung';
$eventname['36'] = 'Wurde abgebildet (Ort)';
$eventname['37'] = 'Bemalt';
$eventname['38'] = 'Illustriert';
$eventname['39'] = 'Assembled';
$eventname['40'] = 'Auctioned';
$eventname['41'] = 'Bought';
$eventname['42'] = 'Owned';
$eventname['43'] = 'Sold';
$eventname['44'] = 'Restorated';
$eventname['45'] = 'Damaged';
$eventname['46'] = 'Destroyed';
$eventname['47'] = 'Lost';
$eventname['48'] = 'Edited';
$eventname['49'] = 'Donated / present';
$eventname['50'] = 'Inherited';
declare(strict_types = 1);
array (
'eventname' =>
array (
1 => 'Hergestellt',
2 => 'Gefunden',
3 => 'Veröffentlicht',
4 => 'Vorlagenerstellung',
5 => 'Wurde abgebildet (Akteur)',
6 => 'Wurde genutzt',
7 => 'Verfasst',
8 => 'Gesammelt',
9 => 'Gemalt',
10 => 'Aufgenommen',
11 => 'Empfangen',
12 => 'Druckplatte hergestellt',
13 => 'Abgeschickt',
14 => 'Ausgefertigt',
15 => 'Unterzeichnet',
16 => 'Erstbeschreibung',
19 => 'Gezeichnet',
20 => 'Abgeschrieben',
21 => 'Hat gelebt',
22 => '[Geographischer Bezug]',
23 => '[Person-Körperschaft-Bezug]',
24 => '[Zeitbezug]',
25 => 'Beauftragt',
26 => 'Gedruckt',
27 => 'Gesprochen',
28 => 'Gesungen',
29 => 'Dekor entworfen',
30 => 'Form entworfen',
31 => 'Modelliert',
32 => 'Signiert',
33 => 'Wurde erwähnt',
34 => 'Vergraben',
35 => 'Geistige Schöpfung',
36 => 'Wurde abgebildet (Ort)',
37 => 'Bemalt',
38 => 'Illustriert',
39 => 'Assembled',
40 => 'Auctioned',
41 => 'Bought',
42 => 'Owned',
43 => 'Sold',
44 => 'Restorated',
45 => 'Damaged',
46 => 'Destroyed',
47 => 'Lost',
48 => 'Edited',
49 => 'Donated / present',
50 => 'Inherited',
),
)

Some files were not shown because too many files have changed in this diff Show More