Approval.
This commit is contained in:
@ -1,2 +1,13 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_attendance_modes = array (
|
||||
'offline' => 'Hors ligne',
|
||||
'online' => 'En ligne',
|
||||
'mixed' => 'Hors ligne et en ligne',
|
||||
);
|
||||
|
@ -1,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_cancellation_status_set = array (
|
||||
'scheduled_done' => 'Scheduled or done as planned',
|
||||
'cancelled' => 'Cancelled',
|
||||
);
|
||||
|
@ -1,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_contributor_roles = array (
|
||||
'organizer' => 'Organisation',
|
||||
'presenter' => 'Intervenant',
|
||||
);
|
||||
|
@ -1,2 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$appointment_status = array (
|
||||
'scheduled' => 'Planifié',
|
||||
'cancelled' => 'Annulé',
|
||||
'moved_online' => 'Transformé en événement en ligne',
|
||||
'postponed' => 'Reporté',
|
||||
);
|
||||
|
@ -1,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$attendance_status_set = array (
|
||||
'offline' => 'Offline',
|
||||
'online' => 'Online',
|
||||
);
|
||||
|
@ -1,2 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$closer_location_types_set = array (
|
||||
0 => '',
|
||||
1 => 'Lieu d’enregistrement',
|
||||
2 => 'Lieu de la découverte',
|
||||
3 => 'Localisation précédente',
|
||||
);
|
||||
|
@ -1,2 +1,20 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$colors_set = array (
|
||||
'black' => 'Black',
|
||||
'green' => 'Green',
|
||||
'silver' => 'Silver',
|
||||
'lime' => 'Lime',
|
||||
'gray' => 'Gray',
|
||||
'olive' => 'Olive',
|
||||
'white' => 'White',
|
||||
'yellow' => 'Yellow',
|
||||
'maroon' => 'Maroon',
|
||||
'navy' => 'Navy',
|
||||
'red' => 'Red',
|
||||
'blue' => 'Blue',
|
||||
'purple' => 'Purple',
|
||||
'teal' => 'Teal',
|
||||
'fuchsia' => 'Fuchsia',
|
||||
'aqua' => 'Aqua',
|
||||
);
|
||||
|
@ -1,2 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$conservation_report_type_set = array (
|
||||
'damage' => 'Dommages',
|
||||
'conservation' => 'Conservation',
|
||||
'condition' => 'État',
|
||||
'restoration' => 'Restauration',
|
||||
'other_report' => 'Autre rapport',
|
||||
'other' => 'Autre rapport',
|
||||
);
|
||||
|
@ -1,2 +1,26 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$custom_report_targets_set = array (
|
||||
'object_single' => 'Single object',
|
||||
'object_list' => 'Multiple objects',
|
||||
'loan' => 'Loan',
|
||||
'exhibition' => 'Exhibition',
|
||||
);
|
||||
|
@ -1,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$disposal_method_set = array (
|
||||
'sold' => 'Sold',
|
||||
'destroyed' => 'Destroyed',
|
||||
'garbage' => 'Thrown away / garbage collection',
|
||||
);
|
||||
|
@ -1,2 +1,22 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,52 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$exhibition_contributor_roles = array (
|
||||
'concept' => 'Concept',
|
||||
'curator' => 'Conservateur',
|
||||
'design' => 'Conception',
|
||||
'coordinator' => 'Coordination',
|
||||
'protagonist' => 'Protagoniste',
|
||||
);
|
||||
|
@ -1,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$gender_set = array (
|
||||
'female' => 'Female',
|
||||
'male' => 'Male',
|
||||
'other' => 'Other',
|
||||
);
|
||||
|
@ -1,2 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$license_url = array (
|
||||
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
|
||||
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-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,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$loan_types = array (
|
||||
'outgoing' => 'Outgoing',
|
||||
'incoming' => 'Incoming',
|
||||
);
|
||||
|
@ -1,2 +1,23 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_check_types_set = array (
|
||||
'condition_check' => 'Condition check',
|
||||
'completeness_check' => 'Completeness check',
|
||||
'data_correctness_check' => 'Data correctness check',
|
||||
);
|
||||
|
@ -1,2 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_damage_status_set = array (
|
||||
'identified' => 'Identified',
|
||||
'repair_possible' => 'Reviewed; repair possible',
|
||||
'repair_scheduled' => 'Repair scheduled',
|
||||
'repaired' => 'Repaired',
|
||||
'irreparable' => 'Irreparable',
|
||||
);
|
||||
|
@ -1,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_damage_types_set = array (
|
||||
'water_damage' => 'Water damage',
|
||||
'breakage' => 'Breakage',
|
||||
);
|
||||
|
@ -1,2 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_form_set = array (
|
||||
'cube' => 'Cube',
|
||||
'cuboid' => 'Cuboid',
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
);
|
||||
|
@ -1,2 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_publication_background = array (
|
||||
0 => 'Illustration publiée',
|
||||
1 => 'Transcription publiée',
|
||||
2 => 'discuté',
|
||||
3 => 'recensé',
|
||||
4 => 'référencé',
|
||||
5 => 'annoncé',
|
||||
);
|
||||
|
@ -1,2 +1,11 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$object_status = array (
|
||||
'owned' => 'Owned',
|
||||
'permanent_loan' => 'Permanent loan',
|
||||
'borrowed' => 'Borrowed',
|
||||
'to_check_for_gift' => 'To check (for gift)',
|
||||
'to_check' => 'To check',
|
||||
'deaccessed' => 'Deaccessed',
|
||||
'third_party_property' => 'Third party property',
|
||||
);
|
||||
|
@ -1,2 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$phone_types = array (
|
||||
'work' => 'Travail',
|
||||
'home' => 'Domicile',
|
||||
'mobile' => 'Mobile ',
|
||||
'work mobile' => 'Mobile : travail',
|
||||
'fax' => 'Fax',
|
||||
'fax work' => 'Fax : travail',
|
||||
);
|
||||
|
@ -1,2 +1,13 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$podcast_contributor_roles = array (
|
||||
'onair' => 'Orateur',
|
||||
'recording' => 'Enregistrement',
|
||||
'technical_support' => 'Technique',
|
||||
'organization' => 'Organisation',
|
||||
);
|
||||
|
@ -1,2 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,18 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$process_types = array (
|
||||
'project' => 'Project',
|
||||
'grant_application' => 'Grant application',
|
||||
'exhibition' => 'Exhibition',
|
||||
'appointment' => 'Appointment / Event',
|
||||
'loan_incoming' => 'Loan (incoming)',
|
||||
'loan_outgoing' => 'Loan (outgoing)',
|
||||
'employment_ad' => 'Employment ad',
|
||||
'purchase' => 'Purchase',
|
||||
'deaccession' => 'Deaccession',
|
||||
'construction' => 'Construction measure',
|
||||
'pest_control_campaign' => 'Pest control campaign',
|
||||
'pr_campaign' => 'PR campaign',
|
||||
'relocation' => 'Relocation',
|
||||
'discussion' => 'Discussion',
|
||||
);
|
||||
|
@ -1,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$recording_types_set = array (
|
||||
'audio' => 'Audio',
|
||||
'video' => 'Vidéo',
|
||||
);
|
||||
|
@ -1,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$research_status = array (
|
||||
'bad' => 'Mal étudié',
|
||||
'medium' => 'Partiellement étudié',
|
||||
'good' => 'Bien étudié',
|
||||
);
|
||||
|
@ -1,2 +1,12 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$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,2 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$space_access_status = array (
|
||||
'enter' => 'Enter',
|
||||
'leave' => 'Leave',
|
||||
);
|
||||
|
@ -1,2 +1,15 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$space_types = array (
|
||||
'building' => 'Building',
|
||||
'depot' => 'Depot room',
|
||||
'utility_room' => 'Utility room',
|
||||
'exhibition_room' => 'Exhibition room',
|
||||
'display_cabinet' => 'Display cabinet',
|
||||
'shelf' => 'Shelf',
|
||||
'box' => 'Box',
|
||||
'folder' => 'Folder',
|
||||
'office' => 'Office',
|
||||
'floor' => 'Floor',
|
||||
'hallway' => 'Hallway',
|
||||
);
|
||||
|
@ -1,2 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$syndication_repos = array (
|
||||
'ddb' => 'Bibliothèque numérique allemande (DDB)',
|
||||
'europeana' => 'Europeana',
|
||||
'smb-digital' => 'SMB-digital',
|
||||
'kalliope-verbund' => 'Association Kalliope',
|
||||
);
|
||||
|
@ -1,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$timing_intervals_set = array (
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'annual' => 'Annual',
|
||||
);
|
||||
|
@ -1,2 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$title_types_set = array (
|
||||
'' => ' ',
|
||||
'Science' => 'Science',
|
||||
'Everyday speech' => 'Langage courant',
|
||||
'Colloquial speech' => 'Argot',
|
||||
'Dialect' => 'Dialecte',
|
||||
);
|
||||
|
@ -1,2 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$todo_status = array (
|
||||
'suggested' => 'Suggested',
|
||||
'planned' => 'Planned',
|
||||
'in_progress' => 'In progress',
|
||||
'done' => 'Done',
|
||||
'cancelled' => 'Cancelled',
|
||||
);
|
||||
|
@ -1,2 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_length_set = array (
|
||||
'm' => 'm',
|
||||
'dm' => 'dm',
|
||||
'cm' => 'cm',
|
||||
'mm' => 'mm',
|
||||
'ft' => 'pieds',
|
||||
'in' => 'pouces',
|
||||
);
|
||||
|
@ -1,2 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_weight_set = array (
|
||||
't' => 't',
|
||||
'kg' => 'kg',
|
||||
'g' => 'g',
|
||||
);
|
||||
|
Reference in New Issue
Block a user