11 lines
234 B
PHP
11 lines
234 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
array (
|
|
'appointment_status' =>
|
|
array (
|
|
'scheduled' => 'pianificato',
|
|
'cancelled' => 'annullato',
|
|
'moved_online' => 'Convertito in evento online',
|
|
'postponed' => 'rinviato',
|
|
),
|
|
) |