Compare commits
108 Commits
04b1e8d678
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 843bfd0535 | |||
| 6eba4d3a6d | |||
| 3ff63d509f | |||
| 76b69ac82f | |||
| a3a24ace8e | |||
| 8f307cf3d9 | |||
| 4fbf5b51c4 | |||
| 55f334dd18 | |||
| 54654923bf | |||
| d65c5c224a | |||
| 0ce64a2ac6 | |||
| f8dd39a511 | |||
| 2784220447 | |||
| 63bf5112fd | |||
| 50c5468e74 | |||
| 2c28afedef | |||
| b77cba66a2 | |||
| df66a3a800 | |||
| a832ea75b7 | |||
| e243e3cceb | |||
| 9d8373c1fe | |||
| 357308e8a4 | |||
| 9ad49843cd | |||
| 0be5ccf2d4 | |||
| bd508e24ff | |||
| b032391f23 | |||
| 1bb2710cad | |||
| a7e3056f09 | |||
| ec5a15a8b1 | |||
| b3adbadf7e | |||
| 63f12e097f | |||
| d00a827bab | |||
| 26d1fa3365 | |||
| 63d9d55cde | |||
| 1563a72bf9 | |||
| eefedde50c | |||
| 6d8b713c07 | |||
| 8128c284df | |||
| 7bfd222f94 | |||
| a2fa7b7bf2 | |||
| 76256a823c | |||
| 2619277713 | |||
| 690f60a307 | |||
| 1aff60d35e | |||
| b8f0d94647 | |||
| ffb9c18d93 | |||
| 715fd84d98 | |||
| f33074a662 | |||
| 78c35964fb | |||
| eb9834ca20 | |||
| e68daaa9e6 | |||
| 974fc860c6 | |||
| 7623a0314d | |||
| eb42b7f0d8 | |||
| 7dad733945 | |||
| 9a92d4fdda | |||
| e863da6ffe | |||
| ff2a294832 | |||
| 33854d23a7 | |||
| 17d7c33a10 | |||
| 49b1e7a428 | |||
| eff355e85c | |||
| 90e20227f7 | |||
| 0a13faf9ac | |||
| d0cceb7d6e | |||
| 7f50c80511 | |||
| bc30d095fa | |||
| fcce14091b | |||
| 7db238a1ba | |||
| 2a4d4b388a | |||
| 15f070d98e | |||
| 01f7a9e106 | |||
| af6be30740 | |||
| a114d7d320 | |||
| 992922cb36 | |||
| 172ef839d4 | |||
| 5ba11ffba9 | |||
| edcab2f19a | |||
| 096d688163 | |||
| 1573c2e973 | |||
| 5c442b8115 | |||
| 8a2501a62c | |||
| eea900820d | |||
| 8ea0cd2c7e | |||
| 822ad6383e | |||
| 80bc9b0b98 | |||
| 64e2ae642a | |||
| 524eadbbd2 | |||
| 1060ff0dac | |||
| 8272c3c186 | |||
| 808895ce18 | |||
| 8d83978b4f | |||
| 41d53684ff | |||
| eced0014e7 | |||
| 0693c34f99 | |||
| f104478dfb | |||
| 00cb8e7a04 | |||
| 604d64c160 | |||
| 03b5464bb8 | |||
| 388b7f3db0 | |||
| 2ee5b12692 | |||
| 6922772f3e | |||
| 08aa8753aa | |||
| 7be327ff48 | |||
| 8313264c58 | |||
| 69d86e4bf5 | |||
| a8471545c6 | |||
| dcd03ce585 |
@@ -1,10 +1,13 @@
|
||||
<?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);
|
||||
$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,7 @@
|
||||
<?PHP
|
||||
$appointment_attendance_modes['offline'] = 'Offline';
|
||||
$appointment_attendance_modes['online'] = 'Online';
|
||||
$appointment_attendance_modes['mixed'] = 'Offline and online';
|
||||
declare(strict_types = 1);
|
||||
$appointment_attendance_modes = array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
'mixed' => 'Offline and online',
|
||||
);
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<?PHP
|
||||
$appointment_cancellation_status_set['scheduled_done'] = 'Scheduled or done as planned';
|
||||
$appointment_cancellation_status_set['cancelled'] = 'Cancelled';
|
||||
declare(strict_types = 1);
|
||||
$appointment_cancellation_status_set = array (
|
||||
'scheduled_done' => 'Scheduled or done as planned',
|
||||
'cancelled' => 'Cancelled',
|
||||
);
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<?PHP
|
||||
$appointment_contributor_roles['organizer'] = 'Organizer';
|
||||
$appointment_contributor_roles['presenter'] = 'Presenter';
|
||||
declare(strict_types = 1);
|
||||
$appointment_contributor_roles = array (
|
||||
'organizer' => 'Organizer',
|
||||
'presenter' => 'Presenter',
|
||||
);
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
<?PHP
|
||||
$appointment_status['scheduled'] = 'Scheduled';
|
||||
$appointment_status['cancelled'] = 'Cancelled';
|
||||
$appointment_status['moved_online'] = 'Moved online';
|
||||
$appointment_status['postponed'] = 'Postponed';
|
||||
declare(strict_types = 1);
|
||||
$appointment_status = array (
|
||||
'scheduled' => 'Scheduled',
|
||||
'cancelled' => 'Cancelled',
|
||||
'moved_online' => 'Moved online',
|
||||
'postponed' => 'Postponed',
|
||||
);
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<?PHP
|
||||
$attendance_status_set['offline'] = 'Offline';
|
||||
$attendance_status_set['online'] = 'Online';
|
||||
declare(strict_types = 1);
|
||||
$attendance_status_set = array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
);
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
<?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);
|
||||
$closer_location_types_set = array (
|
||||
0 => '',
|
||||
1 => 'Place of recording',
|
||||
2 => 'Place of discovery',
|
||||
3 => 'Former place',
|
||||
);
|
||||
|
||||
@@ -1,17 +1,20 @@
|
||||
<?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);
|
||||
$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,10 @@
|
||||
<?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);
|
||||
$conservation_report_type_set = array (
|
||||
'damage' => 'Damage',
|
||||
'conservation' => 'Conservation',
|
||||
'condition' => 'Condition',
|
||||
'restoration' => 'Restoration',
|
||||
'other_report' => 'Other report',
|
||||
'other' => 'Other report',
|
||||
);
|
||||
|
||||
@@ -1,21 +1,28 @@
|
||||
<?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);
|
||||
$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',
|
||||
'ch-CHF' => 'Swiss franc',
|
||||
'ua-UAK' => 'Ukrainian karbovanets',
|
||||
);
|
||||
$license_full_names = array (
|
||||
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
|
||||
);
|
||||
|
||||
8
ar/custom_report_targets_set.php
Normal file
8
ar/custom_report_targets_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$custom_report_targets_set = array (
|
||||
'object_single' => 'Single object',
|
||||
'object_list' => 'Multiple objects',
|
||||
'loan' => 'Loan',
|
||||
'exhibition' => 'Exhibition',
|
||||
);
|
||||
@@ -1,4 +1,7 @@
|
||||
<?PHP
|
||||
$disposal_method_set['sold'] = 'Sold';
|
||||
$disposal_method_set['destroyed'] = 'Destroyed';
|
||||
$disposal_method_set['garbage'] = 'Thrown away / garbage collection';
|
||||
declare(strict_types = 1);
|
||||
$disposal_method_set = array (
|
||||
'sold' => 'Sold',
|
||||
'destroyed' => 'Destroyed',
|
||||
'garbage' => 'Thrown away / garbage collection',
|
||||
);
|
||||
|
||||
@@ -1,19 +1,22 @@
|
||||
<?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);
|
||||
$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',
|
||||
);
|
||||
|
||||
8
ar/eventtype_groups.php
Normal file
8
ar/eventtype_groups.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$eventtype_groups = array (
|
||||
'production' => 'Production',
|
||||
'post_production' => 'Post-production',
|
||||
'pre_production' => 'Pre-production',
|
||||
'no_production' => 'No production',
|
||||
);
|
||||
@@ -1,49 +1,60 @@
|
||||
<?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);
|
||||
$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',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
58 => 'Modified',
|
||||
);
|
||||
|
||||
60
ar/eventtype_persinst.php
Normal file
60
ar/eventtype_persinst.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_persinst = 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 by',
|
||||
40 => 'auctioned by',
|
||||
41 => 'bought by',
|
||||
42 => 'owned by',
|
||||
43 => 'sold by',
|
||||
44 => 'restorated by',
|
||||
45 => 'damaged by',
|
||||
46 => 'destroyed by',
|
||||
47 => 'lost by',
|
||||
48 => 'edited by',
|
||||
49 => 'donated by',
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
58 => 'Modified by',
|
||||
);
|
||||
60
ar/eventtype_place.php
Normal file
60
ar/eventtype_place.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_place = 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 in',
|
||||
40 => 'auctioned in',
|
||||
41 => 'bought in',
|
||||
42 => 'owned in',
|
||||
43 => 'sold in',
|
||||
44 => 'restorated in',
|
||||
45 => 'damaged in',
|
||||
46 => 'destroyed in',
|
||||
47 => 'lost in',
|
||||
48 => 'edited in',
|
||||
49 => 'donated / given as present in',
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
58 => 'modified in',
|
||||
);
|
||||
60
ar/eventtype_time.php
Normal file
60
ar/eventtype_time.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_time = 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 at',
|
||||
40 => 'auctioned at',
|
||||
41 => 'bought at',
|
||||
42 => 'owned at',
|
||||
43 => 'sold at',
|
||||
44 => 'restorated at',
|
||||
45 => 'damaged at',
|
||||
46 => 'destroyed at',
|
||||
47 => 'lost at',
|
||||
48 => 'edited at',
|
||||
49 => 'donated at',
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
58 => 'modified at',
|
||||
);
|
||||
@@ -1 +0,0 @@
|
||||
[]
|
||||
@@ -1,6 +1,9 @@
|
||||
<?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);
|
||||
$exhibition_contributor_roles = array (
|
||||
'concept' => 'Concept',
|
||||
'curator' => 'Curator',
|
||||
'design' => 'Design',
|
||||
'coordinator' => 'Coordinator',
|
||||
'protagonist' => 'Protagonist',
|
||||
);
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<?PHP
|
||||
$gender_set['female'] = 'Female';
|
||||
$gender_set['male'] = 'Male';
|
||||
$gender_set['other'] = 'Other';
|
||||
declare(strict_types = 1);
|
||||
$gender_set = array (
|
||||
'female' => 'Female',
|
||||
'male' => 'Male',
|
||||
'other' => 'Other',
|
||||
);
|
||||
|
||||
10
ar/institution_basic_category_set.php
Normal file
10
ar/institution_basic_category_set.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_basic_category_set = array (
|
||||
'archive' => 'Archive',
|
||||
'library' => 'Library',
|
||||
'memorial_site' => 'Memorial site',
|
||||
'private_collection' => 'Private collection',
|
||||
'museum' => 'Museum',
|
||||
'university_collection' => 'University collection',
|
||||
);
|
||||
30
ar/institution_collection_area_set.php
Normal file
30
ar/institution_collection_area_set.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_collection_area_set = array (
|
||||
'everyday_life' => 'Everyday life',
|
||||
'archaeology' => 'Archaeology',
|
||||
'architecture' => 'Architecture',
|
||||
'history_of_mining' => 'History of mining',
|
||||
'botany' => 'Botany',
|
||||
'history_of_film' => 'History of film',
|
||||
'political_history' => 'Political history',
|
||||
'arts' => 'Arts',
|
||||
'applied_arts' => 'Applied arts',
|
||||
'agriculture' => 'Agriculture',
|
||||
'literature' => 'Literature',
|
||||
'history_of_medicine' => 'History of medicine',
|
||||
'military_history' => 'Military history',
|
||||
'mineralogy' => 'Mineralogy',
|
||||
'music' => 'Music',
|
||||
'numismatics' => 'Numismatics',
|
||||
'paleontology' => 'Paleontology',
|
||||
'personalia' => 'Personalia',
|
||||
'regional_history' => 'Regional history',
|
||||
'religion' => 'Religion',
|
||||
'technology' => 'Technology',
|
||||
'ethnography' => 'Ethnography',
|
||||
'zoology' => 'Zoology',
|
||||
);
|
||||
$institution_basic_category_set = array (
|
||||
'museum' => 'Museum',
|
||||
);
|
||||
5
ar/institution_external_id_repositories.php
Normal file
5
ar/institution_external_id_repositories.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_external_id_repositories = array (
|
||||
'hu_ksh' => 'Hungarian Central Statistical Office',
|
||||
);
|
||||
7
ar/institution_musdb_use_case_set.php
Normal file
7
ar/institution_musdb_use_case_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_musdb_use_case_set = array (
|
||||
'collection_management' => 'Collection management',
|
||||
'publication' => 'Publication',
|
||||
'collection_management_and_publication' => 'Collection management and publication',
|
||||
);
|
||||
8
ar/institution_public_private_category_set.php
Normal file
8
ar/institution_public_private_category_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_public_private_category_set = array (
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'religious' => 'Religious',
|
||||
'mixed' => 'Mixed',
|
||||
);
|
||||
@@ -1,13 +1,16 @@
|
||||
<?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);
|
||||
$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,16 @@
|
||||
<?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);
|
||||
$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,16 @@
|
||||
<?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);
|
||||
$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,6 @@
|
||||
<?PHP
|
||||
$loan_types['outgoing'] = 'Outgoing';
|
||||
$loan_types['incoming'] = 'Incoming';
|
||||
declare(strict_types = 1);
|
||||
$loan_types = array (
|
||||
'outgoing' => 'Outgoing',
|
||||
'incoming' => 'Incoming',
|
||||
);
|
||||
|
||||
@@ -1,20 +1,25 @@
|
||||
<?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);
|
||||
$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',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
||||
47
ar/measurement_type_set.php
Normal file
47
ar/measurement_type_set.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
'length_blade' => 'Length of blade',
|
||||
'height_blade' => 'Height of blade',
|
||||
'width_blade' => 'Width of blade',
|
||||
'number_of_sheets' => 'Number of sheets',
|
||||
'number_of_double_pages' => 'Number of double pages',
|
||||
'number_of_standalone_pages' => 'Number of standalone pages',
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
@@ -1,4 +1,8 @@
|
||||
<?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);
|
||||
$object_check_types_set = array (
|
||||
'condition_check' => 'Condition check',
|
||||
'completeness_check' => 'Completeness check',
|
||||
'data_correctness_check' => 'Data correctness check',
|
||||
'location_accuracy_check' => 'Check of location accuracy',
|
||||
);
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
<?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);
|
||||
$object_damage_status_set = array (
|
||||
'identified' => 'Identified',
|
||||
'repair_possible' => 'Reviewed; repair possible',
|
||||
'repair_scheduled' => 'Repair scheduled',
|
||||
'repaired' => 'Repaired',
|
||||
'irreparable' => 'Irreparable',
|
||||
);
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
<?PHP
|
||||
$object_damage_types_set['water_damage'] = 'Water damage';
|
||||
$object_damage_types_set['breakage'] = 'Breakage';
|
||||
declare(strict_types = 1);
|
||||
$object_damage_types_set = array (
|
||||
'water_damage' => 'Water damage',
|
||||
'breakage' => 'Breakage',
|
||||
'desiccation' => 'Desiccation',
|
||||
);
|
||||
|
||||
11
ar/object_document_type_set.php
Normal file
11
ar/object_document_type_set.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_document_type_set = array (
|
||||
'undefined' => 'Undefined',
|
||||
'provenance_report' => 'Provenance report',
|
||||
'purchase_contract' => 'Purchase contract',
|
||||
'restoration_report' => 'Restoration report',
|
||||
'assessment' => 'Assessment',
|
||||
'correspondence' => 'Correspondence',
|
||||
'legacy_documentation' => 'Legacy documentation',
|
||||
);
|
||||
@@ -1,6 +1,13 @@
|
||||
<?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);
|
||||
$object_form_set = array (
|
||||
'cube' => 'Cube',
|
||||
'cuboid' => 'Cuboid',
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
<?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);
|
||||
$object_publication_background = array (
|
||||
0 => 'Image published',
|
||||
1 => 'Transcript published',
|
||||
2 => 'Discussed',
|
||||
3 => 'Rezensiert',
|
||||
4 => 'Referenced',
|
||||
5 => 'Advertised',
|
||||
);
|
||||
|
||||
9
ar/object_record_status.php
Normal file
9
ar/object_record_status.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_record_status = array (
|
||||
'unlocked' => 'Unlocked',
|
||||
'locked' => 'Locked',
|
||||
'revision' => 'Revision',
|
||||
'deleted' => 'Deleted',
|
||||
'archived' => 'Archived',
|
||||
);
|
||||
8
ar/object_record_status_explica.php
Normal file
8
ar/object_record_status_explica.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_record_status_explica = array (
|
||||
'unlocked' => 'Default status. The object record can be updated.',
|
||||
'locked' => 'The object cannot be updated until the lock has been released.',
|
||||
'revision' => 'The object is currently being researched. Further updates are disabled until this research has been completed.',
|
||||
'archived' => 'E.g. for objects that have been deaccessed. Updates to the object record are suspended and the object record is marked as archived in object overviews.',
|
||||
);
|
||||
@@ -1,8 +1,11 @@
|
||||
<?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);
|
||||
$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,10 @@
|
||||
<?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);
|
||||
$phone_types = array (
|
||||
'work' => 'Work',
|
||||
'home' => 'Home',
|
||||
'mobile' => 'Mobile',
|
||||
'work mobile' => 'Work mobile',
|
||||
'fax' => 'Fax',
|
||||
'fax work' => 'Fax (Work)',
|
||||
);
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
<?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);
|
||||
$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,8 @@
|
||||
<?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);
|
||||
$podcast_contributor_roles = array (
|
||||
'onair' => 'On air',
|
||||
'recording' => 'Recording',
|
||||
'technical_support' => 'Technical support',
|
||||
'organization' => 'Organization',
|
||||
);
|
||||
|
||||
@@ -1,13 +1,29 @@
|
||||
<?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);
|
||||
$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' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
||||
@@ -1,15 +1,18 @@
|
||||
<?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);
|
||||
$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,6 @@
|
||||
<?PHP
|
||||
$recording_types_set['audio'] = 'Audio';
|
||||
$recording_types_set['video'] = 'Video';
|
||||
declare(strict_types = 1);
|
||||
$recording_types_set = array (
|
||||
'audio' => 'Audio',
|
||||
'video' => 'Video',
|
||||
);
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<?PHP
|
||||
$research_status['bad'] = 'Not researched much';
|
||||
$research_status['medium'] = 'Partly researched';
|
||||
$research_status['good'] = 'Well researched';
|
||||
declare(strict_types = 1);
|
||||
$research_status = array (
|
||||
'bad' => 'Not researched much',
|
||||
'medium' => 'Partly researched',
|
||||
'good' => 'Well researched',
|
||||
);
|
||||
|
||||
24
ar/series_contributor_role.php
Normal file
24
ar/series_contributor_role.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_contributor_role = array (
|
||||
'author' => 'Author',
|
||||
'director' => 'Director',
|
||||
'dramaturg' => 'Dramaturg',
|
||||
'production_designer' => 'Production designer',
|
||||
'costumer' => 'Costumer',
|
||||
'musician' => 'Musician',
|
||||
'choreographer' => 'Choreographer',
|
||||
'make_up_artist' => 'Make-up artist',
|
||||
'speech_trainer' => 'Speech trainer',
|
||||
'puppet_maker' => 'Puppet maker',
|
||||
'technician' => 'Technician',
|
||||
'inspector' => 'Inspector',
|
||||
'assistant' => 'Assistant',
|
||||
'actor' => 'Actor',
|
||||
'painter' => 'Painter',
|
||||
'creator' => 'Creator',
|
||||
'equipment_supplier' => 'Equipment supplier',
|
||||
'contributing_institution' => 'Contributing institution',
|
||||
'event_organizer' => 'Event organizer',
|
||||
'movement_trainer' => 'Movement trainer',
|
||||
);
|
||||
7
ar/series_place_role.php
Normal file
7
ar/series_place_role.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_place_role = array (
|
||||
'place_of_production' => 'Place of production',
|
||||
'performance_space' => 'Performance space',
|
||||
'rehearsal_space' => 'Rehearsal space',
|
||||
);
|
||||
6
ar/series_time_role.php
Normal file
6
ar/series_time_role.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_time_role = array (
|
||||
'premiere' => 'Premiere',
|
||||
'time_of_presentation' => 'Time of presentation',
|
||||
);
|
||||
7
ar/shipment_method_set.php
Normal file
7
ar/shipment_method_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$shipment_method_set = array (
|
||||
'unknown' => 'Unknown',
|
||||
'car' => 'By car',
|
||||
'ship' => 'By ship',
|
||||
);
|
||||
@@ -1,9 +1,16 @@
|
||||
<?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);
|
||||
$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',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<?PHP
|
||||
$space_access_status['enter'] = 'Enter';
|
||||
$space_access_status['leave'] = 'Leave';
|
||||
declare(strict_types = 1);
|
||||
$space_access_status = array (
|
||||
'enter' => 'Enter',
|
||||
'leave' => 'Leave',
|
||||
);
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
<?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);
|
||||
$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',
|
||||
'outdoor_area' => 'Outdoor area',
|
||||
);
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
<?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);
|
||||
$syndication_repos = array (
|
||||
'ddb' => 'German Digital Library (DDB)',
|
||||
'europeana' => 'Europeana',
|
||||
'smb-digital' => 'SMB-digital',
|
||||
'kalliope-verbund' => 'Kalliope Verbund',
|
||||
);
|
||||
|
||||
12
ar/tag_relation_type.php
Normal file
12
ar/tag_relation_type.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$tag_relation_type = array (
|
||||
'tag' => 'Tag',
|
||||
'object_type' => 'Object type',
|
||||
'material' => 'Material',
|
||||
'technique' => 'Technique',
|
||||
'display_subject' => 'Display subject',
|
||||
'topic' => 'Topic',
|
||||
'mentioned' => 'Mentioned subject',
|
||||
'taxon' => 'Taxon',
|
||||
);
|
||||
7
ar/timing_intervals_set.php
Normal file
7
ar/timing_intervals_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$timing_intervals_set = array (
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'annual' => 'Annual',
|
||||
);
|
||||
@@ -1,6 +1,11 @@
|
||||
<?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);
|
||||
$title_types_set = array (
|
||||
'' => ' ',
|
||||
'Science' => 'Science',
|
||||
'Everyday speech' => 'Everyday speech',
|
||||
'Colloquial speech' => 'Colloquial speech',
|
||||
'Dialect' => 'Dialect',
|
||||
'Professional jargon' => 'Professional jargon',
|
||||
'Sociolect' => 'Sociolect',
|
||||
);
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
<?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);
|
||||
$todo_status = array (
|
||||
'suggested' => 'Suggested',
|
||||
'planned' => 'Planned',
|
||||
'in_progress' => 'In progress',
|
||||
'done' => 'Done',
|
||||
'cancelled' => 'Cancelled',
|
||||
);
|
||||
|
||||
10
ar/transcript_status.php
Normal file
10
ar/transcript_status.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$transcript_status = array (
|
||||
'incomplete' => 'Incomplete',
|
||||
'machine_generated' => 'Machine-generated',
|
||||
'rough_draft' => 'Rough draft',
|
||||
'quality_control_failed' => 'Quality control failed',
|
||||
'quality_control_passed' => 'Quality control passed',
|
||||
'reviewed' => 'Reviewed',
|
||||
);
|
||||
10
ar/transcript_types.php
Normal file
10
ar/transcript_types.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$transcript_types = array (
|
||||
'simple_transcription' => 'Simple transcription',
|
||||
'diplomatic_transcription' => 'Diplomatic transcription',
|
||||
'critical_edition' => 'Critical edition',
|
||||
'historical_critical_edition' => 'Historical-critical edition',
|
||||
'reading_edition' => 'Reading edition',
|
||||
'constituted_text' => 'Constituted text',
|
||||
);
|
||||
6
ar/units_count_copies_set.php
Normal file
6
ar/units_count_copies_set.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
||||
10
ar/units_count_parts_set.php
Normal file
10
ar/units_count_parts_set.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
'double_pages' => 'Double pages',
|
||||
'standalone_sheets' => 'Standalone sheets',
|
||||
'written_pages' => 'Written pages',
|
||||
);
|
||||
5
ar/units_die_axis_set.php
Normal file
5
ar/units_die_axis_set.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
||||
@@ -1,7 +1,10 @@
|
||||
<?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);
|
||||
$units_length_set = array (
|
||||
'm' => 'm',
|
||||
'dm' => 'dm',
|
||||
'cm' => 'cm',
|
||||
'mm' => 'mm',
|
||||
'ft' => 'ft',
|
||||
'in' => 'inch',
|
||||
);
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<?PHP
|
||||
$units_weight_set['t'] = 't';
|
||||
$units_weight_set['kg'] = 'kg';
|
||||
$units_weight_set['g'] = 'g';
|
||||
declare(strict_types = 1);
|
||||
$units_weight_set = array (
|
||||
't' => 't',
|
||||
'kg' => 'kg',
|
||||
'g' => 'g',
|
||||
);
|
||||
|
||||
7
ar/vocabulary_redaction_level.php
Normal file
7
ar/vocabulary_redaction_level.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$vocabulary_redaction_level = array (
|
||||
'checked' => 'Checked',
|
||||
'unchecked' => 'Unchecked',
|
||||
'questionable' => 'Questionable',
|
||||
);
|
||||
13
cs/actor_variant_types_set.php
Normal file
13
cs/actor_variant_types_set.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$actor_variant_types_set = array (
|
||||
'birth_name' => 'Rodné jméno',
|
||||
'married_name' => 'Jméno po svatbě',
|
||||
'monastic_name' => 'Klášterní jméno',
|
||||
'pseudonym' => 'pseudonym',
|
||||
'regnal_name' => 'královské jméno',
|
||||
'nickname' => 'Přezdívka',
|
||||
'artist_name' => 'Jméno umělce',
|
||||
'civil_name' => 'občanské jméno',
|
||||
'generic_other_name' => 'Alternativní pravopis (obecný)',
|
||||
);
|
||||
7
cs/appointment_attendance_modes.php
Normal file
7
cs/appointment_attendance_modes.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_attendance_modes = array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
'mixed' => 'Offline a online',
|
||||
);
|
||||
6
cs/appointment_cancellation_status_set.php
Normal file
6
cs/appointment_cancellation_status_set.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_cancellation_status_set = array (
|
||||
'scheduled_done' => 'Naplánováno nebo provedeno dle plánu',
|
||||
'cancelled' => 'Zrušeno',
|
||||
);
|
||||
6
cs/appointment_contributor_roles.php
Normal file
6
cs/appointment_contributor_roles.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_contributor_roles = array (
|
||||
'organizer' => 'Organizátor',
|
||||
'presenter' => 'Přednášející',
|
||||
);
|
||||
8
cs/appointment_status.php
Normal file
8
cs/appointment_status.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_status = array (
|
||||
'scheduled' => 'Naplánováno',
|
||||
'cancelled' => 'Zrušeno',
|
||||
'moved_online' => 'Přesunuto online',
|
||||
'postponed' => 'Odloženo',
|
||||
);
|
||||
6
cs/attendance_status_set.php
Normal file
6
cs/attendance_status_set.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$attendance_status_set = array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
);
|
||||
8
cs/closer_location_types_set.php
Normal file
8
cs/closer_location_types_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$closer_location_types_set = array (
|
||||
0 => '',
|
||||
1 => 'Místo záznamu',
|
||||
2 => 'Místo objevu',
|
||||
3 => 'Bývalé místo',
|
||||
);
|
||||
20
cs/colors_set.php
Normal file
20
cs/colors_set.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$colors_set = array (
|
||||
'black' => 'Černý',
|
||||
'green' => 'Zelený',
|
||||
'silver' => 'Stříbro',
|
||||
'lime' => 'Vápno',
|
||||
'gray' => 'Šedá',
|
||||
'olive' => 'olivový',
|
||||
'white' => 'Bílý',
|
||||
'yellow' => 'Žluť',
|
||||
'maroon' => 'Hnědý',
|
||||
'navy' => 'tmavě modrá',
|
||||
'red' => 'Červený',
|
||||
'blue' => 'Modrý',
|
||||
'purple' => 'Fialová',
|
||||
'teal' => 'modrozelená',
|
||||
'fuchsia' => 'sytě růžová',
|
||||
'aqua' => 'Tyrkysový',
|
||||
);
|
||||
10
cs/conservation_report_type_set.php
Normal file
10
cs/conservation_report_type_set.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$conservation_report_type_set = array (
|
||||
'damage' => 'Poškození',
|
||||
'conservation' => 'Zachování',
|
||||
'condition' => 'Stav',
|
||||
'restoration' => 'Obnovení',
|
||||
'other_report' => 'Jiná zpráva',
|
||||
'other' => 'Jiná zpráva',
|
||||
);
|
||||
28
cs/currencies_set.php
Normal file
28
cs/currencies_set.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$currencies_set = array (
|
||||
'eu-EUR' => 'Euro',
|
||||
'de-DM' => 'Německá marka',
|
||||
'de-RM' => 'Říšská marka (Německo)',
|
||||
'es-Real' => 'Španělský real',
|
||||
'hu-Ft' => 'Forint',
|
||||
'hu-Lari' => 'Lari',
|
||||
'hu-Pengő' => 'Pengő',
|
||||
'id-IDR' => 'Indonéská rupie',
|
||||
'pl-Złoty' => 'Złoty',
|
||||
'us-USD' => 'US Dollar',
|
||||
'ddr-Mark' => 'Marka (NDR)',
|
||||
'ddr-MDN' => 'MDN (NDR)',
|
||||
'hu-Korona' => 'Rakousko-uherská koruna',
|
||||
'fr-FF' => 'Francouzský frank',
|
||||
'uk-GBP' => 'Libra šterlinků',
|
||||
'by-BYN' => 'Běloruský rubl',
|
||||
'ru-RUB' => 'Ruský rubl',
|
||||
'su-SUR' => 'Sovětský rubl',
|
||||
'ua-UAH' => 'Ukrajinská hřivna',
|
||||
'ch-CHF' => 'Švýcarský frank',
|
||||
'ua-UAK' => 'Ukrajinské karbovanety',
|
||||
);
|
||||
$license_full_names = array (
|
||||
'CC BY-NC-ND' => 'Uvedení zdroje - Nekomerční - Bez odvozenin',
|
||||
);
|
||||
8
cs/custom_report_targets_set.php
Normal file
8
cs/custom_report_targets_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$custom_report_targets_set = array (
|
||||
'object_single' => 'Jeden objekt',
|
||||
'object_list' => 'Více objektů',
|
||||
'loan' => 'Půjčka',
|
||||
'exhibition' => 'Výstava',
|
||||
);
|
||||
7
cs/disposal_method_set.php
Normal file
7
cs/disposal_method_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$disposal_method_set = array (
|
||||
'sold' => 'Prodáno',
|
||||
'destroyed' => 'Zničeno',
|
||||
'garbage' => 'Vyhozený / svoz odpadu',
|
||||
);
|
||||
22
cs/entry_types.php
Normal file
22
cs/entry_types.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$entry_types = array (
|
||||
0 => '',
|
||||
1 => 'Dar',
|
||||
2 => 'Nákup',
|
||||
3 => 'Výkop',
|
||||
4 => 'Záchrana v nouzi',
|
||||
5 => 'Dědictví',
|
||||
6 => 'Nadace',
|
||||
7 => 'Vyvlastnění',
|
||||
8 => 'Původní stav',
|
||||
9 => 'Půjčka',
|
||||
10 => 'Výměna',
|
||||
11 => 'Vlastní výroba',
|
||||
12 => 'Materiální deformace (Törzsanyag)',
|
||||
14 => 'Předchůdce',
|
||||
15 => 'Nález',
|
||||
98 => 'K zkontrolování',
|
||||
99 => 'Jiné právní nabytí',
|
||||
16 => 'Trvalá půjčka',
|
||||
);
|
||||
8
cs/eventtype_groups.php
Normal file
8
cs/eventtype_groups.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$eventtype_groups = array (
|
||||
'production' => 'Výroba',
|
||||
'post_production' => 'Postprodukce',
|
||||
'pre_production' => 'Předprodukce',
|
||||
'no_production' => 'Žádná produkce',
|
||||
);
|
||||
60
cs/eventtype_name.php
Normal file
60
cs/eventtype_name.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$eventname = array (
|
||||
1 => 'Vytvořeno',
|
||||
2 => 'Nalezeno',
|
||||
3 => 'Publikováno',
|
||||
4 => 'Vytvoření šablony',
|
||||
5 => 'Byl zobrazen (herec)',
|
||||
6 => 'Byl použit',
|
||||
7 => 'Písemné',
|
||||
8 => 'Sebrané',
|
||||
9 => 'Malované',
|
||||
10 => 'Pořízený snímek',
|
||||
11 => 'Přijato',
|
||||
12 => 'Vyrobená tisková deska',
|
||||
13 => 'Odesláno',
|
||||
14 => 'Vydáno',
|
||||
15 => 'Podepsaný',
|
||||
16 => 'První popis',
|
||||
19 => 'Nakresleno',
|
||||
20 => 'Zkopírováno (ručně)',
|
||||
21 => 'Žil',
|
||||
22 => '[Vztah k lokalitě]',
|
||||
23 => '[Vztah k osobě nebo instituci]',
|
||||
24 => '[Vztah k času]',
|
||||
25 => 'Uvedeno do provozu',
|
||||
26 => 'Tištěné',
|
||||
27 => 'Nahráno',
|
||||
28 => 'Zpívané',
|
||||
29 => 'Navržený dekor',
|
||||
30 => 'Navržený formulář',
|
||||
31 => 'Modelováno',
|
||||
32 => 'S autogramem/podpisem',
|
||||
33 => 'Zmíněno',
|
||||
34 => 'Pohřben',
|
||||
35 => 'Intelektuální tvorba',
|
||||
36 => 'Co bylo zobrazeno',
|
||||
37 => 'Namalováno na',
|
||||
38 => 'Ilustrované',
|
||||
39 => 'Sestaveno',
|
||||
40 => 'Vydraženo',
|
||||
41 => 'Koupil/a',
|
||||
42 => 'Vlastněno',
|
||||
43 => 'Prodáno',
|
||||
44 => 'Obnoveno',
|
||||
45 => 'Poškozené',
|
||||
46 => 'Ztracený',
|
||||
47 => 'Ztracený',
|
||||
48 => 'Upraveno',
|
||||
49 => 'Darováno / dárek',
|
||||
50 => 'Zděděno',
|
||||
51 => 'Měl předmět',
|
||||
52 => 'Objevil se',
|
||||
53 => 'Výroba materiálu',
|
||||
54 => 'Zmíněné místo',
|
||||
55 => 'Zmíněný čas',
|
||||
56 => 'Získané vlastnictví',
|
||||
57 => 'Převedené vlastnictví',
|
||||
58 => 'Upraveno',
|
||||
);
|
||||
60
cs/eventtype_persinst.php
Normal file
60
cs/eventtype_persinst.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_persinst = array (
|
||||
1 => 'vytvořil(a)',
|
||||
2 => 'nalezeno',
|
||||
3 => 'publikováno',
|
||||
4 => 'šablony vytvořené uživatelem',
|
||||
5 => 'zobrazený',
|
||||
6 => 'byl používán',
|
||||
7 => 'napsaný uživatelem',
|
||||
8 => 'shromážděno',
|
||||
9 => 'namaloval',
|
||||
10 => 'vyfotografováno uživatelem',
|
||||
11 => 'přijato',
|
||||
12 => 'Tisková deska vyrobená společností',
|
||||
13 => 'odesláno uživatelem',
|
||||
14 => 'vydané',
|
||||
15 => 'podepsáno',
|
||||
16 => 'poprvé popsáno',
|
||||
19 => 'tažený',
|
||||
20 => 'zkopírováno (ručně)',
|
||||
21 => 'Žil',
|
||||
22 => '[generál]',
|
||||
23 => '[generál]',
|
||||
24 => '[general]',
|
||||
25 => 'zadáno',
|
||||
26 => 'vytištěno',
|
||||
27 => 'zaznamenáno uživatelem',
|
||||
28 => 'zpívá',
|
||||
29 => 'Dekor navržený',
|
||||
30 => 'Formulář navržený',
|
||||
31 => 'modelováno',
|
||||
32 => 'podepsáno',
|
||||
33 => 'zmíněno',
|
||||
34 => 'pohřben',
|
||||
35 => 'koncipován',
|
||||
36 => 'zobrazený',
|
||||
37 => 'namalováno uživatelem',
|
||||
38 => 'ilustrováno',
|
||||
39 => 'sestaveno',
|
||||
40 => 'vydraženo',
|
||||
41 => 'koupil',
|
||||
42 => 'vlastněno',
|
||||
43 => 'prodáno společností',
|
||||
44 => 'obnoveno',
|
||||
45 => 'poškozeno',
|
||||
46 => 'zničeno',
|
||||
47 => 'ztracený',
|
||||
48 => 'upraveno uživatelem',
|
||||
49 => 'darováno',
|
||||
50 => 'zděděno po',
|
||||
51 => 'měl předmět',
|
||||
52 => 'objevil se',
|
||||
53 => 'Materiál vyrobený',
|
||||
54 => 'Zmíněné místo',
|
||||
55 => 'Zmíněný čas',
|
||||
56 => 'Vlastnictví převzal',
|
||||
57 => 'Vlastnictví převedeno',
|
||||
58 => 'Upraveno uživatelem',
|
||||
);
|
||||
60
cs/eventtype_place.php
Normal file
60
cs/eventtype_place.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_place = array (
|
||||
1 => 'vytvořeno v',
|
||||
2 => 'nalezeno v',
|
||||
3 => 'šablony vytvořené v',
|
||||
4 => 'šablony vytvořené v',
|
||||
5 => 'byl vyfocen v',
|
||||
6 => 'byl použit v',
|
||||
7 => 'napsané v',
|
||||
8 => 'shromážděno v',
|
||||
9 => 'namalováno',
|
||||
10 => 'vyfotografováno v',
|
||||
11 => 'přijato v',
|
||||
12 => 'Tisková deska vyrobená v',
|
||||
13 => 'odesláno',
|
||||
14 => 'vydáno v',
|
||||
15 => 'přihlášen/a',
|
||||
16 => 'Typ popsaný v',
|
||||
19 => 'vtažený',
|
||||
20 => 'byl (ručně) zkopírován v',
|
||||
21 => 'žil v',
|
||||
22 => '[generál]',
|
||||
23 => '[generál]',
|
||||
24 => '[generál]',
|
||||
25 => 'uveden do provozu v',
|
||||
26 => 'vytištěno v',
|
||||
27 => 'zaznamenáno v',
|
||||
28 => 'řešení v',
|
||||
29 => 'Dekor navržený v',
|
||||
30 => 'Formulář navržený v',
|
||||
31 => 'modelováno v',
|
||||
32 => 'podepsáno v',
|
||||
33 => 'zmíněno v',
|
||||
34 => 'pohřben v',
|
||||
35 => 'koncipován v',
|
||||
36 => 'byl zobrazen v',
|
||||
37 => 'namalováno v',
|
||||
38 => 'ilustrováno v',
|
||||
39 => 'sestaveno v',
|
||||
40 => 'vydraženo v',
|
||||
41 => 'koupil v',
|
||||
42 => 'vlastněno v',
|
||||
43 => 'prodáno v',
|
||||
44 => 'obnoveno v',
|
||||
45 => 'poškozený v',
|
||||
46 => 'zničeno v',
|
||||
47 => 'ztracený v',
|
||||
48 => 'upraveno v',
|
||||
49 => 'darováno / darováno jako dárek v',
|
||||
50 => 'zděděno v',
|
||||
51 => 'měl předmět',
|
||||
52 => 'objevil se v',
|
||||
53 => 'Materiál vyrobený v',
|
||||
54 => 'Zmíněné místo',
|
||||
55 => 'Zmíněný čas',
|
||||
56 => 'Vlastnictví převzato v roce',
|
||||
57 => 'Vlastnictví převedeno v',
|
||||
58 => 'Vlastnictví převedeno v',
|
||||
);
|
||||
60
cs/eventtype_time.php
Normal file
60
cs/eventtype_time.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$event_time = array (
|
||||
1 => 'vytvořeno',
|
||||
2 => 'vytvořeno',
|
||||
3 => 'publikováno',
|
||||
4 => 'šablona vytvořena',
|
||||
5 => 'byl zobrazen',
|
||||
6 => 'byl použit',
|
||||
7 => 'psaný',
|
||||
8 => 'shromážděno',
|
||||
9 => 'malované',
|
||||
10 => 'fotografoval',
|
||||
11 => 'přijato',
|
||||
12 => 'Vyrobená tisková deska',
|
||||
13 => 'odesláno',
|
||||
14 => 'vydáno',
|
||||
15 => 'podepsaný',
|
||||
16 => 'Popsaný typ',
|
||||
19 => 'nakreslené',
|
||||
20 => 'kopírováno (ručně)',
|
||||
21 => 'žil',
|
||||
22 => '[generál]',
|
||||
23 => '[generál]',
|
||||
24 => '[generál]',
|
||||
25 => 'pověřen',
|
||||
26 => 'tištěné',
|
||||
27 => 'zaznamenáno',
|
||||
28 => 'řešení',
|
||||
29 => 'Navržený dekor',
|
||||
30 => 'Navržený formulář',
|
||||
31 => 'modelovaný',
|
||||
32 => 'podepsané',
|
||||
33 => 'byl zmíněn',
|
||||
34 => 'pohřben',
|
||||
35 => 'koncipovaný',
|
||||
36 => 'byl zobrazen',
|
||||
37 => 'namalováno na',
|
||||
38 => 'ilustrovaný',
|
||||
39 => 'shromážděni v',
|
||||
40 => 'vydraženo v',
|
||||
41 => 'koupil za',
|
||||
42 => 'vlastněno v',
|
||||
43 => 'prodáno za',
|
||||
44 => 'obnoveno v',
|
||||
45 => 'poškozený při',
|
||||
46 => 'zničeno v',
|
||||
47 => 'ztracený v',
|
||||
48 => 'ztracený v',
|
||||
49 => 'ztracený v',
|
||||
50 => 'ztracený v',
|
||||
51 => 'měl předmět',
|
||||
52 => 'objevil se v',
|
||||
53 => 'Vyrobený materiál',
|
||||
54 => 'Zmíněné místo',
|
||||
55 => 'Zmíněný čas',
|
||||
56 => 'Zmíněný čas',
|
||||
57 => 'Vlastnictví přijato',
|
||||
58 => 'upraveno v',
|
||||
);
|
||||
9
cs/exhibition_contributor_roles.php
Normal file
9
cs/exhibition_contributor_roles.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$exhibition_contributor_roles = array (
|
||||
'concept' => 'Pojem',
|
||||
'curator' => 'Kurátor',
|
||||
'design' => 'design',
|
||||
'coordinator' => 'Koordinátor',
|
||||
'protagonist' => 'protagonista',
|
||||
);
|
||||
7
cs/gender_set.php
Normal file
7
cs/gender_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$gender_set = array (
|
||||
'female' => 'Žena',
|
||||
'male' => 'Samec',
|
||||
'other' => 'Ostatní',
|
||||
);
|
||||
10
cs/institution_basic_category_set.php
Normal file
10
cs/institution_basic_category_set.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_basic_category_set = array (
|
||||
'archive' => 'Archiv',
|
||||
'library' => 'Knihovna',
|
||||
'memorial_site' => 'Pamětní místo',
|
||||
'private_collection' => 'Soukromá sbírka',
|
||||
'museum' => 'muzeum',
|
||||
'university_collection' => 'Univerzitní sbírka',
|
||||
);
|
||||
30
cs/institution_collection_area_set.php
Normal file
30
cs/institution_collection_area_set.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_collection_area_set = array (
|
||||
'everyday_life' => 'Každodenní život',
|
||||
'archaeology' => 'Archeologie',
|
||||
'architecture' => 'Architektura',
|
||||
'history_of_mining' => 'Historie těžby',
|
||||
'botany' => 'Botanika',
|
||||
'history_of_film' => 'Historie filmu',
|
||||
'political_history' => 'Politické dějiny',
|
||||
'arts' => 'Umění',
|
||||
'applied_arts' => 'Užité umění',
|
||||
'agriculture' => 'Zemědělství',
|
||||
'literature' => 'Literatura',
|
||||
'history_of_medicine' => 'Dějiny medicíny',
|
||||
'military_history' => 'Vojenská historie',
|
||||
'mineralogy' => 'Mineralogie',
|
||||
'music' => 'Hudba',
|
||||
'numismatics' => 'Numizmatika',
|
||||
'paleontology' => 'Paleontologie',
|
||||
'personalia' => 'Osobní údaje',
|
||||
'regional_history' => 'Regionální historie',
|
||||
'religion' => 'náboženství',
|
||||
'technology' => 'Technologie',
|
||||
'ethnography' => 'Etnografie',
|
||||
'zoology' => 'Zoologie',
|
||||
);
|
||||
$institution_basic_category_set = array (
|
||||
'museum' => 'muzeum',
|
||||
);
|
||||
5
cs/institution_external_id_repositories.php
Normal file
5
cs/institution_external_id_repositories.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_external_id_repositories = array (
|
||||
'hu_ksh' => 'Maďarský ústřední statistický úřad',
|
||||
);
|
||||
7
cs/institution_musdb_use_case_set.php
Normal file
7
cs/institution_musdb_use_case_set.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_musdb_use_case_set = array (
|
||||
'collection_management' => 'Správa sbírek',
|
||||
'publication' => 'Vydání',
|
||||
'collection_management_and_publication' => 'Správa a publikace sbírek',
|
||||
);
|
||||
8
cs/institution_public_private_category_set.php
Normal file
8
cs/institution_public_private_category_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$institution_public_private_category_set = array (
|
||||
'public' => 'Veřejnost',
|
||||
'private' => 'Soukromé',
|
||||
'religious' => 'Náboženský',
|
||||
'mixed' => 'Smíšený',
|
||||
);
|
||||
16
cs/license_explica.php
Normal file
16
cs/license_explica.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$license_explica = array (
|
||||
'CC BY-NC-SA' => 'Pro nekomerční účely může být materiál použit (i změněn) s uvedením zdroje. Stav práv musí být zachován v případě distribuce.',
|
||||
'CC BY-NC-ND' => 'Pro nekomerční účely může být materiál použit s uvedením zdroje. Nesmí být pozměněn.',
|
||||
'CC BY-NC' => 'Pro nekomerční účely může být materiál použit s uvedením zdroje.',
|
||||
'CC BY-ND' => 'Materiál může být použit s uvedením zdroje. Nesmí být pozměněn.',
|
||||
'CC BY-SA' => 'Materiál může být použit (a dokonce pozměněn), pokud je uveden autor. V případě distribuce musí být zachován status práv.',
|
||||
'CC BY' => 'Materiál může být použit (a dokonce upraven), pokud je uveden zdroj.',
|
||||
'CC0' => 'Žádná práva vyhrazena. Licenci CC0 byste měli používat pouze v případě, že máte právo se všech práv vzdát.',
|
||||
'RR-F' => 'Volný přístup - žádné opakované použití.',
|
||||
'RR-P' => 'Placený přístup – opětovné použití zakázáno. Náhledy mohou být dostupné.',
|
||||
'RR-R' => 'Omezený přístup. Vyhrazená práva.',
|
||||
'Orphan Work' => 'Držitele práv se nepodařilo určit. Dílo je uvedeno na seznamu osiřelých děl EU.',
|
||||
'Public Domain Mark' => 'Toto dílo bylo označeno za nepodléhající známým omezením podle autorského zákona, včetně všech souvisejících a sousedních práv.',
|
||||
);
|
||||
16
cs/license_full_names.php
Normal file
16
cs/license_full_names.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$license_full_names = array (
|
||||
'CC BY-NC-SA' => 'Uvedení zdroje - Nekomerční - Sdílet za stejných podmínek',
|
||||
'CC BY-NC' => 'Uvedení zdroje – nekomerční',
|
||||
'CC BY-ND' => 'Uvedení zdroje - Bez odvozenin',
|
||||
'CC BY-SA' => 'Uvedení zdroje - Sdílet za stejných podmínek',
|
||||
'CC BY' => 'Uvedení zdroje',
|
||||
'CC0' => 'Žádná práva vyhrazena',
|
||||
'RR-F' => 'Práva vyhrazena - Volný přístup',
|
||||
'RR-P' => 'Práva vyhrazena - Placený přístup',
|
||||
'RR-R' => 'Práva vyhrazena - Omezený přístup',
|
||||
'Orphan Work' => 'Sirotčí práce',
|
||||
'Public Domain Mark' => 'Ochranná známka veřejné domény',
|
||||
'CC BY-NC-ND' => 'Uvedení zdroje - Nekomerční - Bez odvozenin',
|
||||
);
|
||||
16
cs/license_url.php
Normal file
16
cs/license_url.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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-sa/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-nd/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-p/',
|
||||
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/',
|
||||
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/',
|
||||
);
|
||||
6
cs/loan_types.php
Normal file
6
cs/loan_types.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$loan_types = array (
|
||||
'outgoing' => 'Odchozí',
|
||||
'incoming' => 'Přicházející',
|
||||
);
|
||||
25
cs/marking_types.php
Normal file
25
cs/marking_types.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$marking_types = array (
|
||||
'signature' => 'Přicházející',
|
||||
'watermark' => 'Vodoznak',
|
||||
'engraving' => 'Rytina',
|
||||
'scratch' => 'Škrábání',
|
||||
'stamp' => 'Razítko',
|
||||
'overprint' => 'Přetisk',
|
||||
'embossing' => 'Ražba',
|
||||
'handwritten' => 'Ručně psané',
|
||||
'glued' => 'Lepené',
|
||||
'embroidered' => 'Vyšívané',
|
||||
'sewn' => 'Šité',
|
||||
'screwed' => 'Šroubovaný',
|
||||
'burnt_in' => 'Vypáleno',
|
||||
'riveted' => 'Nýtované',
|
||||
'nailed' => 'Přibitý',
|
||||
'hallmarked' => 'puncováno',
|
||||
'punched' => 'puncováno',
|
||||
'scarified' => 'Zjizvený',
|
||||
'cast' => 'odlitek',
|
||||
'painted' => 'odlitek',
|
||||
'drawn' => 'Nakresleno',
|
||||
);
|
||||
47
cs/measurement_type_set.php
Normal file
47
cs/measurement_type_set.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Délka',
|
||||
'height' => 'Výška',
|
||||
'width' => 'Šířka',
|
||||
'number_of_copies' => 'Počet kopií',
|
||||
'weight' => 'Počet kopií',
|
||||
'diameter' => 'Průměr',
|
||||
'wall' => 'Zeď',
|
||||
'number_of_parts' => 'Počet dílů',
|
||||
'die_axis' => 'Osa',
|
||||
'length_socle' => 'Délka soklu',
|
||||
'height_socle' => 'Výška soklu',
|
||||
'width_socle' => 'Šířka soklu',
|
||||
'height_sheet_size' => 'Velikost listu (výška)',
|
||||
'length_sheet_size' => 'Velikost listu (délka)',
|
||||
'width_sheet_size' => 'Velikost listu (šířka)',
|
||||
'height_image_size' => 'Velikost obrázku (výška)',
|
||||
'length_image_size' => 'Velikost (délka) obrázku',
|
||||
'width_image_size' => 'Velikost obrázku (šířka)',
|
||||
'length_frame' => 'Rám (délka)',
|
||||
'height_frame' => 'Rám (výška)',
|
||||
'width_frame' => 'Rám (šířka)',
|
||||
'length_min' => 'Délka (min.)',
|
||||
'length_max' => 'Délka (max.)',
|
||||
'height_min' => 'Výška (min.)',
|
||||
'height_max' => 'Výška (max.)',
|
||||
'width_min' => 'Šířka (min.)',
|
||||
'width_max' => 'Šířka (max.)',
|
||||
'diameter_min' => 'Průměr (min.)',
|
||||
'diameter_max' => 'Průměr (max.)',
|
||||
'diameter_frame' => 'Rám (průměr)',
|
||||
'length_blade' => 'Délka čepele',
|
||||
'height_blade' => 'Výška čepele',
|
||||
'width_blade' => 'Šířka čepele',
|
||||
'number_of_sheets' => 'Počet listů',
|
||||
'number_of_double_pages' => 'Počet dvojstránek',
|
||||
'number_of_standalone_pages' => 'Počet samostatných stránek',
|
||||
'number_of_written_pages' => 'Počet napsaných stran',
|
||||
'number_of_standalone_sheets' => 'Počet samostatných listů',
|
||||
'diameter_image_size' => 'Velikost obrazu (průměr)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
8
cs/object_check_types_set.php
Normal file
8
cs/object_check_types_set.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_check_types_set = array (
|
||||
'condition_check' => 'Velikost obrazu (průměr)',
|
||||
'completeness_check' => 'Kontrola úplnosti',
|
||||
'data_correctness_check' => 'Kontrola správnosti dat',
|
||||
'location_accuracy_check' => 'Kontrola přesnosti polohy',
|
||||
);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user