9 lines
213 B
PHP
9 lines
213 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$appointment_status = array (
|
|
'scheduled' => 'Geplant',
|
|
'cancelled' => 'Abgesagt',
|
|
'moved_online' => 'In Online-Veranstaltung umgewandelt',
|
|
'postponed' => 'Verschoben',
|
|
);
|