29 lines
606 B
PHP
29 lines
606 B
PHP
<?php
|
|
|
|
|
|
return [
|
|
|
|
|
|
'dashboard' => [
|
|
'planning' => [
|
|
'description' => 'In planning',
|
|
'text' => 'In planning for 2023'
|
|
],
|
|
'prepared' => [
|
|
'description' => 'Prepared',
|
|
'text' => 'Waiting for the work to start.'
|
|
],
|
|
'on_going' => [
|
|
'description' => 'On going',
|
|
'text' => 'Work in progress.'
|
|
],
|
|
'finished' => [
|
|
'description' => 'Finished.',
|
|
'text' => 'Last projects 2023.'
|
|
],
|
|
|
|
],
|
|
|
|
'welcome' => 'Welcome to our application!',
|
|
];
|