Compare commits

..

8 Commits

Author SHA1 Message Date
9d8373c1fe Approval. 2025-07-22 14:11:43 +00:00
357308e8a4 Approval. 2025-07-14 15:08:50 +00:00
9ad49843cd Approval. 2025-07-11 14:29:39 +00:00
0be5ccf2d4 Approval. 2025-07-11 06:37:45 +00:00
bd508e24ff Approval. 2025-07-07 13:49:09 +00:00
b032391f23 Approval. 2025-06-30 16:21:25 +00:00
1bb2710cad Approval. 2025-06-17 09:45:22 +00:00
a7e3056f09 Approval. 2025-05-08 14:51:48 +00:00
290 changed files with 2817 additions and 1298 deletions

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

9
ar/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
ar/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -51,9 +51,9 @@ $eventname = array (
50 => 'Geerbt', 50 => 'Geerbt',
51 => 'Hat zum Hauptgegenstand', 51 => 'Hat zum Hauptgegenstand',
52 => 'Entstanden', 52 => 'Entstanden',
53 => 'Production of material', 53 => 'Herstellung des Materials',
54 => 'Mentioned place', 54 => 'Erwähnter Ort',
55 => 'Mentioned time', 55 => 'Erwähnte Zeit',
56 => 'Received ownership', 56 => 'In Eigentum übernommen',
57 => 'Transferred ownership', 57 => 'In Eigentum übergeben in',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Durchmesser (min.)', 'diameter_min' => 'Durchmesser (min.)',
'diameter_max' => 'Durchmesser (max.)', 'diameter_max' => 'Durchmesser (max.)',
'diameter_frame' => 'Rahmen (Durchmesser)', 'diameter_frame' => 'Rahmen (Durchmesser)',
'length_blade' => 'Länge (Klinge)',
'height_blade' => 'Höhe (Klinge)',
'width_blade' => 'Breite (Klinge)',
); );

9
de/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Unvollständig',
'machine_generated' => 'Maschinengeneriert',
'rough_draft' => 'Rohfassung',
'quality_control_failed' => 'Qualitätskontrolle: Abgelehnt',
'quality_control_passed' => 'Qualitätskontrolle: Akzeptiert',
);

9
de/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Einfache Transkription',
'diplomatic_transcription' => 'Diplomatische Transkription',
'critical_edition' => 'Kritische Ausgabe',
'historical_critical_edition' => 'Historisch-kritische Ausgabe',
'reading_edition' => 'Leseausgabe',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Bestandteile', 'parts' => 'Bestandteile',
'pages' => 'Seiten', 'pages' => 'Seiten',
'sheets' => 'Blatt', 'sheets' => 'Blatt',
'double_pages' => 'Doppelseiten',
'standalone_sheets' => 'Einzelblätter',
'written_pages' => 'Beschriebene Seiten',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
dsb/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

9
en/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
en/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

9
es/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
es/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

