10 lines
278 B
PHP
10 lines
278 B
PHP
<?PHP
|
||
declare(strict_types = 1);
|
||
$todo_status = array (
|
||
'suggested' => 'Запропоновано',
|
||
'planned' => 'Заплановано',
|
||
'in_progress' => 'У процесі виконання',
|
||
'done' => 'Зроблено',
|
||
'cancelled' => 'Скасовано ',
|
||
);
|