10 lines
204 B
PHP
10 lines
204 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$todo_status = array (
|
|
'suggested' => 'Vorgeschlagen',
|
|
'planned' => 'Geplant',
|
|
'in_progress' => 'In Arbeit',
|
|
'done' => 'Getan',
|
|
'cancelled' => 'Abgebrochen',
|
|
);
|