Approval.
This commit is contained in:
parent
1563a72bf9
commit
63d9d55cde
@ -1,16 +1,16 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$space_types = array (
|
$space_types = array (
|
||||||
'building' => 'Building',
|
'building' => 'ಕಟ್ಟಡ',
|
||||||
'depot' => 'Depot room',
|
'depot' => 'ಡಿಪೊ ಕೊಠಡಿ',
|
||||||
'utility_room' => 'Utility room',
|
'utility_room' => 'ಉಪಯುಕ್ತತೆ ಕೊಠಡಿ',
|
||||||
'exhibition_room' => 'Exhibition room',
|
'exhibition_room' => 'ಪ್ರದರ್ಶನ ಕೊಠಡಿ',
|
||||||
'display_cabinet' => 'Display cabinet',
|
'display_cabinet' => 'ಪ್ರದರ್ಶನ ಕ್ಯಾಬಿನೆಟ್',
|
||||||
'shelf' => 'Shelf',
|
'shelf' => 'ಶೆಲ್ಫ್',
|
||||||
'box' => 'Box',
|
'box' => 'ಬಾಕ್ಸ್',
|
||||||
'folder' => 'Folder',
|
'folder' => 'ಕಡತಕೋಶ',
|
||||||
'office' => 'Office',
|
'office' => 'ಕಚೇರಿ',
|
||||||
'floor' => 'Floor',
|
'floor' => 'ಮಹಡಿ',
|
||||||
'hallway' => 'Hallway',
|
'hallway' => 'ಹಾಲ್ವೇ',
|
||||||
'outdoor_area' => 'Outdoor area',
|
'outdoor_area' => 'ಹೊರಾಂಗಣ ಪ್ರದೇಶ',
|
||||||
);
|
);
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$syndication_repos = array (
|
$syndication_repos = array (
|
||||||
'ddb' => 'German Digital Library (DDB)',
|
'ddb' => 'ಜರ್ಮನ್ ಡಿಜಿಟಲ್ ಲೈಬ್ರರಿ (ಡಿಡಿಬಿ)',
|
||||||
'europeana' => 'Europeana',
|
'europeana' => 'ಯುರೋಪಿಯನ್',
|
||||||
'smb-digital' => 'SMB-digital',
|
'smb-digital' => 'ಎಸ್ಎಂಬಿ ಡಿಜಿಟಲ್',
|
||||||
'kalliope-verbund' => 'Kalliope Verbund',
|
'kalliope-verbund' => 'ಕಲ್ಲಿಯೋಪ್ ಜಾಲಬಂಧ',
|
||||||
);
|
);
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$tag_relation_type = array (
|
$tag_relation_type = array (
|
||||||
'tag' => 'Tag',
|
'tag' => 'ಟ್ಯಾಗ್',
|
||||||
'object_type' => 'Object type',
|
'object_type' => 'ವಸ್ತುವಿನ ಪ್ರಕಾರ',
|
||||||
'material' => 'Material',
|
'material' => 'ವಸ್ತು',
|
||||||
'technique' => 'Technique',
|
'technique' => 'ತಂತ್ರಗಾರಿಕೆ',
|
||||||
'display_subject' => 'Display subject',
|
'display_subject' => 'ವಿಷಯವನ್ನು ಪ್ರದರ್ಶಿಸಿ',
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$timing_intervals_set = array (
|
$timing_intervals_set = array (
|
||||||
'weekly' => 'Weekly',
|
'weekly' => 'ಪ್ರತಿ ವಾರ',
|
||||||
'monthly' => 'Monthly',
|
'monthly' => 'ಪ್ರತಿ ವಾರ',
|
||||||
'annual' => 'Annual',
|
'annual' => 'ವಾರ್ಷಿಕವಾಗಿ',
|
||||||
);
|
);
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$title_types_set = array (
|
$title_types_set = array (
|
||||||
'' => ' ',
|
'' => ' ',
|
||||||
'Science' => 'Science',
|
'Science' => 'ವಿಜ್ಞಾನ',
|
||||||
'Everyday speech' => 'Everyday speech',
|
'Everyday speech' => 'ದೈನಂದಿನ ಭಾಷಣ',
|
||||||
'Colloquial speech' => 'Colloquial speech',
|
'Colloquial speech' => 'ಆಡುಮಾತಿನ ಮಾತು',
|
||||||
'Dialect' => 'Dialect',
|
'Dialect' => 'ಉಪಭಾಷೆ',
|
||||||
'Professional jargon' => 'Professional jargon',
|
'Professional jargon' => 'ವೃತ್ತಿಪರ ಪರಿಭಾಷೆ',
|
||||||
'Sociolect' => 'Sociolect',
|
'Sociolect' => 'ಸಾಮಾಜಿಕ ಆಯ್ಕೆ',
|
||||||
);
|
);
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$todo_status = array (
|
$todo_status = array (
|
||||||
'suggested' => 'Suggested',
|
'suggested' => 'ಸೂಚಿಸಲಾಗಿದೆ',
|
||||||
'planned' => 'Planned',
|
'planned' => 'ಯೋಜಿತ',
|
||||||
'in_progress' => 'In progress',
|
'in_progress' => 'ಪ್ರಗತಿಯಲ್ಲಿದೆ',
|
||||||
'done' => 'Done',
|
'done' => 'ನೆರವೇರಿತು',
|
||||||
'cancelled' => 'Cancelled',
|
'cancelled' => 'ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ',
|
||||||
);
|
);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$units_count_copies_set = array (
|
$units_count_copies_set = array (
|
||||||
'copies' => 'Copies',
|
'copies' => 'ಪ್ರತಿಗಳು',
|
||||||
'specimen' => 'Specimen',
|
'specimen' => 'ಮಾದರಿ',
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$units_count_parts_set = array (
|
$units_count_parts_set = array (
|
||||||
'parts' => 'Parts',
|
'parts' => 'ಭಾಗಗಳು',
|
||||||
'pages' => 'Pages',
|
'pages' => 'ಪುಟಗಳು',
|
||||||
'sheets' => 'Sheets',
|
'sheets' => 'ಹಾಳೆಗಳು',
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$vocabulary_redaction_level = array (
|
$vocabulary_redaction_level = array (
|
||||||
'checked' => 'Checked',
|
'checked' => 'ಪರಿಶೀಲಿಸಲಾಗಿದೆ',
|
||||||
'unchecked' => 'Unchecked',
|
'unchecked' => 'ಪರಿಶೀಲಿಸದ',
|
||||||
'questionable' => 'Questionable',
|
'questionable' => 'ಪ್ರಶ್ನಾರ್ಹ',
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user