fix php version, lang files, basic tpl and sales impl.

This commit is contained in:
Dennis Eichhorn 2021-03-05 21:01:37 +01:00
parent 2531461ab9
commit 6893db3e36
2 changed files with 10 additions and 8 deletions

1
Theme/Backend/Lang/de.lang.php Executable file → Normal file
View File

@ -4,6 +4,7 @@
* *
* PHP Version 8.0 * PHP Version 8.0
* *
* @package Modules\Localization
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0

17
Theme/Backend/Lang/en.lang.php Executable file → Normal file
View File

@ -4,6 +4,7 @@
* *
* PHP Version 8.0 * PHP Version 8.0
* *
* @package Modules\Localization
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -12,19 +13,19 @@
declare(strict_types=1); declare(strict_types=1);
return ['Workflow' => [ return ['Workflow' => [
'CC' => '', 'CC' => 'CC',
'Created' => 'Created', 'Created' => 'Created',
'Creator' => 'Creator', 'Creator' => 'Creator',
'Due' => '', 'Due' => 'Due',
'Media' => '', 'Media' => 'Media',
'Message' => '', 'Message' => 'Message',
'Next' => 'Next', 'Next' => 'Next',
'Select' => '', 'Select' => 'Select',
'Status' => 'Status', 'Status' => 'Status',
'Task' => '', 'Task' => 'Task',
'Title' => 'Title', 'Title' => 'Title',
'To' => '', 'To' => 'To',
'Upload' => '', 'Upload' => 'Upload',
'Workflow' => 'Workflow', 'Workflow' => 'Workflow',
'Workflows' => 'Workflows', 'Workflows' => 'Workflows',
]]; ]];