test language/export/import which changed a lot of lang files

This commit is contained in:
Dennis Eichhorn 2021-02-08 19:10:15 +01:00
parent 35951e4038
commit f4e150cbd9
2 changed files with 50 additions and 17 deletions

View File

@ -0,0 +1,33 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Marketing' => [
'Actual' => '',
'Budget' => '',
'Description' => '',
'End' => '',
'Event' => '',
'Events' => '',
'Expenses' => '',
'Limit' => '',
'Location' => '',
'Name' => '',
'Promotion' => '',
'Promotions' => '',
'Sales' => '',
'Start' => '',
'Status' => '',
'Title' => '',
'Type' => '',
'Due' => '',
]];

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

@ -4,7 +4,6 @@
* *
* PHP Version 8.0 * PHP Version 8.0
* *
* @package Modules\Marketing
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0
@ -13,21 +12,22 @@
declare(strict_types=1); declare(strict_types=1);
return ['Marketing' => [ return ['Marketing' => [
'Actual' => 'Actual', 'Actual' => 'Actual',
'Budget' => 'Budget', 'Budget' => 'Budget',
'Description' => 'Description', 'Description' => 'Description',
'End' => 'End', 'End' => 'End',
'Event' => 'Event', 'Event' => 'Event',
'Events' => 'Events', 'Events' => 'Events',
'Expenses' => 'Expenses', 'Expenses' => 'Expenses',
'Limit' => 'Limit', 'Limit' => 'Limit',
'Location' => 'Location', 'Location' => 'Location',
'Name' => 'Name', 'Name' => 'Name',
'Promotion' => 'Promotion', 'Promotion' => 'Promotion',
'Promotions' => 'Promotions', 'Promotions' => 'Promotions',
'Sales' => 'Sales', 'Sales' => 'Sales',
'Start' => 'Start', 'Start' => 'Start',
'Status' => 'Status', 'Status' => 'Status',
'Title' => 'Title', 'Title' => 'Title',
'Type' => 'Type', 'Type' => 'Type',
'Due' => '',
]]; ]];