Approval.
This commit is contained in:
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$actor_variant_types_set['birth_name'] = 'Birth name';
|
||||
$actor_variant_types_set['married_name'] = 'Married name';
|
||||
$actor_variant_types_set['monastic_name'] = 'Monastic name';
|
||||
$actor_variant_types_set['pseudonym'] = 'Pseudonym';
|
||||
$actor_variant_types_set['regnal_name'] = 'Regnal name';
|
||||
$actor_variant_types_set['nickname'] = 'Nickname';
|
||||
$actor_variant_types_set['artist_name'] = 'Artist name';
|
||||
$actor_variant_types_set['civil_name'] = 'Civil name';
|
||||
$actor_variant_types_set['generic_other_name'] = 'Alternative Name (generic)';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'actor_variant_types_set' =>
|
||||
array (
|
||||
'birth_name' => 'Birth name',
|
||||
'married_name' => 'Married name',
|
||||
'monastic_name' => 'Monastic name',
|
||||
'pseudonym' => 'Pseudonym',
|
||||
'regnal_name' => 'Regnal name',
|
||||
'nickname' => 'Nickname',
|
||||
'artist_name' => 'Artist name',
|
||||
'civil_name' => 'Civil name',
|
||||
'generic_other_name' => 'Alternative Name (generic)',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$appointment_attendance_modes['offline'] = 'Offline';
|
||||
$appointment_attendance_modes['online'] = 'Online';
|
||||
$appointment_attendance_modes['mixed'] = 'Offline and online';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_attendance_modes' =>
|
||||
array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
'mixed' => 'Offline and online',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$appointment_cancellation_status_set['scheduled_done'] = 'Scheduled or done as planned';
|
||||
$appointment_cancellation_status_set['cancelled'] = 'Cancelled';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_cancellation_status_set' =>
|
||||
array (
|
||||
'scheduled_done' => 'Scheduled or done as planned',
|
||||
'cancelled' => 'Cancelled',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$appointment_contributor_roles['organizer'] = 'Organizer';
|
||||
$appointment_contributor_roles['presenter'] = 'Presenter';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_contributor_roles' =>
|
||||
array (
|
||||
'organizer' => 'Organizer',
|
||||
'presenter' => 'Presenter',
|
||||
),
|
||||
)
|
@ -1,5 +1,11 @@
|
||||
<?PHP
|
||||
$appointment_status['scheduled'] = 'Scheduled';
|
||||
$appointment_status['cancelled'] = 'Cancelled';
|
||||
$appointment_status['moved_online'] = 'Moved online';
|
||||
$appointment_status['postponed'] = 'Postponed';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_status' =>
|
||||
array (
|
||||
'scheduled' => 'Scheduled',
|
||||
'cancelled' => 'Cancelled',
|
||||
'moved_online' => 'Moved online',
|
||||
'postponed' => 'Postponed',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$attendance_status_set['offline'] = 'Offline';
|
||||
$attendance_status_set['online'] = 'Online';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'attendance_status_set' =>
|
||||
array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
),
|
||||
)
|
@ -1,5 +1,11 @@
|
||||
<?PHP
|
||||
$closer_location_types_set['0'] = '';
|
||||
$closer_location_types_set['1'] = 'Place of recording';
|
||||
$closer_location_types_set['2'] = 'Place of discovery';
|
||||
$closer_location_types_set['3'] = 'Former place';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'closer_location_types_set' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Place of recording',
|
||||
2 => 'Place of discovery',
|
||||
3 => 'Former place',
|
||||
),
|
||||
)
|
@ -1,17 +1,23 @@
|
||||
<?PHP
|
||||
$colors_set['black'] = 'Black';
|
||||
$colors_set['green'] = 'Green';
|
||||
$colors_set['silver'] = 'Silver';
|
||||
$colors_set['lime'] = 'Lime';
|
||||
$colors_set['gray'] = 'Gray';
|
||||
$colors_set['olive'] = 'Olive';
|
||||
$colors_set['white'] = 'White';
|
||||
$colors_set['yellow'] = 'Yellow';
|
||||
$colors_set['maroon'] = 'Maroon';
|
||||
$colors_set['navy'] = 'Navy';
|
||||
$colors_set['red'] = 'Red';
|
||||
$colors_set['blue'] = 'Blue';
|
||||
$colors_set['purple'] = 'Purple';
|
||||
$colors_set['teal'] = 'Teal';
|
||||
$colors_set['fuchsia'] = 'Fuchsia';
|
||||
$colors_set['aqua'] = 'Aqua';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'colors_set' =>
|
||||
array (
|
||||
'black' => 'Black',
|
||||
'green' => 'Green',
|
||||
'silver' => 'Silver',
|
||||
'lime' => 'Lime',
|
||||
'gray' => 'Gray',
|
||||
'olive' => 'Olive',
|
||||
'white' => 'White',
|
||||
'yellow' => 'Yellow',
|
||||
'maroon' => 'Maroon',
|
||||
'navy' => 'Navy',
|
||||
'red' => 'Red',
|
||||
'blue' => 'Blue',
|
||||
'purple' => 'Purple',
|
||||
'teal' => 'Teal',
|
||||
'fuchsia' => 'Fuchsia',
|
||||
'aqua' => 'Aqua',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$conservation_report_type_set['damage'] = 'Kerusakan';
|
||||
$conservation_report_type_set['conservation'] = 'Konservasi';
|
||||
$conservation_report_type_set['condition'] = 'Kondisi';
|
||||
$conservation_report_type_set['restoration'] = 'Restorasi';
|
||||
$conservation_report_type_set['other_report'] = 'Laporan lain';
|
||||
$conservation_report_type_set['other'] = 'Laporan lain';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'conservation_report_type_set' =>
|
||||
array (
|
||||
'damage' => 'Kerusakan',
|
||||
'conservation' => 'Konservasi',
|
||||
'condition' => 'Kondisi',
|
||||
'restoration' => 'Restorasi',
|
||||
'other_report' => 'Laporan lain',
|
||||
'other' => 'Laporan lain',
|
||||
),
|
||||
)
|
@ -1,21 +1,30 @@
|
||||
<?PHP
|
||||
$currencies_set['eu-EUR'] = 'Euro';
|
||||
$currencies_set['de-DM'] = 'Deutsche Mark';
|
||||
$currencies_set['de-RM'] = 'Reichsmark (Jerman)';
|
||||
$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'] = 'IDR';
|
||||
$currencies_set['pl-Złoty'] = 'Złoty';
|
||||
$currencies_set['us-USD'] = 'US Dollar';
|
||||
$currencies_set['ddr-Mark'] = 'Mark (GDR)';
|
||||
$currencies_set['ddr-MDN'] = 'MDN (GDR)';
|
||||
$currencies_set['hu-Korona'] = 'Austro-Hungarian krone';
|
||||
$currencies_set['fr-FF'] = 'French Franc';
|
||||
$currencies_set['uk-GBP'] = 'Pound Sterling';
|
||||
$currencies_set['by-BYN'] = 'Belarusian ruble';
|
||||
$currencies_set['ru-RUB'] = 'Russian ruble';
|
||||
$currencies_set['su-SUR'] = 'Soviet ruble';
|
||||
$currencies_set['ua-UAH'] = 'Ukrainian hryvnia';
|
||||
$license_full_names['CC BY-NC-ND'] = 'Attribution - Non Commercial - No Derivates';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'currencies_set' =>
|
||||
array (
|
||||
'eu-EUR' => 'Euro',
|
||||
'de-DM' => 'Deutsche Mark',
|
||||
'de-RM' => 'Reichsmark (Jerman)',
|
||||
'es-Real' => 'Spanish Real',
|
||||
'hu-Ft' => 'Forint',
|
||||
'hu-Lari' => 'Lari',
|
||||
'hu-Pengő' => 'Pengő',
|
||||
'id-IDR' => 'IDR',
|
||||
'pl-Złoty' => 'Złoty',
|
||||
'us-USD' => 'US Dollar',
|
||||
'ddr-Mark' => 'Mark (GDR)',
|
||||
'ddr-MDN' => 'MDN (GDR)',
|
||||
'hu-Korona' => 'Austro-Hungarian krone',
|
||||
'fr-FF' => 'French Franc',
|
||||
'uk-GBP' => 'Pound Sterling',
|
||||
'by-BYN' => 'Belarusian ruble',
|
||||
'ru-RUB' => 'Russian ruble',
|
||||
'su-SUR' => 'Soviet ruble',
|
||||
'ua-UAH' => 'Ukrainian hryvnia',
|
||||
),
|
||||
'license_full_names' =>
|
||||
array (
|
||||
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
|
||||
),
|
||||
)
|
@ -1,5 +1,11 @@
|
||||
<?PHP
|
||||
$custom_report_targets_set['object_single'] = 'Single object';
|
||||
$custom_report_targets_set['object_list'] = 'Multiple objects';
|
||||
$custom_report_targets_set['loan'] = 'Loan';
|
||||
$custom_report_targets_set['exhibition'] = 'Exhibition';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'custom_report_targets_set' =>
|
||||
array (
|
||||
'object_single' => 'Single object',
|
||||
'object_list' => 'Multiple objects',
|
||||
'loan' => 'Loan',
|
||||
'exhibition' => 'Exhibition',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$disposal_method_set['sold'] = 'Sold';
|
||||
$disposal_method_set['destroyed'] = 'Destroyed';
|
||||
$disposal_method_set['garbage'] = 'Thrown away / garbage collection';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'disposal_method_set' =>
|
||||
array (
|
||||
'sold' => 'Sold',
|
||||
'destroyed' => 'Destroyed',
|
||||
'garbage' => 'Thrown away / garbage collection',
|
||||
),
|
||||
)
|
@ -1,19 +1,25 @@
|
||||
<?PHP
|
||||
$entry_types['0'] = '';
|
||||
$entry_types['1'] = 'Donasi';
|
||||
$entry_types['2'] = 'Pembelian';
|
||||
$entry_types['3'] = 'Penggalian';
|
||||
$entry_types['4'] = 'Pelepasan';
|
||||
$entry_types['5'] = 'Warisan';
|
||||
$entry_types['6'] = 'Sumbangan';
|
||||
$entry_types['7'] = 'Perampasan';
|
||||
$entry_types['8'] = 'Stok lama';
|
||||
$entry_types['9'] = 'Pinjaman';
|
||||
$entry_types['10'] = 'Tukaran';
|
||||
$entry_types['11'] = 'Produksi sendiri';
|
||||
$entry_types['12'] = 'Material Strain (Törzsanyag)';
|
||||
$entry_types['14'] = 'Vorlass';
|
||||
$entry_types['15'] = 'Temukan';
|
||||
$entry_types['98'] = 'Harus dicek';
|
||||
$entry_types['99'] = 'Akuisisi sah yang lain';
|
||||
$entry_types['16'] = 'Pinjaman permanen';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'entry_types' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Donasi',
|
||||
2 => 'Pembelian',
|
||||
3 => 'Penggalian',
|
||||
4 => 'Pelepasan',
|
||||
5 => 'Warisan',
|
||||
6 => 'Sumbangan',
|
||||
7 => 'Perampasan',
|
||||
8 => 'Stok lama',
|
||||
9 => 'Pinjaman',
|
||||
10 => 'Tukaran',
|
||||
11 => 'Produksi sendiri',
|
||||
12 => 'Material Strain (Törzsanyag)',
|
||||
14 => 'Vorlass',
|
||||
15 => 'Temukan',
|
||||
98 => 'Harus dicek',
|
||||
99 => 'Akuisisi sah yang lain',
|
||||
16 => 'Pinjaman permanen',
|
||||
),
|
||||
)
|
@ -1,49 +1,55 @@
|
||||
<?PHP
|
||||
$eventname['1'] = 'Dibuat';
|
||||
$eventname['2'] = 'Ditemukan';
|
||||
$eventname['3'] = 'Diterbitkan';
|
||||
$eventname['4'] = 'Contoh dibuat';
|
||||
$eventname['5'] = 'Ditunjukkan (orang)';
|
||||
$eventname['6'] = 'Digunakan';
|
||||
$eventname['7'] = 'Ditulis';
|
||||
$eventname['8'] = 'Dikumpulkan';
|
||||
$eventname['9'] = 'Dilukis';
|
||||
$eventname['10'] = 'Diambil';
|
||||
$eventname['11'] = 'Diterima';
|
||||
$eventname['12'] = 'Pelat cetak dibuat';
|
||||
$eventname['13'] = 'Dikirim';
|
||||
$eventname['14'] = 'Dibahas';
|
||||
$eventname['15'] = 'Ditandatangani';
|
||||
$eventname['16'] = 'Dideskripsi pada pertama kali';
|
||||
$eventname['19'] = 'Digambar';
|
||||
$eventname['20'] = 'Dicopy';
|
||||
$eventname['21'] = 'Hidup';
|
||||
$eventname['22'] = '[Kaitan geografis]';
|
||||
$eventname['23'] = '[Kaitan orang/lembaga]';
|
||||
$eventname['24'] = '[Kaitan waktu]';
|
||||
$eventname['25'] = 'Dipesan';
|
||||
$eventname['26'] = 'Dicetak';
|
||||
$eventname['27'] = 'Dicerita';
|
||||
$eventname['28'] = 'Dinyanyi';
|
||||
$eventname['29'] = 'Dekorasi diciptakan';
|
||||
$eventname['30'] = 'Rupa diciptakan';
|
||||
$eventname['31'] = 'Dirupakan';
|
||||
$eventname['32'] = 'Ditandai';
|
||||
$eventname['33'] = 'Disebut';
|
||||
$eventname['34'] = 'Dikuburkan';
|
||||
$eventname['35'] = 'Penciptaan';
|
||||
$eventname['36'] = 'Ditunjukkan (tempat)';
|
||||
$eventname['37'] = 'Terlukis';
|
||||
$eventname['38'] = 'Gambaran (buku)';
|
||||
$eventname['39'] = 'Assembled';
|
||||
$eventname['40'] = 'Auctioned';
|
||||
$eventname['41'] = 'Bought';
|
||||
$eventname['42'] = 'Owned';
|
||||
$eventname['43'] = 'Sold';
|
||||
$eventname['44'] = 'Restorated';
|
||||
$eventname['45'] = 'Damaged';
|
||||
$eventname['46'] = 'Destroyed';
|
||||
$eventname['47'] = 'Lost';
|
||||
$eventname['48'] = 'Edited';
|
||||
$eventname['49'] = 'Donated / present';
|
||||
$eventname['50'] = 'Inherited';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'eventname' =>
|
||||
array (
|
||||
1 => 'Dibuat',
|
||||
2 => 'Ditemukan',
|
||||
3 => 'Diterbitkan',
|
||||
4 => 'Contoh dibuat',
|
||||
5 => 'Ditunjukkan (orang)',
|
||||
6 => 'Digunakan',
|
||||
7 => 'Ditulis',
|
||||
8 => 'Dikumpulkan',
|
||||
9 => 'Dilukis',
|
||||
10 => 'Diambil',
|
||||
11 => 'Diterima',
|
||||
12 => 'Pelat cetak dibuat',
|
||||
13 => 'Dikirim',
|
||||
14 => 'Dibahas',
|
||||
15 => 'Ditandatangani',
|
||||
16 => 'Dideskripsi pada pertama kali',
|
||||
19 => 'Digambar',
|
||||
20 => 'Dicopy',
|
||||
21 => 'Hidup',
|
||||
22 => '[Kaitan geografis]',
|
||||
23 => '[Kaitan orang/lembaga]',
|
||||
24 => '[Kaitan waktu]',
|
||||
25 => 'Dipesan',
|
||||
26 => 'Dicetak',
|
||||
27 => 'Dicerita',
|
||||
28 => 'Dinyanyi',
|
||||
29 => 'Dekorasi diciptakan',
|
||||
30 => 'Rupa diciptakan',
|
||||
31 => 'Dirupakan',
|
||||
32 => 'Ditandai',
|
||||
33 => 'Disebut',
|
||||
34 => 'Dikuburkan',
|
||||
35 => 'Penciptaan',
|
||||
36 => 'Ditunjukkan (tempat)',
|
||||
37 => 'Terlukis',
|
||||
38 => 'Gambaran (buku)',
|
||||
39 => 'Assembled',
|
||||
40 => 'Auctioned',
|
||||
41 => 'Bought',
|
||||
42 => 'Owned',
|
||||
43 => 'Sold',
|
||||
44 => 'Restorated',
|
||||
45 => 'Damaged',
|
||||
46 => 'Destroyed',
|
||||
47 => 'Lost',
|
||||
48 => 'Edited',
|
||||
49 => 'Donated / present',
|
||||
50 => 'Inherited',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$exhibition_contributor_roles['concept'] = 'Concept';
|
||||
$exhibition_contributor_roles['curator'] = 'Curator';
|
||||
$exhibition_contributor_roles['design'] = 'Design';
|
||||
$exhibition_contributor_roles['coordinator'] = 'Coordinator';
|
||||
$exhibition_contributor_roles['protagonist'] = 'Protagonist';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'exhibition_contributor_roles' =>
|
||||
array (
|
||||
'concept' => 'Concept',
|
||||
'curator' => 'Curator',
|
||||
'design' => 'Design',
|
||||
'coordinator' => 'Coordinator',
|
||||
'protagonist' => 'Protagonist',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$gender_set['female'] = 'Female';
|
||||
$gender_set['male'] = 'Male';
|
||||
$gender_set['other'] = 'Other';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'gender_set' =>
|
||||
array (
|
||||
'female' => 'Female',
|
||||
'male' => 'Male',
|
||||
'other' => 'Other',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_explica['CC BY-NC-SA'] = 'For non commercial purposes the material might be used (even changed) freely if the attribution is given. Rights status has to be kept as it is in case of distribution.';
|
||||
$license_explica['CC BY-NC-ND'] = 'For non commercial purposes the material might be used freely if the attribution is given. It may not be altered.';
|
||||
$license_explica['CC BY-NC'] = 'For non commercial purposes the material might be used freely if the attribution is given.';
|
||||
$license_explica['CC BY-ND'] = 'The material might be used freely if the attribution is given. It may not be altered.';
|
||||
$license_explica['CC BY-SA'] = 'The material might be used freely (and even altered) if the attribution is given. Rights status has to be kept as it is in case of distribution.';
|
||||
$license_explica['CC BY'] = 'The material might be used freely (and even altered) if the attribution is given.';
|
||||
$license_explica['CC0'] = 'No Rights Reserved. You only should use CC0 if you have the right to waive all rights.';
|
||||
$license_explica['RR-F'] = 'Free access - no reuse.';
|
||||
$license_explica['RR-P'] = 'Paid access - no reuse. Previews might be freely accessible.';
|
||||
$license_explica['RR-R'] = 'Restricted access. Reserved rights.';
|
||||
$license_explica['Orphan Work'] = 'The rightsholder could not be determined. The work is listed at the EU list of orphan works.';
|
||||
$license_explica['Public Domain Mark'] = 'This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_explica' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'For non commercial purposes the material might be used (even changed) freely if the attribution is given. Rights status has to be kept as it is in case of distribution.',
|
||||
'CC BY-NC-ND' => 'For non commercial purposes the material might be used freely if the attribution is given. It may not be altered.',
|
||||
'CC BY-NC' => 'For non commercial purposes the material might be used freely if the attribution is given.',
|
||||
'CC BY-ND' => 'The material might be used freely if the attribution is given. It may not be altered.',
|
||||
'CC BY-SA' => 'The material might be used freely (and even altered) if the attribution is given. Rights status has to be kept as it is in case of distribution.',
|
||||
'CC BY' => 'The material might be used freely (and even altered) if the attribution is given.',
|
||||
'CC0' => 'No Rights Reserved. You only should use CC0 if you have the right to waive all rights.',
|
||||
'RR-F' => 'Free access - no reuse.',
|
||||
'RR-P' => 'Paid access - no reuse. Previews might be freely accessible.',
|
||||
'RR-R' => 'Restricted access. Reserved rights.',
|
||||
'Orphan Work' => 'The rightsholder could not be determined. The work is listed at the EU list of orphan works.',
|
||||
'Public Domain Mark' => 'This work has been identified as being free of known restrictions under copyright law, including all related and neighboring rights.',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_full_names['CC BY-NC-SA'] = 'Atribusi-NonKomersial-BerbagiSerupa';
|
||||
$license_full_names['CC BY-NC'] = 'Atribusi-NonKomersial';
|
||||
$license_full_names['CC BY-ND'] = 'Atribusi-TanpaTurunan';
|
||||
$license_full_names['CC BY-SA'] = 'Atribusi-BerbagiSerupa';
|
||||
$license_full_names['CC BY'] = 'Atribusi';
|
||||
$license_full_names['CC0'] = ' Dedikasi Domain Publik ';
|
||||
$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'] = ' Domain Publik ';
|
||||
$license_full_names['CC BY-NC-ND'] = 'Atribusi-NonKomersial-TanpaTurunan';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_full_names' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'Atribusi-NonKomersial-BerbagiSerupa',
|
||||
'CC BY-NC' => 'Atribusi-NonKomersial',
|
||||
'CC BY-ND' => 'Atribusi-TanpaTurunan',
|
||||
'CC BY-SA' => 'Atribusi-BerbagiSerupa',
|
||||
'CC BY' => 'Atribusi',
|
||||
'CC0' => ' Dedikasi Domain Publik ',
|
||||
'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' => ' Domain Publik ',
|
||||
'CC BY-NC-ND' => 'Atribusi-NonKomersial-TanpaTurunan',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_url['CC BY-NC-SA'] = 'https://creativecommons.org/licenses/by-nc-sa/4.0/';
|
||||
$license_url['CC BY-NC-ND'] = 'https://creativecommons.org/licenses/by-nc-nd/4.0/';
|
||||
$license_url['CC BY-NC'] = 'https://creativecommons.org/licenses/by-nc/4.0/';
|
||||
$license_url['CC BY-ND'] = 'https://creativecommons.org/licenses/by-nd/4.0/';
|
||||
$license_url['CC BY-SA'] = 'https://creativecommons.org/licenses/by-sa/4.0/';
|
||||
$license_url['CC BY'] = 'https://creativecommons.org/licenses/by/4.0/';
|
||||
$license_url['CC0'] = 'https://creativecommons.org/publicdomain/zero/1.0/';
|
||||
$license_url['RR-F'] = 'http://www.europeana.eu/rights/rr-f/';
|
||||
$license_url['RR-P'] = 'http://www.europeana.eu/rights/rr-p/';
|
||||
$license_url['RR-R'] = 'http://www.europeana.eu/rights/rr-r/';
|
||||
$license_url['Orphan Work'] = 'http://www.europeana.eu/rights/orphan-work-eu/';
|
||||
$license_url['Public Domain Mark'] = 'https://creativecommons.org/publicdomain/mark/1.0/';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_url' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
|
||||
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-nd/4.0/',
|
||||
'CC BY-NC' => 'https://creativecommons.org/licenses/by-nc/4.0/',
|
||||
'CC BY-ND' => 'https://creativecommons.org/licenses/by-nd/4.0/',
|
||||
'CC BY-SA' => 'https://creativecommons.org/licenses/by-sa/4.0/',
|
||||
'CC BY' => 'https://creativecommons.org/licenses/by/4.0/',
|
||||
'CC0' => 'https://creativecommons.org/publicdomain/zero/1.0/',
|
||||
'RR-F' => 'http://www.europeana.eu/rights/rr-f/',
|
||||
'RR-P' => 'http://www.europeana.eu/rights/rr-p/',
|
||||
'RR-R' => 'http://www.europeana.eu/rights/rr-r/',
|
||||
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/',
|
||||
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$loan_types['outgoing'] = 'Outgoing';
|
||||
$loan_types['incoming'] = 'Incoming';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'loan_types' =>
|
||||
array (
|
||||
'outgoing' => 'Outgoing',
|
||||
'incoming' => 'Incoming',
|
||||
),
|
||||
)
|
@ -1,20 +1,26 @@
|
||||
<?PHP
|
||||
$marking_types['signature'] = 'Tanda tangan';
|
||||
$marking_types['watermark'] = 'Tanda air';
|
||||
$marking_types['engraving'] = 'Ukiran';
|
||||
$marking_types['scratch'] = 'Goresan';
|
||||
$marking_types['stamp'] = 'Cap';
|
||||
$marking_types['overprint'] = 'Cetak berlebih';
|
||||
$marking_types['embossing'] = 'Ditatah';
|
||||
$marking_types['handwritten'] = 'Tulisan tangan';
|
||||
$marking_types['glued'] = 'Glued';
|
||||
$marking_types['embroidered'] = 'Embroidered';
|
||||
$marking_types['sewn'] = 'Sewn';
|
||||
$marking_types['screwed'] = 'Screwed';
|
||||
$marking_types['burnt_in'] = 'Burnt in';
|
||||
$marking_types['riveted'] = 'Riveted';
|
||||
$marking_types['nailed'] = 'Nailed';
|
||||
$marking_types['hallmarked'] = 'Hallmarked';
|
||||
$marking_types['punched'] = 'Punched';
|
||||
$marking_types['scarified'] = 'Scarified';
|
||||
$marking_types['cast'] = 'Cast';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'marking_types' =>
|
||||
array (
|
||||
'signature' => 'Tanda tangan',
|
||||
'watermark' => 'Tanda air',
|
||||
'engraving' => 'Ukiran',
|
||||
'scratch' => 'Goresan',
|
||||
'stamp' => 'Cap',
|
||||
'overprint' => 'Cetak berlebih',
|
||||
'embossing' => 'Ditatah',
|
||||
'handwritten' => 'Tulisan tangan',
|
||||
'glued' => 'Glued',
|
||||
'embroidered' => 'Embroidered',
|
||||
'sewn' => 'Sewn',
|
||||
'screwed' => 'Screwed',
|
||||
'burnt_in' => 'Burnt in',
|
||||
'riveted' => 'Riveted',
|
||||
'nailed' => 'Nailed',
|
||||
'hallmarked' => 'Hallmarked',
|
||||
'punched' => 'Punched',
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$object_check_types_set['condition_check'] = 'Condition check';
|
||||
$object_check_types_set['completeness_check'] = 'Completeness check';
|
||||
$object_check_types_set['data_correctness_check'] = 'Data correctness check';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_check_types_set' =>
|
||||
array (
|
||||
'condition_check' => 'Condition check',
|
||||
'completeness_check' => 'Completeness check',
|
||||
'data_correctness_check' => 'Data correctness check',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$object_damage_status_set['identified'] = 'Identified';
|
||||
$object_damage_status_set['repair_possible'] = 'Reviewed; repair possible';
|
||||
$object_damage_status_set['repair_scheduled'] = 'Repair scheduled';
|
||||
$object_damage_status_set['repaired'] = 'Repaired';
|
||||
$object_damage_status_set['irreparable'] = 'Irreparable';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_damage_status_set' =>
|
||||
array (
|
||||
'identified' => 'Identified',
|
||||
'repair_possible' => 'Reviewed; repair possible',
|
||||
'repair_scheduled' => 'Repair scheduled',
|
||||
'repaired' => 'Repaired',
|
||||
'irreparable' => 'Irreparable',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$object_damage_types_set['water_damage'] = 'Water damage';
|
||||
$object_damage_types_set['breakage'] = 'Breakage';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_damage_types_set' =>
|
||||
array (
|
||||
'water_damage' => 'Water damage',
|
||||
'breakage' => 'Breakage',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$object_form_set['cube'] = 'Cube';
|
||||
$object_form_set['cuboid'] = 'Cuboid';
|
||||
$object_form_set['sphere'] = 'Sphere';
|
||||
$object_form_set['cone'] = 'Cone';
|
||||
$object_form_set['cylinder'] = 'Cylinder';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_form_set' =>
|
||||
array (
|
||||
'cube' => 'Cube',
|
||||
'cuboid' => 'Cuboid',
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$object_publication_background['0'] = 'Gambaran diterbitkan';
|
||||
$object_publication_background['1'] = 'Transkrip diterbitkan';
|
||||
$object_publication_background['2'] = 'Terdiskusi';
|
||||
$object_publication_background['3'] = 'Ditinjau';
|
||||
$object_publication_background['4'] = 'Direferensikan';
|
||||
$object_publication_background['5'] = 'Diiklankan';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_publication_background' =>
|
||||
array (
|
||||
0 => 'Gambaran diterbitkan',
|
||||
1 => 'Transkrip diterbitkan',
|
||||
2 => 'Terdiskusi',
|
||||
3 => 'Ditinjau',
|
||||
4 => 'Direferensikan',
|
||||
5 => 'Diiklankan',
|
||||
),
|
||||
)
|
@ -1,8 +1,14 @@
|
||||
<?PHP
|
||||
$object_status['owned'] = 'Owned';
|
||||
$object_status['permanent_loan'] = 'Permanent loan';
|
||||
$object_status['borrowed'] = 'Borrowed';
|
||||
$object_status['to_check_for_gift'] = 'To check (for gift)';
|
||||
$object_status['to_check'] = 'To check';
|
||||
$object_status['deaccessed'] = 'Deaccessed';
|
||||
$object_status['third_party_property'] = 'Third party property';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_status' =>
|
||||
array (
|
||||
'owned' => 'Owned',
|
||||
'permanent_loan' => 'Permanent loan',
|
||||
'borrowed' => 'Borrowed',
|
||||
'to_check_for_gift' => 'To check (for gift)',
|
||||
'to_check' => 'To check',
|
||||
'deaccessed' => 'Deaccessed',
|
||||
'third_party_property' => 'Third party property',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$phone_types['work'] = 'Work';
|
||||
$phone_types['home'] = 'Home';
|
||||
$phone_types['mobile'] = 'Mobile';
|
||||
$phone_types['work mobile'] = 'Work mobile';
|
||||
$phone_types['fax'] = 'Fax';
|
||||
$phone_types['fax work'] = 'Fax (Work)';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'phone_types' =>
|
||||
array (
|
||||
'work' => 'Work',
|
||||
'home' => 'Home',
|
||||
'mobile' => 'Mobile',
|
||||
'work mobile' => 'Work mobile',
|
||||
'fax' => 'Fax',
|
||||
'fax work' => 'Fax (Work)',
|
||||
),
|
||||
)
|
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$tlPlacetypes['0'] = 'Resmi';
|
||||
$tlPlacetypes['1'] = 'Sejarah';
|
||||
$tlPlacetypes['2'] = 'Wilayah';
|
||||
$tlPlacetypes['3'] = 'Jalan';
|
||||
$tlPlacetypes['4'] = 'Gedung';
|
||||
$tlPlacetypes['5'] = 'Gunung';
|
||||
$tlPlacetypes['6'] = 'Hutan';
|
||||
$tlPlacetypes['7'] = 'Badan air';
|
||||
$tlPlacetypes['8'] = 'Pulau';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'tlPlacetypes' =>
|
||||
array (
|
||||
0 => 'Resmi',
|
||||
1 => 'Sejarah',
|
||||
2 => 'Wilayah',
|
||||
3 => 'Jalan',
|
||||
4 => 'Gedung',
|
||||
5 => 'Gunung',
|
||||
6 => 'Hutan',
|
||||
7 => 'Badan air',
|
||||
8 => 'Pulau',
|
||||
),
|
||||
)
|
@ -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'] = 'Kiri';
|
||||
$position_set['top_left'] = 'Kiri atas';
|
||||
$position_set['top'] = 'Atas';
|
||||
$position_set['top_right'] = 'Kanan atas';
|
||||
$position_set['right'] = 'Kanan';
|
||||
$position_set['bottom_right'] = 'Bawah kanan';
|
||||
$position_set['bottom'] = 'Bawah';
|
||||
$position_set['bottom_left'] = 'Bawah kiri';
|
||||
$position_set['center'] = 'Pusat';
|
||||
$position_set['rear_side'] = 'Belakang';
|
||||
$position_set['edge'] = 'Pinggir';
|
||||
$position_set['other'] = 'Lain';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'position_set' =>
|
||||
array (
|
||||
'left' => 'Kiri',
|
||||
'top_left' => 'Kiri atas',
|
||||
'top' => 'Atas',
|
||||
'top_right' => 'Kanan atas',
|
||||
'right' => 'Kanan',
|
||||
'bottom_right' => 'Bawah kanan',
|
||||
'bottom' => 'Bawah',
|
||||
'bottom_left' => 'Bawah kiri',
|
||||
'center' => 'Pusat',
|
||||
'rear_side' => 'Belakang',
|
||||
'edge' => 'Pinggir',
|
||||
'other' => 'Lain',
|
||||
),
|
||||
)
|
@ -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'] = 'Artikel';
|
||||
$source_type_set['inbook'] = 'Artikel dalam kumpulan';
|
||||
$source_type_set['book'] = 'Buku';
|
||||
$source_type_set['phdthesis'] = 'Skripsi S3';
|
||||
$source_type_set['electronical'] = 'Sumber waringan';
|
||||
$source_type_set['misc'] = 'Lain-lain';
|
||||
$source_type_set['patent'] = 'Patent';
|
||||
$source_type_set['unpublished'] = 'Unpublished';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'source_type_set' =>
|
||||
array (
|
||||
'article' => 'Artikel',
|
||||
'inbook' => 'Artikel dalam kumpulan',
|
||||
'book' => 'Buku',
|
||||
'phdthesis' => 'Skripsi S3',
|
||||
'electronical' => 'Sumber waringan',
|
||||
'misc' => 'Lain-lain',
|
||||
'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'] = 'Ilmu';
|
||||
$title_types_set['Everyday speech'] = 'Bahasa sehari-hari';
|
||||
$title_types_set['Colloquial speech'] = 'Bahasa gaul';
|
||||
$title_types_set['Dialect'] = 'Dialek';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'title_types_set' =>
|
||||
array (
|
||||
'' => ' ',
|
||||
'Science' => 'Ilmu',
|
||||
'Everyday speech' => 'Bahasa sehari-hari',
|
||||
'Colloquial speech' => 'Bahasa gaul',
|
||||
'Dialect' => 'Dialek',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$todo_status['suggested'] = 'Suggested';
|
||||
$todo_status['planned'] = 'Planned';
|
||||
$todo_status['in_progress'] = 'In progress';
|
||||
$todo_status['done'] = 'Done';
|
||||
$todo_status['cancelled'] = 'Cancelled';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'todo_status' =>
|
||||
array (
|
||||
'suggested' => 'Suggested',
|
||||
'planned' => 'Planned',
|
||||
'in_progress' => 'In progress',
|
||||
'done' => 'Done',
|
||||
'cancelled' => 'Cancelled',
|
||||
),
|
||||
)
|
@ -1,7 +1,13 @@
|
||||
<?PHP
|
||||
$units_length_set['m'] = 'm';
|
||||
$units_length_set['dm'] = 'dm';
|
||||
$units_length_set['cm'] = 'cm';
|
||||
$units_length_set['mm'] = 'mm';
|
||||
$units_length_set['ft'] = 'ft';
|
||||
$units_length_set['in'] = 'inch';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'units_length_set' =>
|
||||
array (
|
||||
'm' => 'm',
|
||||
'dm' => 'dm',
|
||||
'cm' => 'cm',
|
||||
'mm' => 'mm',
|
||||
'ft' => 'ft',
|
||||
'in' => 'inch',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$units_weight_set['t'] = 't';
|
||||
$units_weight_set['kg'] = 'kg';
|
||||
$units_weight_set['g'] = 'g';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'units_weight_set' =>
|
||||
array (
|
||||
't' => 't',
|
||||
'kg' => 'kg',
|
||||
'g' => 'g',
|
||||
),
|
||||
)
|
Reference in New Issue
Block a user