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 05b9607450
commit 25769b5b0b
2 changed files with 46 additions and 16 deletions

View File

@ -0,0 +1,31 @@
<?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 ['Contact' => [
'Address' => '',
'Addresses' => '',
'City' => '',
'Contact' => '',
'Contacts' => '',
'Country' => '',
'Email' => '',
'FAO' => '',
'Fax' => '',
'Name' => '',
'Office' => '',
'Phone' => '',
'Private' => '',
'Province' => '',
'State' => '',
'Zip' => '',
]];

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

@ -4,7 +4,6 @@
*
* PHP Version 8.0
*
* @package Modules\Contact
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@ -13,20 +12,20 @@
declare(strict_types=1);
return ['Contact' => [
'Address' => 'Address',
'Address' => 'Address',
'Addresses' => 'Addresses',
'City' => 'City',
'Contact' => 'Contact',
'Contacts' => 'Contacts',
'Country' => 'Country',
'Email' => 'Email',
'FAO' => 'FAO',
'Fax' => 'Fax',
'Name' => 'Name',
'Office' => 'Office',
'Phone' => 'Phone',
'Private' => 'Private',
'Province' => 'Province',
'State' => 'State',
'Zip' => 'Zip',
'City' => 'City',
'Contact' => 'Contact',
'Contacts' => 'Contacts',
'Country' => 'Country',
'Email' => 'Email',
'FAO' => 'FAO',
'Fax' => 'Fax',
'Name' => 'Name',
'Office' => 'Office',
'Phone' => 'Phone',
'Private' => 'Private',
'Province' => 'Province',
'State' => 'State',
'Zip' => 'Zip',
]];