9 lines
339 B
PHP
9 lines
339 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$appointment_status = array (
|
|
'scheduled' => 'షెడ్యూల్డ్',
|
|
'cancelled' => 'రద్దు చేయబడింది',
|
|
'moved_online' => 'ఆన్లైన్లోకి తరలించబడింది',
|
|
'postponed' => 'వాయిదా పడింది',
|
|
);
|