2022-10-19 01:10:13 +00:00
|
|
|
<?PHP
|
2023-01-23 21:37:48 +00:00
|
|
|
declare(strict_types = 1);
|
2023-01-23 21:41:01 +00:00
|
|
|
$todo_status = array (
|
2023-03-25 23:13:15 +00:00
|
|
|
'suggested' => 'Javasolt',
|
|
|
|
'planned' => 'Tervezett',
|
|
|
|
'in_progress' => 'Folyamatban',
|
|
|
|
'done' => 'Kész',
|
2023-01-23 21:41:01 +00:00
|
|
|
'cancelled' => 'Lemondva',
|
|
|
|
);
|