9 lines
228 B
PHP
9 lines
228 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$institution_public_private_category_set = array (
|
|
'public' => 'जनता',
|
|
'private' => 'निजी',
|
|
'religious' => 'धार्मिक',
|
|
'mixed' => 'मिश्रित',
|
|
);
|