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