Approval.
This commit is contained in:
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$actor_variant_types_set['birth_name'] = 'Születési név';
|
||||
$actor_variant_types_set['married_name'] = 'Házassági név';
|
||||
$actor_variant_types_set['monastic_name'] = 'Szerzetesi név';
|
||||
$actor_variant_types_set['pseudonym'] = 'Álnév';
|
||||
$actor_variant_types_set['regnal_name'] = 'Regnális név';
|
||||
$actor_variant_types_set['nickname'] = 'Becenév';
|
||||
$actor_variant_types_set['artist_name'] = 'Művésznév';
|
||||
$actor_variant_types_set['civil_name'] = 'Polgári név';
|
||||
$actor_variant_types_set['generic_other_name'] = 'Alternatív név (általános)';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'actor_variant_types_set' =>
|
||||
array (
|
||||
'birth_name' => 'Születési név',
|
||||
'married_name' => 'Házassági név',
|
||||
'monastic_name' => 'Szerzetesi név',
|
||||
'pseudonym' => 'Álnév',
|
||||
'regnal_name' => 'Regnális név',
|
||||
'nickname' => 'Becenév',
|
||||
'artist_name' => 'Művésznév',
|
||||
'civil_name' => 'Polgári név',
|
||||
'generic_other_name' => 'Alternatív név (általános)',
|
||||
),
|
||||
)
|
@ -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'] = 'Tervek szerint';
|
||||
$appointment_cancellation_status_set['cancelled'] = 'Lemondva';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_cancellation_status_set' =>
|
||||
array (
|
||||
'scheduled_done' => 'Tervek szerint',
|
||||
'cancelled' => 'Lemondva',
|
||||
),
|
||||
)
|
@ -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'] = 'Ütemezve';
|
||||
$appointment_status['cancelled'] = 'Lemondva';
|
||||
$appointment_status['moved_online'] = 'Áthelyezve online';
|
||||
$appointment_status['postponed'] = 'Elhalasztva';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_status' =>
|
||||
array (
|
||||
'scheduled' => 'Ütemezve',
|
||||
'cancelled' => 'Lemondva',
|
||||
'moved_online' => 'Áthelyezve online',
|
||||
'postponed' => 'Elhalasztva',
|
||||
),
|
||||
)
|
@ -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'] = 'Felvétel késztésének helye';
|
||||
$closer_location_types_set['2'] = 'Lelőhely';
|
||||
$closer_location_types_set['3'] = 'Történelmi elnevezés';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'closer_location_types_set' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Felvétel késztésének helye',
|
||||
2 => 'Lelőhely',
|
||||
3 => 'Történelmi elnevezés',
|
||||
),
|
||||
)
|
@ -1,17 +1,23 @@
|
||||
<?PHP
|
||||
$colors_set['black'] = 'fekete';
|
||||
$colors_set['green'] = 'zöld';
|
||||
$colors_set['silver'] = 'ezüst';
|
||||
$colors_set['lime'] = 'lime-zöld';
|
||||
$colors_set['gray'] = 'szürke';
|
||||
$colors_set['olive'] = 'oliva zöld';
|
||||
$colors_set['white'] = 'fehér';
|
||||
$colors_set['yellow'] = 'sárga';
|
||||
$colors_set['maroon'] = 'gesztenyebarna';
|
||||
$colors_set['navy'] = 'matrózkék';
|
||||
$colors_set['red'] = 'piros';
|
||||
$colors_set['blue'] = 'kék';
|
||||
$colors_set['purple'] = 'lila';
|
||||
$colors_set['teal'] = 'récezöld';
|
||||
$colors_set['fuchsia'] = 'fukszia';
|
||||
$colors_set['aqua'] = 'vízkék';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'colors_set' =>
|
||||
array (
|
||||
'black' => 'fekete',
|
||||
'green' => 'zöld',
|
||||
'silver' => 'ezüst',
|
||||
'lime' => 'lime-zöld',
|
||||
'gray' => 'szürke',
|
||||
'olive' => 'oliva zöld',
|
||||
'white' => 'fehér',
|
||||
'yellow' => 'sárga',
|
||||
'maroon' => 'gesztenyebarna',
|
||||
'navy' => 'matrózkék',
|
||||
'red' => 'piros',
|
||||
'blue' => 'kék',
|
||||
'purple' => 'lila',
|
||||
'teal' => 'récezöld',
|
||||
'fuchsia' => 'fukszia',
|
||||
'aqua' => 'vízkék',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$conservation_report_type_set['damage'] = 'Sérülés';
|
||||
$conservation_report_type_set['conservation'] = 'Megőrzés';
|
||||
$conservation_report_type_set['condition'] = 'Állapot';
|
||||
$conservation_report_type_set['restoration'] = 'Restaurálás';
|
||||
$conservation_report_type_set['other_report'] = 'Egyéb beszámoló';
|
||||
$conservation_report_type_set['other'] = 'Egyéb beszámoló';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'conservation_report_type_set' =>
|
||||
array (
|
||||
'damage' => 'Sérülés',
|
||||
'conservation' => 'Megőrzés',
|
||||
'condition' => 'Állapot',
|
||||
'restoration' => 'Restaurálás',
|
||||
'other_report' => 'Egyéb beszámoló',
|
||||
'other' => 'Egyéb beszámoló',
|
||||
),
|
||||
)
|
@ -1,21 +1,30 @@
|
||||
<?PHP
|
||||
$currencies_set['eu-EUR'] = 'Euró';
|
||||
$currencies_set['de-DM'] = 'Német márka';
|
||||
$currencies_set['de-RM'] = 'Német birodalmi márka';
|
||||
$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'] = 'Indonéz rúpia';
|
||||
$currencies_set['pl-Złoty'] = 'Złoty';
|
||||
$currencies_set['us-USD'] = 'Dollár (US)';
|
||||
$currencies_set['ddr-Mark'] = 'Mark (GDR)';
|
||||
$currencies_set['ddr-MDN'] = 'MDN (GDR)';
|
||||
$currencies_set['hu-Korona'] = 'Korona (osztrák-magyar)';
|
||||
$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'] = 'Nevezd meg! - Ne add el! - Ne változtasd!';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'currencies_set' =>
|
||||
array (
|
||||
'eu-EUR' => 'Euró',
|
||||
'de-DM' => 'Német márka',
|
||||
'de-RM' => 'Német birodalmi márka',
|
||||
'es-Real' => 'Spanish Real',
|
||||
'hu-Ft' => 'Forint',
|
||||
'hu-Lari' => 'Lari',
|
||||
'hu-Pengő' => 'Pengő',
|
||||
'id-IDR' => 'Indonéz rúpia',
|
||||
'pl-Złoty' => 'Złoty',
|
||||
'us-USD' => 'Dollár (US)',
|
||||
'ddr-Mark' => 'Mark (GDR)',
|
||||
'ddr-MDN' => 'MDN (GDR)',
|
||||
'hu-Korona' => 'Korona (osztrák-magyar)',
|
||||
'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' => 'Nevezd meg! - Ne add el! - Ne változtasd!',
|
||||
),
|
||||
)
|
@ -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'] = 'Ajándékozás';
|
||||
$entry_types['2'] = 'Vétel';
|
||||
$entry_types['3'] = 'Feltárás';
|
||||
$entry_types['4'] = 'Sürgősségi értékmentés';
|
||||
$entry_types['5'] = 'Hagyaték';
|
||||
$entry_types['6'] = 'Hivatalos átadás';
|
||||
$entry_types['7'] = 'Kisajátítás';
|
||||
$entry_types['8'] = 'Gyűjtés';
|
||||
$entry_types['9'] = 'Letét';
|
||||
$entry_types['10'] = 'Csere';
|
||||
$entry_types['11'] = 'Saját előállítás';
|
||||
$entry_types['12'] = 'Törzsanyag';
|
||||
$entry_types['14'] = 'Átadás';
|
||||
$entry_types['15'] = 'Lelet';
|
||||
$entry_types['98'] = 'Kutatást igényel';
|
||||
$entry_types['99'] = 'Egyéb hivatalos megszerzés';
|
||||
$entry_types['16'] = 'Tartós leltét';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'entry_types' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Ajándékozás',
|
||||
2 => 'Vétel',
|
||||
3 => 'Feltárás',
|
||||
4 => 'Sürgősségi értékmentés',
|
||||
5 => 'Hagyaték',
|
||||
6 => 'Hivatalos átadás',
|
||||
7 => 'Kisajátítás',
|
||||
8 => 'Gyűjtés',
|
||||
9 => 'Letét',
|
||||
10 => 'Csere',
|
||||
11 => 'Saját előállítás',
|
||||
12 => 'Törzsanyag',
|
||||
14 => 'Átadás',
|
||||
15 => 'Lelet',
|
||||
98 => 'Kutatást igényel',
|
||||
99 => 'Egyéb hivatalos megszerzés',
|
||||
16 => 'Tartós leltét',
|
||||
),
|
||||
)
|
@ -1,49 +1,55 @@
|
||||
<?PHP
|
||||
$eventname['1'] = 'Készítés';
|
||||
$eventname['2'] = 'Feltárás';
|
||||
$eventname['3'] = 'Kiadás';
|
||||
$eventname['4'] = 'Vázlat készítése';
|
||||
$eventname['5'] = 'Ábrázolás';
|
||||
$eventname['6'] = 'Felhasználás';
|
||||
$eventname['7'] = 'Írott/szerzett mű alkotása';
|
||||
$eventname['8'] = 'Gyűjtés';
|
||||
$eventname['9'] = 'Festmény készítése';
|
||||
$eventname['10'] = 'Felvétel készítése';
|
||||
$eventname['11'] = 'Kézhezvétel';
|
||||
$eventname['12'] = 'Sokszorósító nyomólemez készítése';
|
||||
$eventname['13'] = 'Postázás';
|
||||
$eventname['14'] = 'Kibocsátás';
|
||||
$eventname['15'] = 'Aláírás';
|
||||
$eventname['16'] = 'Meghatározás';
|
||||
$eventname['19'] = 'Rajz készítése';
|
||||
$eventname['20'] = 'Másolás';
|
||||
$eventname['21'] = 'Földtörténeti korok';
|
||||
$eventname['22'] = '[Földrajzi vonatkozás]';
|
||||
$eventname['23'] = '[Kapcsolódó személyek/ intézmények]';
|
||||
$eventname['24'] = '[Időbeli vonatkozás]';
|
||||
$eventname['25'] = 'Megrendelés';
|
||||
$eventname['26'] = 'Nyomtatás';
|
||||
$eventname['27'] = 'Hangfelvétel készítése';
|
||||
$eventname['28'] = 'Éneklés';
|
||||
$eventname['29'] = 'Dekoráció tervezése';
|
||||
$eventname['30'] = 'Formatervezés';
|
||||
$eventname['31'] = 'Mintázás';
|
||||
$eventname['32'] = 'Szignálás';
|
||||
$eventname['33'] = 'Említés';
|
||||
$eventname['34'] = 'Eltemetés';
|
||||
$eventname['35'] = 'Koncepció megalkotása';
|
||||
$eventname['36'] = 'Ábrázolt hely';
|
||||
$eventname['37'] = 'Díszités készítése';
|
||||
$eventname['38'] = 'Illusztráció készítése';
|
||||
$eventname['39'] = 'Összeszerelés';
|
||||
$eventname['40'] = 'Árverezés';
|
||||
$eventname['41'] = 'Vásárlás';
|
||||
$eventname['42'] = 'Tulajdonlás';
|
||||
$eventname['43'] = 'Eladás';
|
||||
$eventname['44'] = 'Restaurálás';
|
||||
$eventname['45'] = 'Sérülés';
|
||||
$eventname['46'] = 'Megsemmisülés';
|
||||
$eventname['47'] = 'Eltűnés';
|
||||
$eventname['48'] = 'Szerkesztés';
|
||||
$eventname['49'] = 'Donated / present';
|
||||
$eventname['50'] = 'Inherited';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'eventname' =>
|
||||
array (
|
||||
1 => 'Készítés',
|
||||
2 => 'Feltárás',
|
||||
3 => 'Kiadás',
|
||||
4 => 'Vázlat készítése',
|
||||
5 => 'Ábrázolás',
|
||||
6 => 'Felhasználás',
|
||||
7 => 'Írott/szerzett mű alkotása',
|
||||
8 => 'Gyűjtés',
|
||||
9 => 'Festmény készítése',
|
||||
10 => 'Felvétel készítése',
|
||||
11 => 'Kézhezvétel',
|
||||
12 => 'Sokszorósító nyomólemez készítése',
|
||||
13 => 'Postázás',
|
||||
14 => 'Kibocsátás',
|
||||
15 => 'Aláírás',
|
||||
16 => 'Meghatározás',
|
||||
19 => 'Rajz készítése',
|
||||
20 => 'Másolás',
|
||||
21 => 'Földtörténeti korok',
|
||||
22 => '[Földrajzi vonatkozás]',
|
||||
23 => '[Kapcsolódó személyek/ intézmények]',
|
||||
24 => '[Időbeli vonatkozás]',
|
||||
25 => 'Megrendelés',
|
||||
26 => 'Nyomtatás',
|
||||
27 => 'Hangfelvétel készítése',
|
||||
28 => 'Éneklés',
|
||||
29 => 'Dekoráció tervezése',
|
||||
30 => 'Formatervezés',
|
||||
31 => 'Mintázás',
|
||||
32 => 'Szignálás',
|
||||
33 => 'Említés',
|
||||
34 => 'Eltemetés',
|
||||
35 => 'Koncepció megalkotása',
|
||||
36 => 'Ábrázolt hely',
|
||||
37 => 'Díszités készítése',
|
||||
38 => 'Illusztráció készítése',
|
||||
39 => 'Összeszerelés',
|
||||
40 => 'Árverezés',
|
||||
41 => 'Vásárlás',
|
||||
42 => 'Tulajdonlás',
|
||||
43 => 'Eladás',
|
||||
44 => 'Restaurálás',
|
||||
45 => 'Sérülés',
|
||||
46 => 'Megsemmisülés',
|
||||
47 => 'Eltűnés',
|
||||
48 => 'Szerkesztés',
|
||||
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'] = 'nő';
|
||||
$gender_set['male'] = 'férfi';
|
||||
$gender_set['other'] = 'egyéb';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'gender_set' =>
|
||||
array (
|
||||
'female' => 'nő',
|
||||
'male' => 'férfi',
|
||||
'other' => 'egyéb',
|
||||
),
|
||||
)
|
@ -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'] = 'Nevezd meg!-Ne add el!-Így add tovább!';
|
||||
$license_full_names['CC BY-NC'] = 'Nevezd meg!-Ne add el!';
|
||||
$license_full_names['CC BY-ND'] = 'Nevezd meg!-Ne változtasd!';
|
||||
$license_full_names['CC BY-SA'] = 'Nevezd meg!-Így add tovább!';
|
||||
$license_full_names['CC BY'] = 'Nevezd meg!';
|
||||
$license_full_names['CC0'] = 'Jogmentes';
|
||||
$license_full_names['RR-F'] = 'Jog fenntartva - Szabad hozzáférés';
|
||||
$license_full_names['RR-P'] = 'Jog fenntartva- Fizetett hozzáférés';
|
||||
$license_full_names['RR-R'] = 'Jog fenntartva- Korlátozott hozzáférés';
|
||||
$license_full_names['Orphan Work'] = 'Árva mű';
|
||||
$license_full_names['Public Domain Mark'] = 'Közkincs megjelölés';
|
||||
$license_full_names['CC BY-NC-ND'] = 'Nevezd meg! - Ne add el! - Ne változtasd!';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_full_names' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'Nevezd meg!-Ne add el!-Így add tovább!',
|
||||
'CC BY-NC' => 'Nevezd meg!-Ne add el!',
|
||||
'CC BY-ND' => 'Nevezd meg!-Ne változtasd!',
|
||||
'CC BY-SA' => 'Nevezd meg!-Így add tovább!',
|
||||
'CC BY' => 'Nevezd meg!',
|
||||
'CC0' => 'Jogmentes',
|
||||
'RR-F' => 'Jog fenntartva - Szabad hozzáférés',
|
||||
'RR-P' => 'Jog fenntartva- Fizetett hozzáférés',
|
||||
'RR-R' => 'Jog fenntartva- Korlátozott hozzáférés',
|
||||
'Orphan Work' => 'Árva mű',
|
||||
'Public Domain Mark' => 'Közkincs megjelölés',
|
||||
'CC BY-NC-ND' => 'Nevezd meg! - Ne add el! - Ne változtasd!',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_url['CC BY-NC-SA'] = 'https://creativecommons.org/licenses/by-nc-sa/4.0/deed.hu';
|
||||
$license_url['CC BY-NC-ND'] = 'https://creativecommons.org/licenses/by-nc-nd/4.0/deed.hu';
|
||||
$license_url['CC BY-NC'] = 'https://creativecommons.org/licenses/by-nc/4.0/deed.hu';
|
||||
$license_url['CC BY-ND'] = 'https://creativecommons.org/licenses/by-nd/4.0/deed.hu';
|
||||
$license_url['CC BY-SA'] = 'https://creativecommons.org/licenses/by-sa/4.0/deed.hu';
|
||||
$license_url['CC BY'] = 'https://creativecommons.org/licenses/by/4.0/deed.hu';
|
||||
$license_url['CC0'] = 'https://creativecommons.org/publicdomain/zero/1.0/deed.hu';
|
||||
$license_url['RR-F'] = 'http://www.europeana.eu/rights/rr-f/deed.hu';
|
||||
$license_url['RR-P'] = 'http://www.europeana.eu/rights/rr-p/deed.hu';
|
||||
$license_url['RR-R'] = 'http://www.europeana.eu/rights/rr-r/deed.hu';
|
||||
$license_url['Orphan Work'] = 'http://www.europeana.eu/rights/orphan-work-eu/deed.hu';
|
||||
$license_url['Public Domain Mark'] = 'https://creativecommons.org/publicdomain/mark/1.0/deed.hu';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_url' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/deed.hu',
|
||||
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-nd/4.0/deed.hu',
|
||||
'CC BY-NC' => 'https://creativecommons.org/licenses/by-nc/4.0/deed.hu',
|
||||
'CC BY-ND' => 'https://creativecommons.org/licenses/by-nd/4.0/deed.hu',
|
||||
'CC BY-SA' => 'https://creativecommons.org/licenses/by-sa/4.0/deed.hu',
|
||||
'CC BY' => 'https://creativecommons.org/licenses/by/4.0/deed.hu',
|
||||
'CC0' => 'https://creativecommons.org/publicdomain/zero/1.0/deed.hu',
|
||||
'RR-F' => 'http://www.europeana.eu/rights/rr-f/deed.hu',
|
||||
'RR-P' => 'http://www.europeana.eu/rights/rr-p/deed.hu',
|
||||
'RR-R' => 'http://www.europeana.eu/rights/rr-r/deed.hu',
|
||||
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/deed.hu',
|
||||
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/deed.hu',
|
||||
),
|
||||
)
|
@ -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'] = 'Aláírás';
|
||||
$marking_types['watermark'] = 'Vízjel';
|
||||
$marking_types['engraving'] = 'Metszés';
|
||||
$marking_types['scratch'] = 'Karc';
|
||||
$marking_types['stamp'] = 'Bélyeg';
|
||||
$marking_types['overprint'] = 'Felülnyomás';
|
||||
$marking_types['embossing'] = 'Dombornyomás';
|
||||
$marking_types['handwritten'] = 'Kézzel írt';
|
||||
$marking_types['glued'] = 'Ragasztott';
|
||||
$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' => 'Aláírás',
|
||||
'watermark' => 'Vízjel',
|
||||
'engraving' => 'Metszés',
|
||||
'scratch' => 'Karc',
|
||||
'stamp' => 'Bélyeg',
|
||||
'overprint' => 'Felülnyomás',
|
||||
'embossing' => 'Dombornyomás',
|
||||
'handwritten' => 'Kézzel írt',
|
||||
'glued' => 'Ragasztott',
|
||||
'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'] = 'kocka';
|
||||
$object_form_set['cuboid'] = 'téglatest';
|
||||
$object_form_set['sphere'] = 'gömb';
|
||||
$object_form_set['cone'] = 'kúp';
|
||||
$object_form_set['cylinder'] = 'henger';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_form_set' =>
|
||||
array (
|
||||
'cube' => 'kocka',
|
||||
'cuboid' => 'téglatest',
|
||||
'sphere' => 'gömb',
|
||||
'cone' => 'kúp',
|
||||
'cylinder' => 'henger',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$object_publication_background['0'] = 'Kép közzététele';
|
||||
$object_publication_background['1'] = 'Kivonat közzététele';
|
||||
$object_publication_background['2'] = 'Megvitatott';
|
||||
$object_publication_background['3'] = 'Véleményezett';
|
||||
$object_publication_background['4'] = 'Hivatkozott';
|
||||
$object_publication_background['5'] = 'Közzétett';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_publication_background' =>
|
||||
array (
|
||||
0 => 'Kép közzététele',
|
||||
1 => 'Kivonat közzététele',
|
||||
2 => 'Megvitatott',
|
||||
3 => 'Véleményezett',
|
||||
4 => 'Hivatkozott',
|
||||
5 => 'Közzétett',
|
||||
),
|
||||
)
|
@ -1,8 +1,14 @@
|
||||
<?PHP
|
||||
$object_status['owned'] = 'Saját tulajdon';
|
||||
$object_status['permanent_loan'] = 'Tartós kölcsön';
|
||||
$object_status['borrowed'] = 'Kölcsönzött';
|
||||
$object_status['to_check_for_gift'] = 'Műtárgybirálat (adomány)';
|
||||
$object_status['to_check'] = 'Műtárgybirálat (szolgáltatás)';
|
||||
$object_status['deaccessed'] = 'Gyűjteményből kivezetve';
|
||||
$object_status['third_party_property'] = 'Third party property';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_status' =>
|
||||
array (
|
||||
'owned' => 'Saját tulajdon',
|
||||
'permanent_loan' => 'Tartós kölcsön',
|
||||
'borrowed' => 'Kölcsönzött',
|
||||
'to_check_for_gift' => 'Műtárgybirálat (adomány)',
|
||||
'to_check' => 'Műtárgybirálat (szolgáltatás)',
|
||||
'deaccessed' => 'Gyűjteményből kivezetve',
|
||||
'third_party_property' => 'Third party property',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$phone_types['work'] = 'Munkahelyi';
|
||||
$phone_types['home'] = 'Otthoni';
|
||||
$phone_types['mobile'] = 'Mobil';
|
||||
$phone_types['work mobile'] = 'Munkahelyi mobil';
|
||||
$phone_types['fax'] = 'Fax';
|
||||
$phone_types['fax work'] = 'Fax (munkahelyi)';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'phone_types' =>
|
||||
array (
|
||||
'work' => 'Munkahelyi',
|
||||
'home' => 'Otthoni',
|
||||
'mobile' => 'Mobil',
|
||||
'work mobile' => 'Munkahelyi mobil',
|
||||
'fax' => 'Fax',
|
||||
'fax work' => 'Fax (munkahelyi)',
|
||||
),
|
||||
)
|
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$tlPlacetypes['0'] = 'közigazgatási';
|
||||
$tlPlacetypes['1'] = 'történelmi';
|
||||
$tlPlacetypes['2'] = 'régió';
|
||||
$tlPlacetypes['3'] = 'utca';
|
||||
$tlPlacetypes['4'] = 'építmény';
|
||||
$tlPlacetypes['5'] = 'hegyek';
|
||||
$tlPlacetypes['6'] = 'erdő';
|
||||
$tlPlacetypes['7'] = 'folyók/tavak/tengerek';
|
||||
$tlPlacetypes['8'] = 'szigetek';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'tlPlacetypes' =>
|
||||
array (
|
||||
0 => 'közigazgatási',
|
||||
1 => 'történelmi',
|
||||
2 => 'régió',
|
||||
3 => 'utca',
|
||||
4 => 'építmény',
|
||||
5 => 'hegyek',
|
||||
6 => 'erdő',
|
||||
7 => 'folyók/tavak/tengerek',
|
||||
8 => 'szigetek',
|
||||
),
|
||||
)
|
@ -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'] = 'Bal';
|
||||
$position_set['top_left'] = 'Bal felső';
|
||||
$position_set['top'] = 'Felső';
|
||||
$position_set['top_right'] = 'Jobb felső';
|
||||
$position_set['right'] = 'Jobb';
|
||||
$position_set['bottom_right'] = 'Jobb alsó';
|
||||
$position_set['bottom'] = 'Alsó';
|
||||
$position_set['bottom_left'] = 'Bal alsó';
|
||||
$position_set['center'] = 'Közép';
|
||||
$position_set['rear_side'] = 'Hátoldal';
|
||||
$position_set['edge'] = 'Szegély';
|
||||
$position_set['other'] = 'Egyéb';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'position_set' =>
|
||||
array (
|
||||
'left' => 'Bal',
|
||||
'top_left' => 'Bal felső',
|
||||
'top' => 'Felső',
|
||||
'top_right' => 'Jobb felső',
|
||||
'right' => 'Jobb',
|
||||
'bottom_right' => 'Jobb alsó',
|
||||
'bottom' => 'Alsó',
|
||||
'bottom_left' => 'Bal alsó',
|
||||
'center' => 'Közép',
|
||||
'rear_side' => 'Hátoldal',
|
||||
'edge' => 'Szegély',
|
||||
'other' => 'Egyéb',
|
||||
),
|
||||
)
|
@ -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'] = 'Tanulmány';
|
||||
$source_type_set['inbook'] = 'Tanulmánykötet';
|
||||
$source_type_set['book'] = 'Könyv';
|
||||
$source_type_set['phdthesis'] = 'Disszertáció';
|
||||
$source_type_set['electronical'] = 'Elektronikus publikáció';
|
||||
$source_type_set['misc'] = 'Különböző';
|
||||
$source_type_set['patent'] = 'Patent';
|
||||
$source_type_set['unpublished'] = 'Unpublished';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'source_type_set' =>
|
||||
array (
|
||||
'article' => 'Tanulmány',
|
||||
'inbook' => 'Tanulmánykötet',
|
||||
'book' => 'Könyv',
|
||||
'phdthesis' => 'Disszertáció',
|
||||
'electronical' => 'Elektronikus publikáció',
|
||||
'misc' => 'Különböző',
|
||||
'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'] = 'Tudományos';
|
||||
$title_types_set['Everyday speech'] = 'Köznyelvi';
|
||||
$title_types_set['Colloquial speech'] = 'Nyelvjárás';
|
||||
$title_types_set['Dialect'] = 'Dialektus';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'title_types_set' =>
|
||||
array (
|
||||
'' => ' ',
|
||||
'Science' => 'Tudományos',
|
||||
'Everyday speech' => 'Köznyelvi',
|
||||
'Colloquial speech' => 'Nyelvjárás',
|
||||
'Dialect' => 'Dialektus',
|
||||
),
|
||||
)
|
@ -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'] = 'Lemondva';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'todo_status' =>
|
||||
array (
|
||||
'suggested' => 'Suggested',
|
||||
'planned' => 'Planned',
|
||||
'in_progress' => 'In progress',
|
||||
'done' => 'Done',
|
||||
'cancelled' => 'Lemondva',
|
||||
),
|
||||
)
|
@ -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',
|
||||
),
|
||||
)
|
Reference in New Issue
Block a user