12 lines
233 B
PHP
12 lines
233 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
array (
|
|
'todo_status' =>
|
|
array (
|
|
'suggested' => 'suggerito',
|
|
'planned' => 'pianificata/o',
|
|
'in_progress' => 'in corso',
|
|
'done' => 'fatto',
|
|
'cancelled' => 'annullata/o',
|
|
),
|
|
) |