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