9 lines
225 B
PHP
9 lines
225 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$institution_public_private_category_set = array (
|
|
'public' => 'பொது',
|
|
'private' => 'தனிப்பட்ட',
|
|
'religious' => 'மத',
|
|
'mixed' => 'கலப்பு',
|
|
);
|