11 lines
432 B
PHP
11 lines
432 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$institution_basic_category_set = array (
|
|
'archive' => 'ಆರ್ಕೈವ್',
|
|
'library' => 'ಗ್ರಂಥಾಲಯ',
|
|
'memorial_site' => 'ಸ್ಮಾರಕ ತಾಣ',
|
|
'private_collection' => 'ಖಾಸಗಿ ಸಂಗ್ರಹ',
|
|
'museum' => 'ವಸ್ತುಸಂಗ್ರಹಾಲಯ',
|
|
'university_collection' => 'ವಿಶ್ವವಿದ್ಯಾಲಯದ ಸಂಗ್ರಹ',
|
|
);
|