9
fr/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
fr/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -0,0 +1,13 @@
<?PHP
declare(strict_types = 1);
$actor_variant_types_set = array (
'birth_name' => 'जन्म नाम',
'married_name' => 'शादी का नाम',
'monastic_name' => 'मठवासी नाम',
'pseudonym' => 'उपनाम',
'regnal_name' => 'राज्य का नाम',
'nickname' => 'उपनाम',
'artist_name' => 'कलाकार का नाम',
'civil_name' => 'नागरिक नाम',
'generic_other_name' => 'वैकल्पिक नाम (सामान्य)',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$appointment_attendance_modes = array (
'offline' => 'ऑफलाइन',
'online' => 'ऑनलाइन',
'mixed' => 'ऑफ़लाइन और ऑनलाइन',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$appointment_cancellation_status_set = array (
'scheduled_done' => 'निर्धारित या योजना के अनुसार किया गया',
'cancelled' => 'रद्द',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$appointment_contributor_roles = array (
'organizer' => 'व्यवस्था करनेवाला',
'presenter' => 'प्रस्तुतकर्ता',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$appointment_status = array (
'scheduled' => 'अनुसूचित',
'cancelled' => 'रद्द',
'moved_online' => 'ऑनलाइन स्थानांतरित',
'postponed' => 'स्थगित',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$attendance_status_set = array (
'offline' => 'ऑफलाइन',
'online' => 'ऑनलाइन',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$closer_location_types_set = array (
0 => '',
1 => 'रिकॉर्डिंग का स्थान',
2 => 'खोज का स्थान',
3 => 'पूर्व स्थान',
);

20
hi/colors_set.php Normal file
View File

@@ -0,0 +1,20 @@
<?PHP
declare(strict_types = 1);
$colors_set = array (
'black' => 'काला',
'green' => 'हरा',
'silver' => 'चाँदी',
'lime' => 'नींबू',
'gray' => 'स्लेटी',
'olive' => 'जैतून',
'white' => 'सफ़ेद',
'yellow' => 'पीला',
'maroon' => 'लाल रंग',
'navy' => 'नौसेना',
'red' => 'लाल',
'blue' => 'नीला',
'purple' => 'बैंगनी',
'teal' => 'टील',
'fuchsia' => 'फ्यूशिया',
'aqua' => 'पानी',
);

View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$conservation_report_type_set = array (
'damage' => 'हानि',
'conservation' => 'संरक्षण',
'condition' => 'स्थिति',
'restoration' => 'मरम्मत',
'other_report' => 'अन्य रिपोर्ट',
'other' => 'अन्य रिपोर्ट',
);

28
hi/currencies_set.php Normal file
View File

@@ -0,0 +1,28 @@
<?PHP
declare(strict_types = 1);
$currencies_set = array (
'eu-EUR' => 'यूरो',
'de-DM' => 'डॉयचे मार्क',
'de-RM' => 'रीच्समार्क (जर्मनी)',
'es-Real' => 'स्पेनिश रियल',
'hu-Ft' => 'फ़ोरिंट',
'hu-Lari' => 'लारी',
'hu-Pengő' => 'PENGO',
'id-IDR' => 'इंडोनेशियाई रुपिया',
'pl-Złoty' => 'ज़्लॉटी',
'us-USD' => 'अमेरिकी डॉलर',
'ddr-Mark' => 'मार्क (जीडीआर)',
'ddr-MDN' => 'एमडीएन (जीडीआर)',
'hu-Korona' => 'ऑस्ट्रो-हंगेरियन क्रोन',
'fr-FF' => 'फ्रेंच फ़्रैंक',
'uk-GBP' => 'पौंड स्टर्लिंग',
'by-BYN' => 'बेलारूसी रूबल',
'ru-RUB' => 'रूसी रूबल',
'su-SUR' => 'सोवियत रूबल',
'ua-UAH' => 'यूक्रेनी रिव्निया',
'ch-CHF' => 'स्विस फ़्रैंक',
'ua-UAK' => 'यूक्रेनी कार्बोवनेट्स',
);
$license_full_names = array (
'CC BY-NC-ND' => 'एट्रिब्यूशन - गैर-वाणिज्यिक - कोई व्युत्पन्न नहीं',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$custom_report_targets_set = array (
'object_single' => 'एकल वस्तु',
'object_list' => 'एकाधिक वस्तुएँ',
'loan' => 'ऋृण',
'exhibition' => 'प्रदर्शनी',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$disposal_method_set = array (
'sold' => 'बिका हुआ',
'destroyed' => 'नष्ट किया हुआ',
'garbage' => 'फेंका हुआ / कचरा संग्रहण',
);

22
hi/entry_types.php Normal file
View File

@@ -0,0 +1,22 @@
<?PHP
declare(strict_types = 1);
$entry_types = array (
0 => '',
1 => 'दान',
2 => 'खरीदना',
3 => 'उत्खनन',
4 => 'आपातकालीन बचाव',
5 => 'विरासत',
6 => 'अक्षय निधि',
7 => 'निर्वासन',
8 => 'मूल स्थिति',
9 => 'ऋृण',
10 => 'अदला-बदली',
11 => 'इन-हाउस उत्पादन',
12 => 'सामग्री तनाव (Törzsanyag)',
14 => 'वोरलास',
15 => 'खोज',
98 => 'जाँच की जानी है',
99 => 'अन्य कानूनी अधिग्रहण',
16 => 'स्थायी ऋण',
);

8
hi/eventtype_groups.php Normal file
View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$eventtype_groups = array (
'production' => 'उत्पादन',
'post_production' => 'डाक उत्पादन',
'pre_production' => 'पूर्व-उत्पादन',
'no_production' => 'कोई उत्पादन नहीं',
);

59
hi/eventtype_name.php Normal file
View File

@@ -0,0 +1,59 @@
<?PHP
declare(strict_types = 1);
$eventname = array (
1 => 'बनाया था',
2 => 'मिला',
3 => 'प्रकाशित',
4 => 'टेम्पलेट निर्माण',
5 => 'चित्रित किया गया था (अभिनेता)',
6 => 'प्रयोग किया गया',
7 => 'लिखा हुआ',
8 => 'एकत्र किया हुआ',
9 => 'चित्रित',
10 => 'ली गई छवि',
11 => 'प्राप्त',
12 => 'मुद्रण प्लेट का उत्पादन',
13 => 'भेजा',
14 => 'जारी किए गए',
15 => 'पर हस्ताक्षर किए',
16 => 'पहला विवरण',
19 => 'अनिर्णित',
20 => 'प्रतिलिपि (हाथ से)',
21 => 'रहते थे',
22 => '[स्थान से संबंध]',
23 => '[व्यक्ति या संस्था से संबंध]',
24 => '[समय से संबंध]',
25 => 'कमीशन',
26 => 'मुद्रित',
27 => 'रिकॉर्डेड',
28 => 'सुंग',
29 => 'सजावट डिजाइन',
30 => 'फॉर्म डिज़ाइन किया गया',
31 => 'मॉडलिंग',
32 => 'हस्ताक्षरित/हस्ताक्षरित',
33 => 'उल्लिखित',
34 => 'दफ़नाया गया',
35 => 'बौद्धिक सृजन',
36 => 'चित्रित किया गया था',
37 => 'पर चित्रित',
38 => 'इलस्ट्रेटेड',
39 => 'इकट्ठे',
40 => 'नीलाम',
41 => 'खरीदा',
42 => 'स्वामित्व',
43 => 'बिका हुआ',
44 => 'पुनः स्थापित किए गए',
45 => 'क्षतिग्रस्त',
46 => 'नष्ट किया हुआ',
47 => 'खो गया',
48 => 'संपादित',
49 => 'दान/उपस्थित',
50 => 'विरासत में मिला',
51 => 'विषय था',
52 => 'उभरा',
53 => 'सामग्री का उत्पादन',
54 => 'उल्लिखित स्थान',
55 => 'उल्लिखित समय',
56 => 'स्वामित्व प्राप्त हुआ',
57 => 'हस्तांतरित स्वामित्व',
);

59
hi/eventtype_persinst.php Normal file
View File

@@ -0,0 +1,59 @@
<?PHP
declare(strict_types = 1);
$event_persinst = array (
1 => 'के द्वारा बनाई गई',
2 => 'द्वारा पाया गया',
3 => 'द्वारा प्रकाशित',
4 => 'द्वारा बनाए गए टेम्पलेट्स',
5 => 'चित्रित',
6 => 'द्वारा इस्तेमाल किया गया था',
7 => 'द्वारा लिखित',
8 => 'संग्रहकर्ता',
9 => 'द्वारा चित्रित',
10 => 'द्वारा फोटो खिंचवाया गया',
11 => 'द्वारा प्राप्त',
12 => 'द्वारा निर्मित मुद्रण प्लेट',
13 => 'के द्वारा भेजा गया',
14 => 'जारीकर्ता',
15 => 'द्वारा हस्ताक्षर किए',
16 => 'सबसे पहले वर्णित',
19 => 'द्वारा तैयार किया गया',
20 => 'द्वारा (हाथ से) कॉपी की गई',
21 => 'रहते थे',
22 => '[सामान्य]',
23 => '[सामान्य]',
24 => '[सामान्य]',
25 => 'द्वारा कमीशन किया गया',
26 => 'द्वारा मुद्रित',
27 => 'द्वारा दर्ज किया',
28 => 'गायक',
29 => 'सजावट का डिज़ाइन',
30 => 'फॉर्म डिज़ाइन किया गया',
31 => 'द्वारा मॉडलिंग की गई',
32 => 'द्वारा हस्ताक्षरित',
33 => 'द्वारा उल्लेखित',
34 => 'द्वारा दफनाया गया',
35 => 'द्वारा कल्पना की गई',
36 => 'द्वारा दर्शाया गया',
37 => 'द्वारा चित्रित',
38 => 'द्वारा चित्रित',
39 => 'द्वारा इकट्ठा किया गया',
40 => 'द्वारा नीलाम किया गया',
41 => 'द्वारा खरीदा गया',
42 => 'मालिक',
43 => 'द्वारा बेचा गया',
44 => 'द्वारा बहाल',
45 => 'से क्षतिग्रस्त',
46 => 'द्वारा नष्ट कर दिया गया',
47 => 'से हार गए',
48 => 'द्वारा संपादित',
49 => 'द्वारा दान किया गया',
50 => 'विरासत में मिला',
51 => 'विषय था',
52 => 'द्वारा उभरा',
53 => 'द्वारा उत्पादित सामग्री',
54 => 'उल्लिखित स्थान',
55 => 'उल्लिखित समय',
56 => 'स्वामित्व प्राप्त हुआ',
57 => 'स्वामित्व हस्तांतरित',
);

59
hi/eventtype_place.php Normal file
View File

@@ -0,0 +1,59 @@
<?PHP
declare(strict_types = 1);
$event_place = array (
1 => 'में बनाया',
2 => 'में पाया',
3 => 'में प्रकाशित',
4 => 'में बनाए गए टेम्पलेट',
5 => 'में चित्रित किया गया था',
6 => 'में इस्तेमाल किया गया था',
7 => 'में लिखा है',
8 => 'में एकत्रित',
9 => 'चित्रित',
10 => 'फोटो खिंचवाने',
11 => 'में प्राप्त',
12 => 'मुद्रण प्लेट का उत्पादन',
13 => 'भेजा गया',
14 => 'जारी किया गया',
15 => 'साइन इन',
16 => 'में वर्णित प्रकार',
19 => 'खींचा गया',
20 => '(हाथ से) कॉपी किया गया था',
21 => 'में रहता है',
22 => '[सामान्य]',
23 => '[सामान्य]',
24 => '[सामान्य]',
25 => 'में कमीशन किया गया',
26 => 'में मुद्रित',
27 => 'में रिकॉर्ड किया गया',
28 => 'में गाया गया',
29 => 'सजावट डिज़ाइन की गई',
30 => 'फॉर्म डिज़ाइन किया गया',
31 => 'में मॉडलिंग की',
32 => 'हस्ताक्षरित',
33 => 'में उल्लेख किया गया है',
34 => 'में दफनया',
35 => 'में गर्भित',
36 => 'में चित्रित किया गया था',
37 => 'पर चित्रित',
38 => 'में चित्रित',
39 => 'में इकट्ठे हुए',
40 => 'नीलाम किया गया',
41 => 'खरीदा गया',
42 => 'स्वामित्व में',
43 => 'में बेचा गया',
44 => 'में बहाल',
45 => 'क्षतिग्रस्त',
46 => 'में नष्ट हो गया',
47 => 'में खो गया',
48 => 'में संपादित',
49 => 'दान किया गया / वर्तमान के रूप में दिया गया',
50 => 'विरासत में मिला',
51 => 'विषय था',
52 => 'पर उभरा',
53 => 'में उत्पादित सामग्री',
54 => 'उल्लिखित स्थान',
55 => 'उल्लिखित समय',
56 => 'स्वामित्व प्राप्त हुआ',
57 => 'स्वामित्व हस्तांतरित',
);

59
hi/eventtype_time.php Normal file
View File

@@ -0,0 +1,59 @@
<?PHP
declare(strict_types = 1);
$event_time = array (
1 => 'बनाया था',
2 => 'मिला',
3 => 'प्रकाशित',
4 => 'टेम्पलेट बनाया गया',
5 => 'छवि बनाई गई थी',
6 => 'प्रयोग किया गया',
7 => 'लिखा हुआ',
8 => 'एकत्र किया हुआ',
9 => 'चित्रित',
10 => 'फोटो',
11 => 'प्राप्त',
12 => 'मुद्रण प्लेट का उत्पादन',
13 => 'भेजा',
14 => 'जारी किए गए',
15 => 'पर हस्ताक्षर किए',
16 => 'वर्णित प्रकार',
19 => 'अनिर्णित',
20 => 'नकल (हाथ से)',
21 => 'रहता है',
22 => '[सामान्य]',
23 => '[सामान्य]',
24 => '[सामान्य]',
25 => 'कमीशन',
26 => 'मुद्रित',
27 => 'दर्ज',
28 => 'गाया',
29 => 'सजावट डिजाइन',
30 => 'फॉर्म डिज़ाइन किया गया',
31 => 'मॉडलिंग',
32 => 'हस्ताक्षर',
33 => 'उल्लेख किया गया था',
34 => 'दफ़नाया गया',
35 => 'कल्पना',
36 => 'चित्रित किया गया था',
37 => 'पर चित्रित',
38 => 'इलस्ट्रेटेड',
39 => 'पर इकट्ठे हुए',
40 => 'नीलाम किया गया',
41 => 'खरीदा गया',
42 => 'स्वामित्व में',
43 => 'बेचा गया',
44 => 'पर बहाल',
45 => 'क्षतिग्रस्त',
46 => 'पर नष्ट हो गया',
47 => 'खो गया',
48 => 'संपादित किया गया',
49 => 'दान किया गया',
50 => 'विरासत में मिला',
51 => 'विषय था',
52 => 'पर उभरा',
53 => 'उत्पादित सामग्री',
54 => 'उल्लिखित स्थान',
55 => 'उल्लिखित समय',
56 => 'स्वामित्व प्राप्त हुआ',
57 => 'स्वामित्व हस्तांतरित',
);

View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$exhibition_contributor_roles = array (
'concept' => 'अवधारणा',
'curator' => 'संग्रहाध्यक्ष',
'design' => 'डिज़ाइन',
'coordinator' => 'समन्वयक',
'protagonist' => 'नायक',
);

7
hi/gender_set.php Normal file
View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$gender_set = array (
'female' => 'महिला',
'male' => 'पुरुष',
'other' => 'अन्य',
);

View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$institution_basic_category_set = array (
'archive' => 'पुरालेख',
'library' => 'पुस्तकालय',
'memorial_site' => 'स्मारक स्थल',
'private_collection' => 'निजी संग्रह',
'museum' => 'संग्रहालय',
'university_collection' => 'विश्वविद्यालय संग्रह',
);

View File

@@ -0,0 +1,30 @@
<?PHP
declare(strict_types = 1);
$institution_collection_area_set = array (
'everyday_life' => 'रोजमर्रा की जिंदगी',
'archaeology' => 'पुरातत्त्व',
'architecture' => 'वास्तुकला',
'history_of_mining' => 'खनन का इतिहास',
'botany' => 'वनस्पति विज्ञान',
'history_of_film' => 'फिल्म का इतिहास',
'political_history' => 'राजनीतिक इतिहास',
'arts' => 'आर्ट्स एक',
'applied_arts' => 'अनुप्रयुक्त कलाएँ',
'agriculture' => 'कृषि',
'literature' => 'साहित्य',
'history_of_medicine' => 'चिकित्सा का इतिहास',
'military_history' => 'सैन्य इतिहास',
'mineralogy' => 'खनिज विद्या',
'music' => 'संगीत',
'numismatics' => 'न्यूमिज़माटिक्स',
'paleontology' => 'जीवाश्म विज्ञान',
'personalia' => 'जीवनी',
'regional_history' => 'क्षेत्रीय इतिहास',
'religion' => 'धर्म',
'technology' => 'तकनीकी',
'ethnography' => 'नृवंशविज्ञान',
'zoology' => 'जूलॉजी',
);
$institution_basic_category_set = array (
'museum' => 'संग्रहालय',
);

View File

@@ -0,0 +1,5 @@
<?PHP
declare(strict_types = 1);
$institution_external_id_repositories = array (
'hu_ksh' => 'हंगेरियन केंद्रीय सांख्यिकी कार्यालय',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$institution_musdb_use_case_set = array (
'collection_management' => 'संग्रह प्रबंधन',
'publication' => 'प्रकाशन',
'collection_management_and_publication' => 'संग्रह प्रबंधन और प्रकाशन',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$institution_public_private_category_set = array (
'public' => 'जनता',
'private' => 'निजी',
'religious' => 'धार्मिक',
'mixed' => 'मिश्रित',
);

16
hi/license_explica.php Normal file
View File

@@ -0,0 +1,16 @@
<?PHP
declare(strict_types = 1);
$license_explica = array (
'CC BY-NC-SA' => 'गैर-व्यावसायिक उद्देश्यों के लिए, यदि श्रेय दिया गया हो, तो सामग्री का स्वतंत्र रूप से उपयोग (यहाँ तक कि परिवर्तन भी) किया जा सकता है। वितरण के मामले में अधिकारों की स्थिति यथावत रखी जानी चाहिए।',
'CC BY-NC-ND' => 'गैर-व्यावसायिक प्रयोजनों के लिए, यदि श्रेय दिया गया हो, तो सामग्री का स्वतंत्र रूप से उपयोग किया जा सकता है। इसमें कोई परिवर्तन नहीं किया जा सकता।',
'CC BY-NC' => 'गैर-वाणिज्यिक प्रयोजनों के लिए सामग्री का उपयोग स्वतंत्र रूप से किया जा सकता है, बशर्ते कि उसका श्रेय दिया जाए।',
'CC BY-ND' => 'यदि श्रेय दिया गया हो तो सामग्री का स्वतंत्र रूप से उपयोग किया जा सकता है। इसमें कोई परिवर्तन नहीं किया जा सकता।',
'CC BY-SA' => 'यदि श्रेय दिया गया हो, तो सामग्री का स्वतंत्र रूप से उपयोग किया जा सकता है (और संशोधित भी किया जा सकता है)। वितरण के मामले में अधिकार की स्थिति यथावत रखी जानी चाहिए।',
'CC BY' => 'यदि श्रेय दिया जाए तो सामग्री का स्वतंत्र रूप से उपयोग किया जा सकता है (और यहां तक ​​कि उसमें परिवर्तन भी किया जा सकता है)।',
'CC0' => 'कोई अधिकार सुरक्षित नहीं। आपको CC0 का उपयोग केवल तभी करना चाहिए जब आपके पास सभी अधिकारों को छोड़ने का अधिकार हो।',
'RR-F' => 'निःशुल्क पहुंच - पुनः उपयोग नहीं।',
'RR-P' => 'सशुल्क पहुँच - पुनः उपयोग नहीं। पूर्वावलोकन निःशुल्क उपलब्ध हो सकते हैं।',
'RR-R' => 'प्रतिबंधित पहुँच. सुरक्षित अधिकार.',
'Orphan Work' => 'अधिकार-धारक का निर्धारण नहीं किया जा सका। यह कृति यूरोपीय संघ की अनाथ कृतियों की सूची में सूचीबद्ध है।',
'Public Domain Mark' => 'यह कार्य कॉपीराइट कानून के अंतर्गत ज्ञात प्रतिबंधों से मुक्त पाया गया है, जिसमें सभी संबंधित और पड़ोसी अधिकार भी शामिल हैं।',
);

16
hi/license_full_names.php Normal file
View File

@@ -0,0 +1,16 @@
<?PHP
declare(strict_types = 1);
$license_full_names = array (
'CC BY-NC-SA' => 'एट्रिब्यूशन - गैर-वाणिज्यिक - समान रूप से साझा करें',
'CC BY-NC' => 'श्रेय - गैर-वाणिज्यिक',
'CC BY-ND' => 'एट्रिब्यूशन - कोई व्युत्पन्न नहीं',
'CC BY-SA' => 'श्रेय - समान रूप से साझा करें',
'CC BY' => 'आरोपण',
'CC0' => 'कोई अधिकार सुरक्षित नहीं',
'RR-F' => 'अधिकार सुरक्षित - निःशुल्क पहुँच',
'RR-P' => 'अधिकार सुरक्षित - सशुल्क पहुँच',
'RR-R' => 'अधिकार सुरक्षित - प्रतिबंधित पहुँच',
'Orphan Work' => 'अनाथ कार्य',
'Public Domain Mark' => 'सार्वजनिक डोमेन चिह्न',
'CC BY-NC-ND' => 'एट्रिब्यूशन - गैर-वाणिज्यिक - कोई व्युत्पन्न नहीं',
);

16
hi/license_url.php Normal file
View File

@@ -0,0 +1,16 @@
<?PHP
declare(strict_types = 1);
$license_url = array (
'CC BY-NC-SA' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
'CC BY-NC-ND' => 'https://creativecommons.org/licenses/by-nc-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/',
);

6
hi/loan_types.php Normal file
View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$loan_types = array (
'outgoing' => 'जावक',
'incoming' => 'आने वाली',
);

25
hi/marking_types.php Normal file
View File

@@ -0,0 +1,25 @@
<?PHP
declare(strict_types = 1);
$marking_types = array (
'signature' => 'हस्ताक्षर',
'watermark' => 'वाटर-मार्क',
'engraving' => 'एनग्रेविंग',
'scratch' => 'खरोंचना',
'stamp' => 'स्टाम्प',
'overprint' => 'ओवरप्रिंट',
'embossing' => 'एम्बॉसिंग',
'handwritten' => 'हस्तलिखित',
'glued' => 'चिपके',
'embroidered' => 'कशीदाकारी',
'sewn' => 'सिला',
'screwed' => 'स्क्रिव्ड',
'burnt_in' => 'जला हुआ',
'riveted' => 'रिवेटेड',
'nailed' => 'कील ठुका',
'hallmarked' => 'हॉलमार्क',
'punched' => 'छिद्रित',
'scarified' => 'दागदार',
'cast' => 'ढालना',
'painted' => 'चित्रित',
'drawn' => 'अनिर्णित',
);

View File

@@ -0,0 +1,37 @@
<?PHP
declare(strict_types = 1);
$measurement_type_set = array (
'length' => 'लंबाई',
'height' => 'ऊंचाई',
'width' => 'चौड़ाई',
'number_of_copies' => 'प्रतियों की संख्या',
'weight' => 'वज़न',
'diameter' => 'व्यास',
'wall' => 'दीवार',
'number_of_parts' => 'भागों की संख्या',
'die_axis' => 'मरो अक्ष',
'length_socle' => 'आधार की लंबाई',
'height_socle' => 'आधार की ऊंचाई',
'width_socle' => 'आधार की चौड़ाई',
'height_sheet_size' => 'शीट का आकार (ऊंचाई)',
'length_sheet_size' => 'शीट का आकार (लंबाई)',
'width_sheet_size' => 'शीट का आकार (चौड़ाई)',
'height_image_size' => 'छवि का आकार (ऊंचाई)',
'length_image_size' => 'छवि का आकार (लंबाई)',
'width_image_size' => 'छवि का आकार (चौड़ाई)',
'length_frame' => 'फ़्रेम (लंबाई)',
'height_frame' => 'फ़्रेम (ऊंचाई)',
'width_frame' => 'फ़्रेम चौड़ाई)',
'length_min' => 'लंबाई (मिनट)',
'length_max' => 'लंबाई (अधिकतम)',
'height_min' => 'ऊंचाई (न्यूनतम)',
'height_max' => 'ऊंचाई (अधिकतम)',
'width_min' => 'चौड़ाई (न्यूनतम)',
'width_max' => 'चौड़ाई (अधिकतम)',
'diameter_min' => 'व्यास (न्यूनतम)',
'diameter_max' => 'व्यास (अधिकतम)',
'diameter_frame' => 'फ़्रेम (व्यास)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$object_check_types_set = array (
'condition_check' => 'स्थिति की जाँच',
'completeness_check' => 'पूर्णता जांच',
'data_correctness_check' => 'डेटा शुद्धता जांच',
'location_accuracy_check' => 'स्थान की सटीकता की जाँच',
);

View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$object_damage_status_set = array (
'identified' => 'पहचान की',
'repair_possible' => 'समीक्षा की गई; मरम्मत संभव है',
'repair_scheduled' => 'मरम्मत निर्धारित',
'repaired' => 'मरम्मत',
'irreparable' => 'अपूरणीय',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$object_damage_types_set = array (
'water_damage' => 'पानी का नुकसान',
'breakage' => 'टूटना',
'desiccation' => 'सुखाना',
);

View File

@@ -0,0 +1,11 @@
<?PHP
declare(strict_types = 1);
$object_document_type_set = array (
'undefined' => 'अपरिभाषित',
'provenance_report' => 'उद्गम रिपोर्ट',
'purchase_contract' => 'खरीद अनुबंध',
'restoration_report' => 'बहाली रिपोर्ट',
'assessment' => 'आकलन',
'correspondence' => 'पत्र-व्यवहार',
'legacy_documentation' => 'विरासत दस्तावेज़ीकरण',
);

9
hi/object_form_set.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$object_form_set = array (
'cube' => 'घनक्षेत्र',
'cuboid' => 'घनाभ',
'sphere' => 'गोला',
'cone' => 'कोन',
'cylinder' => 'सिलेंडर',
);

View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$object_publication_background = array (
0 => 'छवि प्रकाशित',
1 => 'प्रतिलिपि प्रकाशित',
2 => 'चर्चा की गई',
3 => 'रेज़ेंसिएर्ट',
4 => 'संदर्भित',
5 => 'विज्ञापित',
);

View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$object_record_status = array (
'unlocked' => 'अनलॉक किया',
'locked' => 'बंद',
'revision' => 'दोहराव',
'deleted' => 'हटाए गए',
'archived' => 'संग्रहीत',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$object_record_status_explica = array (
'unlocked' => 'डिफ़ॉल्ट स्थिति. ऑब्जेक्ट रिकॉर्ड को अद्यतन किया जा सकता है.',
'locked' => 'जब तक लॉक जारी नहीं किया जाता तब तक ऑब्जेक्ट को अपडेट नहीं किया जा सकता।',
'revision' => 'इस वस्तु पर अभी शोध चल रहा है। शोध पूरा होने तक आगे के अपडेट अक्षम हैं।',
'archived' => 'उदाहरण के लिए, उन ऑब्जेक्ट्स के लिए जिन्हें डी-एक्सेस कर दिया गया है। ऑब्जेक्ट रिकॉर्ड के अपडेट निलंबित कर दिए जाते हैं और ऑब्जेक्ट रिकॉर्ड को ऑब्जेक्ट ओवरव्यू में संग्रहीत के रूप में चिह्नित कर दिया जाता है।',
);

11
hi/object_status.php Normal file
View File

@@ -0,0 +1,11 @@
<?PHP
declare(strict_types = 1);
$object_status = array (
'owned' => 'स्वामित्व',
'permanent_loan' => 'स्थायी ऋण',
'borrowed' => 'उधार लिया हुआ',
'to_check_for_gift' => 'जाँच करने के लिए (उपहार के लिए)',
'to_check' => 'जाँच करने के लिए',
'deaccessed' => 'डीएक्सेस्ड',
'third_party_property' => 'तीसरे पक्ष की संपत्ति',
);

10
hi/phone_types.php Normal file
View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$phone_types = array (
'work' => 'काम',
'home' => 'घर',
'mobile' => 'गतिमान',
'work mobile' => 'कार्य मोबाइल',
'fax' => 'फैक्स',
'fax work' => 'फ़ैक्स (कार्य)',
);

13
hi/placetypes.php Normal file
View File

@@ -0,0 +1,13 @@
<?PHP
declare(strict_types = 1);
$tlPlacetypes = array (
0 => 'प्रशासनिक',
1 => 'ऐतिहासिक',
2 => 'क्षेत्र',
3 => 'गली',
4 => 'इमारत',
5 => 'पहाड़',
6 => 'जंगल',
7 => 'जल निकाय',
8 => 'द्वीप',
);

View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$podcast_contributor_roles = array (
'onair' => 'ऑन एयर',
'recording' => 'रिकॉर्डिंग',
'technical_support' => 'तकनीकी समर्थन',
'organization' => 'संगठन',
);

29
hi/position_set.php Normal file
View File

@@ -0,0 +1,29 @@
<?PHP
declare(strict_types = 1);
$position_set = array (
'left' => 'बाएं',
'top_left' => 'बाएं से बाएं',
'top' => 'शीर्ष',
'top_right' => 'ठीक तरह से ऊपर',
'right' => 'सही',
'bottom_right' => 'नीचे दाएं',
'bottom' => 'तल',
'bottom_left' => 'तली छोड़ें',
'center' => 'केंद्र',
'rear_side' => 'पीछे की ओर',
'edge' => 'किनारा',
'other' => 'अन्य',
'inside' => 'अंदर',
'underside' => 'नीचे',
'topside' => 'जहाज़ की छत पर',
'front_front' => 'पूरा सामने',
'rear_left' => 'पीछे की ओर: बाईं ओर',
'rear_top_left' => 'पीछे की ओर: ऊपर बाईं ओर',
'rear_top' => 'पीछे की ओर: ऊपर',
'rear_top_right' => 'पीछे की ओर: ऊपर दाईं ओर',
'rear_right' => 'पीछे की ओर: दाएँ',
'rear_bottom_right' => 'पीछे की ओर: नीचे दाईं ओर',
'rear_bottom' => 'पीछे की ओर: नीचे',
'rear_bottom_left' => 'पीछे की ओर: नीचे बाईं ओर',
'rear_center' => 'पीछे की ओर: मध्य',
);

18
hi/process_types.php Normal file
View File

@@ -0,0 +1,18 @@
<?PHP
declare(strict_types = 1);
$process_types = array (
'project' => 'परियोजना',
'grant_application' => 'अनुदान आवेदन',
'exhibition' => 'प्रदर्शनी',
'appointment' => 'नियुक्ति / कार्यक्रम',
'loan_incoming' => 'ऋण (आने वाला)',
'loan_outgoing' => 'ऋण (आउटगोइंग)',
'employment_ad' => 'रोजगार विज्ञापन',
'purchase' => 'खरीदना',
'deaccession' => 'विग्रहण',
'construction' => 'निर्माण उपाय',
'pest_control_campaign' => 'कीट नियंत्रण अभियान',
'pr_campaign' => 'जनसंपर्क अभियान',
'relocation' => 'पुनर्वास',
'discussion' => 'बहस',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$recording_types_set = array (
'audio' => 'ऑडियो',
'video' => 'वीडियो',
);

7
hi/research_status.php Normal file
View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$research_status = array (
'bad' => 'अधिक शोध नहीं किया गया',
'medium' => 'आंशिक रूप से शोध किया गया',
'good' => 'अच्छी तरह से शोध किया गया',
);

View File

@@ -0,0 +1,24 @@
<?PHP
declare(strict_types = 1);
$series_contributor_role = array (
'author' => 'लेखक',
'director' => 'निदेशक',
'dramaturg' => 'नाटककार',
'production_designer' => 'प्रोडक्शन डिजाइनर',
'costumer' => 'ग्राहक',
'musician' => 'संगीतकार',
'choreographer' => 'कोरियोग्राफर',
'make_up_artist' => 'मेकअप कलाकार',
'speech_trainer' => 'भाषण प्रशिक्षक',
'puppet_maker' => 'कठपुतली निर्माता',
'technician' => 'तकनीशियन',
'inspector' => 'इंस्पेक्टर',
'assistant' => 'सहायक',
'actor' => 'अभिनेता',
'painter' => 'चित्रकार',
'creator' => 'निर्माता',
'equipment_supplier' => 'उपकरण आपूर्तिकर्ता',
'contributing_institution' => 'योगदान देने वाली संस्था',
'event_organizer' => 'कार्यक्रम के आयोजक',
'movement_trainer' => 'मूवमेंट ट्रेनर',
);

7
hi/series_place_role.php Normal file
View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$series_place_role = array (
'place_of_production' => 'उत्पादन का स्थान',
'performance_space' => 'प्रदर्शन स्थान',
'rehearsal_space' => 'रिहर्सल स्थान',
);

6
hi/series_time_role.php Normal file
View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$series_time_role = array (
'premiere' => 'प्रीमियर',
'time_of_presentation' => 'प्रस्तुति का समय',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$shipment_method_set = array (
'unknown' => 'अज्ञात',
'car' => 'कार से',
'ship' => 'जहाज द्वारा',
);

12
hi/source_type_set.php Normal file
View File

@@ -0,0 +1,12 @@
<?PHP
declare(strict_types = 1);
$source_type_set = array (
'article' => 'लेख',
'inbook' => 'संग्रहित खंड में लेख',
'book' => 'किताब',
'phdthesis' => 'पीएचडी थीसिस',
'electronical' => 'इलेक्ट्रॉनिक संसाधन',
'misc' => 'मिश्रित',
'patent' => 'पेटेंट',
'unpublished' => 'अप्रकाशित',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$space_access_status = array (
'enter' => 'प्रवेश करना',
'leave' => 'छुट्टी',
);

16
hi/space_types.php Normal file
View File

@@ -0,0 +1,16 @@
<?PHP
declare(strict_types = 1);
$space_types = array (
'building' => 'इमारत',
'depot' => 'डिपो कक्ष',
'utility_room' => 'व्यावहारिक कक्ष',
'exhibition_room' => 'प्रदर्शनी कक्ष',
'display_cabinet' => 'प्रदर्शन हेतु सजी वस्तुओं की अलमारी',
'shelf' => 'दराज',
'box' => 'डिब्बा',
'folder' => 'फ़ोल्डर',
'office' => 'कार्यालय',
'floor' => 'ज़मीन',
'hallway' => 'दालान',
'outdoor_area' => 'बाहरी क्षेत्र',
);

8
hi/syndication_repos.php Normal file
View File

@@ -0,0 +1,8 @@
<?PHP
declare(strict_types = 1);
$syndication_repos = array (
'ddb' => 'जर्मन डिजिटल लाइब्रेरी (DDB)',
'europeana' => 'Europeana',
'smb-digital' => 'एसएमबी-डिजिटल',
'kalliope-verbund' => 'कल्लियोपे वर्बंड',
);

9
hi/tag_relation_type.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$tag_relation_type = array (
'tag' => 'टैग',
'object_type' => 'ऑब्जेक्ट प्रकार',
'material' => 'सामग्री',
'technique' => 'तकनीक',
'display_subject' => 'विषय प्रदर्शित करें',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$timing_intervals_set = array (
'weekly' => 'साप्ताहिक',
'monthly' => 'महीने के',
'annual' => 'वार्षिक',
);

11
hi/title_types_set.php Normal file
View File

@@ -0,0 +1,11 @@
<?PHP
declare(strict_types = 1);
$title_types_set = array (
'' => ' ',
'Science' => 'विज्ञान',
'Everyday speech' => 'रोज़मर्रा की बातचीत',
'Colloquial speech' => 'बोलचाल की भाषा',
'Dialect' => 'बोली',
'Professional jargon' => 'पेशेवर शब्दजाल',
'Sociolect' => 'सोशियोलेक्ट',
);

9
hi/todo_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$todo_status = array (
'suggested' => 'सुझाव दिया',
'planned' => 'की योजना बनाई',
'in_progress' => 'प्रगति पर है',
'done' => 'हो गया',
'cancelled' => 'रद्द',
);

9
hi/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
hi/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -0,0 +1,6 @@
<?PHP
declare(strict_types = 1);
$units_count_copies_set = array (
'copies' => 'प्रतियां',
'specimen' => 'नमूना',
);

View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$units_count_parts_set = array (
'parts' => 'भागों',
'pages' => 'पृष्ठों',
'sheets' => 'पत्रक',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
);

View File

@@ -0,0 +1,5 @@
<?PHP
declare(strict_types = 1);
$units_die_axis_set = array (
'h' => 'एच',
);

10
hi/units_length_set.php Normal file
View File

@@ -0,0 +1,10 @@
<?PHP
declare(strict_types = 1);
$units_length_set = array (
'm' => 'एम',
'dm' => 'डीएम',
'cm' => 'सेमी',
'mm' => 'मिमी',
'ft' => 'फुट',
'in' => 'इंच',
);

7
hi/units_weight_set.php Normal file
View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$units_weight_set = array (
't' => 'टी',
'kg' => 'किलोग्राम',
'g' => 'जी',
);

View File

@@ -0,0 +1,7 @@
<?PHP
declare(strict_types = 1);
$vocabulary_redaction_level = array (
'checked' => 'चेक किए गए',
'unchecked' => 'अनियंत्रित',
'questionable' => 'संदिग्ध',
);

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
hsb/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'Parts', 'parts' => 'Parts',
'pages' => 'Pages', 'pages' => 'Pages',
'sheets' => 'Sheets', 'sheets' => 'Sheets',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

View File

@@ -31,4 +31,7 @@ $measurement_type_set = array (
'diameter_min' => 'Diameter (min.)', 'diameter_min' => 'Diameter (min.)',
'diameter_max' => 'Diameter (max.)', 'diameter_max' => 'Diameter (max.)',
'diameter_frame' => 'Frame (diameter)', 'diameter_frame' => 'Frame (diameter)',
'length_blade' => 'Length of blade',
'height_blade' => 'Height of blade',
'width_blade' => 'Width of blade',
); );

9
hu/transcript_status.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_status = array (
'incomplete' => 'Incomplete',
'machine_generated' => 'Machine-generated',
'rough_draft' => 'Rough draft',
'quality_control_failed' => 'Quality control failed',
'quality_control_passed' => 'Quality control passed',
);

9
hu/transcript_types.php Normal file
View File

@@ -0,0 +1,9 @@
<?PHP
declare(strict_types = 1);
$transcript_types = array (
'simple_transcription' => 'Simple transcription',
'diplomatic_transcription' => 'Diplomatic transcription',
'critical_edition' => 'Critical edition',
'historical_critical_edition' => 'Historical-critical edition',
'reading_edition' => 'Reading edition',
);

View File

@@ -4,4 +4,7 @@ $units_count_parts_set = array (
'parts' => 'db', 'parts' => 'db',
'pages' => 'oldal', 'pages' => 'oldal',
'sheets' => 'lap', 'sheets' => 'lap',
'double_pages' => 'Double pages',
'standalone_sheets' => 'Standalone sheets',
'written_pages' => 'Written pages',
); );

Some files were not shown because too many files have changed in this diff Show More