9 lines
259 B
PHP
9 lines
259 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$appointment_status = array (
|
|
'scheduled' => 'अनुसूचित',
|
|
'cancelled' => 'रद्द',
|
|
'moved_online' => 'ऑनलाइन स्थानांतरित',
|
|
'postponed' => 'स्थगित',
|
|
);
|