Approval.
This commit is contained in:
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$actor_variant_types_set['birth_name'] = 'Nom de naissance';
|
||||
$actor_variant_types_set['married_name'] = 'Nom d\'épouse';
|
||||
$actor_variant_types_set['monastic_name'] = 'Nom d’emprunt';
|
||||
$actor_variant_types_set['pseudonym'] = 'Pseudonyme';
|
||||
$actor_variant_types_set['regnal_name'] = 'Nom légal';
|
||||
$actor_variant_types_set['nickname'] = 'Surnom';
|
||||
$actor_variant_types_set['artist_name'] = 'Nom d\'artiste';
|
||||
$actor_variant_types_set['civil_name'] = 'Nom civil';
|
||||
$actor_variant_types_set['generic_other_name'] = 'Orthographe alternative';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'actor_variant_types_set' =>
|
||||
array (
|
||||
'birth_name' => 'Nom de naissance',
|
||||
'married_name' => 'Nom d\'épouse',
|
||||
'monastic_name' => 'Nom d’emprunt',
|
||||
'pseudonym' => 'Pseudonyme',
|
||||
'regnal_name' => 'Nom légal',
|
||||
'nickname' => 'Surnom',
|
||||
'artist_name' => 'Nom d\'artiste',
|
||||
'civil_name' => 'Nom civil',
|
||||
'generic_other_name' => 'Orthographe alternative',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$appointment_attendance_modes['offline'] = 'Hors ligne';
|
||||
$appointment_attendance_modes['online'] = 'En ligne';
|
||||
$appointment_attendance_modes['mixed'] = 'Hors ligne et en ligne';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_attendance_modes' =>
|
||||
array (
|
||||
'offline' => 'Hors ligne',
|
||||
'online' => 'En ligne',
|
||||
'mixed' => 'Hors ligne et en ligne',
|
||||
),
|
||||
)
|
@ -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'] = 'Organisation';
|
||||
$appointment_contributor_roles['presenter'] = 'Intervenant';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_contributor_roles' =>
|
||||
array (
|
||||
'organizer' => 'Organisation',
|
||||
'presenter' => 'Intervenant',
|
||||
),
|
||||
)
|
@ -1,5 +1,11 @@
|
||||
<?PHP
|
||||
$appointment_status['scheduled'] = 'Planifié';
|
||||
$appointment_status['cancelled'] = 'Annulé';
|
||||
$appointment_status['moved_online'] = 'Transformé en événement en ligne';
|
||||
$appointment_status['postponed'] = 'Reporté';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'appointment_status' =>
|
||||
array (
|
||||
'scheduled' => 'Planifié',
|
||||
'cancelled' => 'Annulé',
|
||||
'moved_online' => 'Transformé en événement en ligne',
|
||||
'postponed' => 'Reporté',
|
||||
),
|
||||
)
|
@ -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'] = 'Lieu d’enregistrement';
|
||||
$closer_location_types_set['2'] = 'Lieu de la découverte';
|
||||
$closer_location_types_set['3'] = 'Localisation précédente';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'closer_location_types_set' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Lieu d’enregistrement',
|
||||
2 => 'Lieu de la découverte',
|
||||
3 => 'Localisation précédente',
|
||||
),
|
||||
)
|
@ -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'] = 'Dommages';
|
||||
$conservation_report_type_set['conservation'] = 'Conservation';
|
||||
$conservation_report_type_set['condition'] = 'État';
|
||||
$conservation_report_type_set['restoration'] = 'Restauration';
|
||||
$conservation_report_type_set['other_report'] = 'Autre rapport';
|
||||
$conservation_report_type_set['other'] = 'Autre rapport';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'conservation_report_type_set' =>
|
||||
array (
|
||||
'damage' => 'Dommages',
|
||||
'conservation' => 'Conservation',
|
||||
'condition' => 'État',
|
||||
'restoration' => 'Restauration',
|
||||
'other_report' => 'Autre rapport',
|
||||
'other' => 'Autre rapport',
|
||||
),
|
||||
)
|
@ -1,21 +1,30 @@
|
||||
<?PHP
|
||||
$currencies_set['eu-EUR'] = 'Euro';
|
||||
$currencies_set['de-DM'] = 'Deutsche Mark';
|
||||
$currencies_set['de-RM'] = 'Reichsmark (Empire allemand)';
|
||||
$currencies_set['es-Real'] = 'Real (Espagne)';
|
||||
$currencies_set['hu-Ft'] = 'Forint';
|
||||
$currencies_set['hu-Lari'] = 'Lari';
|
||||
$currencies_set['hu-Pengő'] = 'Pengő';
|
||||
$currencies_set['id-IDR'] = 'Roupie indonésienne';
|
||||
$currencies_set['pl-Złoty'] = 'Złoty';
|
||||
$currencies_set['us-USD'] = 'Dollar américain';
|
||||
$currencies_set['ddr-Mark'] = 'Mark (RDA)';
|
||||
$currencies_set['ddr-MDN'] = 'MDN (RDA)';
|
||||
$currencies_set['hu-Korona'] = 'Couronne austro-hongroise';
|
||||
$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 - pas de dérivés';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'currencies_set' =>
|
||||
array (
|
||||
'eu-EUR' => 'Euro',
|
||||
'de-DM' => 'Deutsche Mark',
|
||||
'de-RM' => 'Reichsmark (Empire allemand)',
|
||||
'es-Real' => 'Real (Espagne)',
|
||||
'hu-Ft' => 'Forint',
|
||||
'hu-Lari' => 'Lari',
|
||||
'hu-Pengő' => 'Pengő',
|
||||
'id-IDR' => 'Roupie indonésienne',
|
||||
'pl-Złoty' => 'Złoty',
|
||||
'us-USD' => 'Dollar américain',
|
||||
'ddr-Mark' => 'Mark (RDA)',
|
||||
'ddr-MDN' => 'MDN (RDA)',
|
||||
'hu-Korona' => 'Couronne austro-hongroise',
|
||||
'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 - pas de dérivés',
|
||||
),
|
||||
)
|
@ -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'] = 'Don';
|
||||
$entry_types['2'] = 'Achat';
|
||||
$entry_types['3'] = 'Fouille';
|
||||
$entry_types['4'] = 'Secours d’urgence';
|
||||
$entry_types['5'] = 'Succession';
|
||||
$entry_types['6'] = 'Fondation';
|
||||
$entry_types['7'] = 'Expropriation';
|
||||
$entry_types['8'] = 'Stock d’origine';
|
||||
$entry_types['9'] = 'Prêt';
|
||||
$entry_types['10'] = 'Échange';
|
||||
$entry_types['11'] = 'Production propre';
|
||||
$entry_types['12'] = 'Déformation du matériau (Törzsanyag)';
|
||||
$entry_types['14'] = 'Abandon';
|
||||
$entry_types['15'] = 'Découverte';
|
||||
$entry_types['98'] = 'Inconnu';
|
||||
$entry_types['99'] = 'Autre accès légitime';
|
||||
$entry_types['16'] = 'Prêt longue durée';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'entry_types' =>
|
||||
array (
|
||||
0 => '',
|
||||
1 => 'Don',
|
||||
2 => 'Achat',
|
||||
3 => 'Fouille',
|
||||
4 => 'Secours d’urgence',
|
||||
5 => 'Succession',
|
||||
6 => 'Fondation',
|
||||
7 => 'Expropriation',
|
||||
8 => 'Stock d’origine',
|
||||
9 => 'Prêt',
|
||||
10 => 'Échange',
|
||||
11 => 'Production propre',
|
||||
12 => 'Déformation du matériau (Törzsanyag)',
|
||||
14 => 'Abandon',
|
||||
15 => 'Découverte',
|
||||
98 => 'Inconnu',
|
||||
99 => 'Autre accès légitime',
|
||||
16 => 'Prêt longue durée',
|
||||
),
|
||||
)
|
@ -1,49 +1,55 @@
|
||||
<?PHP
|
||||
$eventname['1'] = 'Fabriqué';
|
||||
$eventname['2'] = 'Trouvé';
|
||||
$eventname['3'] = 'Publié';
|
||||
$eventname['4'] = 'Présentation';
|
||||
$eventname['5'] = 'A été illustré (acteur)';
|
||||
$eventname['6'] = 'A été utilisé';
|
||||
$eventname['7'] = 'Élaboré';
|
||||
$eventname['8'] = 'Collecté';
|
||||
$eventname['9'] = 'Peint';
|
||||
$eventname['10'] = 'Enregistré';
|
||||
$eventname['11'] = 'Reçu';
|
||||
$eventname['12'] = 'Produit par plaque d’impression';
|
||||
$eventname['13'] = 'Envoyé';
|
||||
$eventname['14'] = 'Fabriqué';
|
||||
$eventname['15'] = 'Signé';
|
||||
$eventname['16'] = 'Première description';
|
||||
$eventname['19'] = 'Dessiné';
|
||||
$eventname['20'] = 'Rédigé';
|
||||
$eventname['21'] = 'A vécu';
|
||||
$eventname['22'] = '[Référence géographique]';
|
||||
$eventname['23'] = '[Référence personne-organisme]';
|
||||
$eventname['24'] = '[Référence temporelle]';
|
||||
$eventname['25'] = 'Demandé';
|
||||
$eventname['26'] = 'Imprimé';
|
||||
$eventname['27'] = 'Parlé';
|
||||
$eventname['28'] = 'Chanté';
|
||||
$eventname['29'] = 'Décoré';
|
||||
$eventname['30'] = 'Forme élaborée';
|
||||
$eventname['31'] = 'Modélisé';
|
||||
$eventname['32'] = 'Signé';
|
||||
$eventname['33'] = 'A été mentionné';
|
||||
$eventname['34'] = 'Enfoui';
|
||||
$eventname['35'] = 'Création intellectuelle';
|
||||
$eventname['36'] = 'A été illustré (lieu)';
|
||||
$eventname['37'] = 'Peint';
|
||||
$eventname['38'] = 'Illustré';
|
||||
$eventname['39'] = 'Regroupé';
|
||||
$eventname['40'] = 'Augmenté';
|
||||
$eventname['41'] = 'Acheté';
|
||||
$eventname['42'] = 'Détenu';
|
||||
$eventname['43'] = 'Vendu';
|
||||
$eventname['44'] = 'Restauré';
|
||||
$eventname['45'] = 'Endommagé';
|
||||
$eventname['46'] = 'Détruit';
|
||||
$eventname['47'] = 'Perdu';
|
||||
$eventname['48'] = 'Édité';
|
||||
$eventname['49'] = 'Donated / present';
|
||||
$eventname['50'] = 'Inherited';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'eventname' =>
|
||||
array (
|
||||
1 => 'Fabriqué',
|
||||
2 => 'Trouvé',
|
||||
3 => 'Publié',
|
||||
4 => 'Présentation',
|
||||
5 => 'A été illustré (acteur)',
|
||||
6 => 'A été utilisé',
|
||||
7 => 'Élaboré',
|
||||
8 => 'Collecté',
|
||||
9 => 'Peint',
|
||||
10 => 'Enregistré',
|
||||
11 => 'Reçu',
|
||||
12 => 'Produit par plaque d’impression',
|
||||
13 => 'Envoyé',
|
||||
14 => 'Fabriqué',
|
||||
15 => 'Signé',
|
||||
16 => 'Première description',
|
||||
19 => 'Dessiné',
|
||||
20 => 'Rédigé',
|
||||
21 => 'A vécu',
|
||||
22 => '[Référence géographique]',
|
||||
23 => '[Référence personne-organisme]',
|
||||
24 => '[Référence temporelle]',
|
||||
25 => 'Demandé',
|
||||
26 => 'Imprimé',
|
||||
27 => 'Parlé',
|
||||
28 => 'Chanté',
|
||||
29 => 'Décoré',
|
||||
30 => 'Forme élaborée',
|
||||
31 => 'Modélisé',
|
||||
32 => 'Signé',
|
||||
33 => 'A été mentionné',
|
||||
34 => 'Enfoui',
|
||||
35 => 'Création intellectuelle',
|
||||
36 => 'A été illustré (lieu)',
|
||||
37 => 'Peint',
|
||||
38 => 'Illustré',
|
||||
39 => 'Regroupé',
|
||||
40 => 'Augmenté',
|
||||
41 => 'Acheté',
|
||||
42 => 'Détenu',
|
||||
43 => 'Vendu',
|
||||
44 => 'Restauré',
|
||||
45 => 'Endommagé',
|
||||
46 => 'Détruit',
|
||||
47 => 'Perdu',
|
||||
48 => 'Édité',
|
||||
49 => 'Donated / present',
|
||||
50 => 'Inherited',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$exhibition_contributor_roles['concept'] = 'Concept';
|
||||
$exhibition_contributor_roles['curator'] = 'Conservateur';
|
||||
$exhibition_contributor_roles['design'] = 'Conception';
|
||||
$exhibition_contributor_roles['coordinator'] = 'Coordination';
|
||||
$exhibition_contributor_roles['protagonist'] = 'Protagoniste';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'exhibition_contributor_roles' =>
|
||||
array (
|
||||
'concept' => 'Concept',
|
||||
'curator' => 'Conservateur',
|
||||
'design' => 'Conception',
|
||||
'coordinator' => 'Coordination',
|
||||
'protagonist' => 'Protagoniste',
|
||||
),
|
||||
)
|
@ -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'] = 'Le matériel peut être utilisé librement (même modifié) à des fins non commerciales avec attribution. En cas de transmission, le statut des droits doit être conservé.';
|
||||
$license_explica['CC BY-NC-ND'] = 'Le matériel peut être utilisé librement à des fins non commerciales avec attribution. Il ne doit pas être modifié.';
|
||||
$license_explica['CC BY-NC'] = 'Le matériel peut être utilisé librement à des fins non commerciales avec attribution.';
|
||||
$license_explica['CC BY-ND'] = 'Le matériau peut être utilisé librement en cas d’attribution. Il ne doit pas être modifié.';
|
||||
$license_explica['CC BY-SA'] = ' Le matériau peut être utilisé librement (même modifié) en cas d’attribution. En cas de transmission, le statut des droits doit être conservé.';
|
||||
$license_explica['CC BY'] = 'Le matériau peut être utilisé librement en cas d’attribution.';
|
||||
$license_explica['CC0'] = 'Renonciation à tous les droits. Ne doit être sélectionné que s’il existe un droit de renonciation.';
|
||||
$license_explica['RR-F'] = 'Accès libre - pas de réutilisation.';
|
||||
$license_explica['RR-P'] = 'Accès uniquement après paiement - pas de réutilisation. Les aperçus peuvent être librement accessibles.';
|
||||
$license_explica['RR-R'] = 'Accès restreint. Tous droits réservés.';
|
||||
$license_explica['Orphan Work'] = 'Le titulaire des droits ne peut plus être identifié même après un examen approfondi.';
|
||||
$license_explica['Public Domain Mark'] = 'Le matériel est dans le domaine public.';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_explica' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'Le matériel peut être utilisé librement (même modifié) à des fins non commerciales avec attribution. En cas de transmission, le statut des droits doit être conservé.',
|
||||
'CC BY-NC-ND' => 'Le matériel peut être utilisé librement à des fins non commerciales avec attribution. Il ne doit pas être modifié.',
|
||||
'CC BY-NC' => 'Le matériel peut être utilisé librement à des fins non commerciales avec attribution.',
|
||||
'CC BY-ND' => 'Le matériau peut être utilisé librement en cas d’attribution. Il ne doit pas être modifié.',
|
||||
'CC BY-SA' => ' Le matériau peut être utilisé librement (même modifié) en cas d’attribution. En cas de transmission, le statut des droits doit être conservé.',
|
||||
'CC BY' => 'Le matériau peut être utilisé librement en cas d’attribution.',
|
||||
'CC0' => 'Renonciation à tous les droits. Ne doit être sélectionné que s’il existe un droit de renonciation.',
|
||||
'RR-F' => 'Accès libre - pas de réutilisation.',
|
||||
'RR-P' => 'Accès uniquement après paiement - pas de réutilisation. Les aperçus peuvent être librement accessibles.',
|
||||
'RR-R' => 'Accès restreint. Tous droits réservés.',
|
||||
'Orphan Work' => 'Le titulaire des droits ne peut plus être identifié même après un examen approfondi.',
|
||||
'Public Domain Mark' => 'Le matériel est dans le domaine public.',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_full_names['CC BY-NC-SA'] = 'Attribution - non commercial - transmission dans les mêmes conditions';
|
||||
$license_full_names['CC BY-NC'] = 'Attribution - non commercial';
|
||||
$license_full_names['CC BY-ND'] = 'Attribution - pas de traitement';
|
||||
$license_full_names['CC BY-SA'] = 'Attribution - transmission dans les mêmes conditions';
|
||||
$license_full_names['CC BY'] = 'Attribution';
|
||||
$license_full_names['CC0'] = 'Domaine public (renonciation aux droits)';
|
||||
$license_full_names['RR-F'] = 'Accès libre - pas de réutilisation';
|
||||
$license_full_names['RR-P'] = 'Accès payant - pas de réutilisation';
|
||||
$license_full_names['RR-R'] = 'Accès restreint - tous droits réservés';
|
||||
$license_full_names['Orphan Work'] = 'Œuvres orphelines';
|
||||
$license_full_names['Public Domain Mark'] = 'Domaine public';
|
||||
$license_full_names['CC BY-NC-ND'] = 'Attribution - non commercial - pas de traitements';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_full_names' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'Attribution - non commercial - transmission dans les mêmes conditions',
|
||||
'CC BY-NC' => 'Attribution - non commercial',
|
||||
'CC BY-ND' => 'Attribution - pas de traitement',
|
||||
'CC BY-SA' => 'Attribution - transmission dans les mêmes conditions',
|
||||
'CC BY' => 'Attribution',
|
||||
'CC0' => 'Domaine public (renonciation aux droits)',
|
||||
'RR-F' => 'Accès libre - pas de réutilisation',
|
||||
'RR-P' => 'Accès payant - pas de réutilisation',
|
||||
'RR-R' => 'Accès restreint - tous droits réservés',
|
||||
'Orphan Work' => 'Œuvres orphelines',
|
||||
'Public Domain Mark' => 'Domaine public',
|
||||
'CC BY-NC-ND' => 'Attribution - non commercial - pas de traitements',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$license_url['CC BY-NC-SA'] = 'https://creativecommons.org/licenses/by-nc-sa/4.0/';
|
||||
$license_url['CC BY-NC-ND'] = 'https://creativecommons.org/licenses/by-nc-nd/4.0/';
|
||||
$license_url['CC BY-NC'] = 'https://creativecommons.org/licenses/by-nc/4.0/';
|
||||
$license_url['CC BY-ND'] = 'https://creativecommons.org/licenses/by-nd/4.0/';
|
||||
$license_url['CC BY-SA'] = 'https://creativecommons.org/licenses/by-sa/4.0/';
|
||||
$license_url['CC BY'] = 'https://creativecommons.org/licenses/by/4.0/';
|
||||
$license_url['CC0'] = 'https://creativecommons.org/publicdomain/zero/1.0/';
|
||||
$license_url['RR-F'] = 'http://www.europeana.eu/rights/rr-f/';
|
||||
$license_url['RR-P'] = 'http://www.europeana.eu/rights/rr-p/';
|
||||
$license_url['RR-R'] = 'http://www.europeana.eu/rights/rr-r/';
|
||||
$license_url['Orphan Work'] = 'http://www.europeana.eu/rights/orphan-work-eu/';
|
||||
$license_url['Public Domain Mark'] = 'https://creativecommons.org/publicdomain/mark/1.0/';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'license_url' =>
|
||||
array (
|
||||
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
|
||||
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-nd/4.0/',
|
||||
'CC BY-NC' => 'https://creativecommons.org/licenses/by-nc/4.0/',
|
||||
'CC BY-ND' => 'https://creativecommons.org/licenses/by-nd/4.0/',
|
||||
'CC BY-SA' => 'https://creativecommons.org/licenses/by-sa/4.0/',
|
||||
'CC BY' => 'https://creativecommons.org/licenses/by/4.0/',
|
||||
'CC0' => 'https://creativecommons.org/publicdomain/zero/1.0/',
|
||||
'RR-F' => 'http://www.europeana.eu/rights/rr-f/',
|
||||
'RR-P' => 'http://www.europeana.eu/rights/rr-p/',
|
||||
'RR-R' => 'http://www.europeana.eu/rights/rr-r/',
|
||||
'Orphan Work' => 'http://www.europeana.eu/rights/orphan-work-eu/',
|
||||
'Public Domain Mark' => 'https://creativecommons.org/publicdomain/mark/1.0/',
|
||||
),
|
||||
)
|
@ -1,3 +1,9 @@
|
||||
<?PHP
|
||||
$loan_types['outgoing'] = 'Outgoing';
|
||||
$loan_types['incoming'] = 'Incoming';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'loan_types' =>
|
||||
array (
|
||||
'outgoing' => 'Outgoing',
|
||||
'incoming' => 'Incoming',
|
||||
),
|
||||
)
|
@ -1,20 +1,26 @@
|
||||
<?PHP
|
||||
$marking_types['signature'] = 'Signature';
|
||||
$marking_types['watermark'] = 'Filigrane';
|
||||
$marking_types['engraving'] = 'Gravure';
|
||||
$marking_types['scratch'] = 'Griffé';
|
||||
$marking_types['stamp'] = 'Tamponné';
|
||||
$marking_types['overprint'] = 'Imprimé';
|
||||
$marking_types['embossing'] = 'Marqué';
|
||||
$marking_types['handwritten'] = 'Manuel';
|
||||
$marking_types['glued'] = 'Collé';
|
||||
$marking_types['embroidered'] = 'Brodé';
|
||||
$marking_types['sewn'] = 'Cousu';
|
||||
$marking_types['screwed'] = 'Vissé';
|
||||
$marking_types['burnt_in'] = 'Gravé';
|
||||
$marking_types['riveted'] = 'Riveté';
|
||||
$marking_types['nailed'] = 'Cloué';
|
||||
$marking_types['hallmarked'] = 'Poinçonné';
|
||||
$marking_types['punched'] = 'Estampé';
|
||||
$marking_types['scarified'] = 'Taillé';
|
||||
$marking_types['cast'] = 'Fonte';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'marking_types' =>
|
||||
array (
|
||||
'signature' => 'Signature',
|
||||
'watermark' => 'Filigrane',
|
||||
'engraving' => 'Gravure',
|
||||
'scratch' => 'Griffé',
|
||||
'stamp' => 'Tamponné',
|
||||
'overprint' => 'Imprimé',
|
||||
'embossing' => 'Marqué',
|
||||
'handwritten' => 'Manuel',
|
||||
'glued' => 'Collé',
|
||||
'embroidered' => 'Brodé',
|
||||
'sewn' => 'Cousu',
|
||||
'screwed' => 'Vissé',
|
||||
'burnt_in' => 'Gravé',
|
||||
'riveted' => 'Riveté',
|
||||
'nailed' => 'Cloué',
|
||||
'hallmarked' => 'Poinçonné',
|
||||
'punched' => 'Estampé',
|
||||
'scarified' => 'Taillé',
|
||||
'cast' => 'Fonte',
|
||||
),
|
||||
)
|
@ -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'] = 'Illustration publiée';
|
||||
$object_publication_background['1'] = 'Transcription publiée';
|
||||
$object_publication_background['2'] = 'discuté';
|
||||
$object_publication_background['3'] = 'recensé';
|
||||
$object_publication_background['4'] = 'référencé';
|
||||
$object_publication_background['5'] = 'annoncé';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'object_publication_background' =>
|
||||
array (
|
||||
0 => 'Illustration publiée',
|
||||
1 => 'Transcription publiée',
|
||||
2 => 'discuté',
|
||||
3 => 'recensé',
|
||||
4 => 'référencé',
|
||||
5 => 'annoncé',
|
||||
),
|
||||
)
|
@ -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'] = 'Travail';
|
||||
$phone_types['home'] = 'Domicile';
|
||||
$phone_types['mobile'] = 'Mobile ';
|
||||
$phone_types['work mobile'] = 'Mobile : travail';
|
||||
$phone_types['fax'] = 'Fax';
|
||||
$phone_types['fax work'] = 'Fax : travail';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'phone_types' =>
|
||||
array (
|
||||
'work' => 'Travail',
|
||||
'home' => 'Domicile',
|
||||
'mobile' => 'Mobile ',
|
||||
'work mobile' => 'Mobile : travail',
|
||||
'fax' => 'Fax',
|
||||
'fax work' => 'Fax : travail',
|
||||
),
|
||||
)
|
@ -1,10 +1,16 @@
|
||||
<?PHP
|
||||
$tlPlacetypes['0'] = 'Administratif';
|
||||
$tlPlacetypes['1'] = 'Historique';
|
||||
$tlPlacetypes['2'] = 'Région';
|
||||
$tlPlacetypes['3'] = 'Rue';
|
||||
$tlPlacetypes['4'] = 'Bâtiment';
|
||||
$tlPlacetypes['5'] = 'Montagne';
|
||||
$tlPlacetypes['6'] = 'Forêt';
|
||||
$tlPlacetypes['7'] = 'Milieu aquatique';
|
||||
$tlPlacetypes['8'] = 'Île';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'tlPlacetypes' =>
|
||||
array (
|
||||
0 => 'Administratif',
|
||||
1 => 'Historique',
|
||||
2 => 'Région',
|
||||
3 => 'Rue',
|
||||
4 => 'Bâtiment',
|
||||
5 => 'Montagne',
|
||||
6 => 'Forêt',
|
||||
7 => 'Milieu aquatique',
|
||||
8 => 'Île',
|
||||
),
|
||||
)
|
@ -1,5 +1,11 @@
|
||||
<?PHP
|
||||
$podcast_contributor_roles['onair'] = 'Orateur';
|
||||
$podcast_contributor_roles['recording'] = 'Enregistrement';
|
||||
$podcast_contributor_roles['technical_support'] = 'Technique';
|
||||
$podcast_contributor_roles['organization'] = 'Organisation';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'podcast_contributor_roles' =>
|
||||
array (
|
||||
'onair' => 'Orateur',
|
||||
'recording' => 'Enregistrement',
|
||||
'technical_support' => 'Technique',
|
||||
'organization' => 'Organisation',
|
||||
),
|
||||
)
|
@ -1,13 +1,19 @@
|
||||
<?PHP
|
||||
$position_set['left'] = 'Gauche';
|
||||
$position_set['top_left'] = 'En haut à gauche';
|
||||
$position_set['top'] = 'Haut';
|
||||
$position_set['top_right'] = 'En haut à droite';
|
||||
$position_set['right'] = 'Droite';
|
||||
$position_set['bottom_right'] = 'En bas à droite';
|
||||
$position_set['bottom'] = 'Bas';
|
||||
$position_set['bottom_left'] = 'En bas à gauche';
|
||||
$position_set['center'] = 'Au centre';
|
||||
$position_set['rear_side'] = 'Arrière';
|
||||
$position_set['edge'] = 'Bord';
|
||||
$position_set['other'] = 'Autre';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'position_set' =>
|
||||
array (
|
||||
'left' => 'Gauche',
|
||||
'top_left' => 'En haut à gauche',
|
||||
'top' => 'Haut',
|
||||
'top_right' => 'En haut à droite',
|
||||
'right' => 'Droite',
|
||||
'bottom_right' => 'En bas à droite',
|
||||
'bottom' => 'Bas',
|
||||
'bottom_left' => 'En bas à gauche',
|
||||
'center' => 'Au centre',
|
||||
'rear_side' => 'Arrière',
|
||||
'edge' => 'Bord',
|
||||
'other' => 'Autre',
|
||||
),
|
||||
)
|
@ -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'] = 'Vidéo';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'recording_types_set' =>
|
||||
array (
|
||||
'audio' => 'Audio',
|
||||
'video' => 'Vidéo',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$research_status['bad'] = 'Mal étudié';
|
||||
$research_status['medium'] = 'Partiellement étudié';
|
||||
$research_status['good'] = 'Bien étudié';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'research_status' =>
|
||||
array (
|
||||
'bad' => 'Mal étudié',
|
||||
'medium' => 'Partiellement étudié',
|
||||
'good' => 'Bien étudié',
|
||||
),
|
||||
)
|
@ -1,9 +1,15 @@
|
||||
<?PHP
|
||||
$source_type_set['article'] = 'Article';
|
||||
$source_type_set['inbook'] = 'Article dans un recueil';
|
||||
$source_type_set['book'] = 'Livre';
|
||||
$source_type_set['phdthesis'] = 'Travail de doctorat';
|
||||
$source_type_set['electronical'] = 'Ressource électronique';
|
||||
$source_type_set['misc'] = 'Autre';
|
||||
$source_type_set['patent'] = 'Fascicule de brevet';
|
||||
$source_type_set['unpublished'] = 'Non publié';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'source_type_set' =>
|
||||
array (
|
||||
'article' => 'Article',
|
||||
'inbook' => 'Article dans un recueil',
|
||||
'book' => 'Livre',
|
||||
'phdthesis' => 'Travail de doctorat',
|
||||
'electronical' => 'Ressource électronique',
|
||||
'misc' => 'Autre',
|
||||
'patent' => 'Fascicule de brevet',
|
||||
'unpublished' => 'Non publié',
|
||||
),
|
||||
)
|
@ -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'] = 'Bibliothèque numérique allemande (DDB)';
|
||||
$syndication_repos['europeana'] = 'Europeana';
|
||||
$syndication_repos['smb-digital'] = 'SMB-digital';
|
||||
$syndication_repos['kalliope-verbund'] = 'Association Kalliope';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'syndication_repos' =>
|
||||
array (
|
||||
'ddb' => 'Bibliothèque numérique allemande (DDB)',
|
||||
'europeana' => 'Europeana',
|
||||
'smb-digital' => 'SMB-digital',
|
||||
'kalliope-verbund' => 'Association Kalliope',
|
||||
),
|
||||
)
|
@ -1,4 +1,10 @@
|
||||
<?PHP
|
||||
$timing_intervals_set['weekly'] = 'Weekly';
|
||||
$timing_intervals_set['monthly'] = 'Monthly';
|
||||
$timing_intervals_set['annual'] = 'Annual';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'timing_intervals_set' =>
|
||||
array (
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'annual' => 'Annual',
|
||||
),
|
||||
)
|
@ -1,6 +1,12 @@
|
||||
<?PHP
|
||||
$title_types_set[''] = ' ';
|
||||
$title_types_set['Science'] = 'Science';
|
||||
$title_types_set['Everyday speech'] = 'Langage courant';
|
||||
$title_types_set['Colloquial speech'] = 'Argot';
|
||||
$title_types_set['Dialect'] = 'Dialecte';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'title_types_set' =>
|
||||
array (
|
||||
'' => ' ',
|
||||
'Science' => 'Science',
|
||||
'Everyday speech' => 'Langage courant',
|
||||
'Colloquial speech' => 'Argot',
|
||||
'Dialect' => 'Dialecte',
|
||||
),
|
||||
)
|
@ -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'] = 'pieds';
|
||||
$units_length_set['in'] = 'pouces';
|
||||
declare(strict_types = 1);
|
||||
array (
|
||||
'units_length_set' =>
|
||||
array (
|
||||
'm' => 'm',
|
||||
'dm' => 'dm',
|
||||
'cm' => 'cm',
|
||||
'mm' => 'mm',
|
||||
'ft' => 'pieds',
|
||||
'in' => 'pouces',
|
||||
),
|
||||
)
|
@ -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