mirror of
https://github.com/Karaka-Management/oms-EquipmentManagement.git
synced 2026-02-17 18:48:41 +00:00
todos fixed
This commit is contained in:
parent
b6a39dbc3f
commit
c88ff59847
|
|
@ -61,7 +61,7 @@ final class ApiEquipmentAttributeController extends Controller
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$type = EquipmentAttributeTypeMapper::get()->where('id', (int) $request->getData('type'))->execute();
|
$type = EquipmentAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute();
|
||||||
$attribute = $this->createAttributeFromRequest($request, $type);
|
$attribute = $this->createAttributeFromRequest($request, $type);
|
||||||
$this->createModel($request->header->account, $attribute, EquipmentAttributeMapper::class, 'attribute', $request->getOrigin());
|
$this->createModel($request->header->account, $attribute, EquipmentAttributeMapper::class, 'attribute', $request->getOrigin());
|
||||||
$this->createStandardCreateResponse($request, $response, $attribute);
|
$this->createStandardCreateResponse($request, $response, $attribute);
|
||||||
|
|
@ -359,7 +359,7 @@ final class ApiEquipmentAttributeController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var AttributeType $old */
|
/** @var AttributeType $old */
|
||||||
$old = EquipmentAttributeTypeMapper::get()->where('id', (int) $request->getData('id'))->execute();
|
$old = EquipmentAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('id'))->execute();
|
||||||
$new = $this->updateAttributeTypeFromRequest($request, clone $old);
|
$new = $this->updateAttributeTypeFromRequest($request, clone $old);
|
||||||
|
|
||||||
$this->updateModel($request->header->account, $old, $new, EquipmentAttributeTypeMapper::class, 'equipment_attribute_type', $request->getOrigin());
|
$this->updateModel($request->header->account, $old, $new, EquipmentAttributeTypeMapper::class, 'equipment_attribute_type', $request->getOrigin());
|
||||||
|
|
@ -391,7 +391,7 @@ final class ApiEquipmentAttributeController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var AttributeType $equipmentAttributeType */
|
/** @var AttributeType $equipmentAttributeType */
|
||||||
$equipmentAttributeType = EquipmentAttributeTypeMapper::get()->where('id', (int) $request->getData('id'))->execute();
|
$equipmentAttributeType = EquipmentAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('id'))->execute();
|
||||||
$this->deleteModel($request->header->account, $equipmentAttributeType, EquipmentAttributeTypeMapper::class, 'equipment_attribute_type', $request->getOrigin());
|
$this->deleteModel($request->header->account, $equipmentAttributeType, EquipmentAttributeTypeMapper::class, 'equipment_attribute_type', $request->getOrigin());
|
||||||
$this->createStandardDeleteResponse($request, $response, $equipmentAttributeType);
|
$this->createStandardDeleteResponse($request, $response, $equipmentAttributeType);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ final class BackendController extends Controller
|
||||||
{
|
{
|
||||||
$view = new View($this->app->l11nManager, $request, $response);
|
$view = new View($this->app->l11nManager, $request, $response);
|
||||||
$view->setTemplate('/Modules/EquipmentManagement/Theme/Backend/attribute-type-list');
|
$view->setTemplate('/Modules/EquipmentManagement/Theme/Backend/attribute-type-list');
|
||||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003503001, $request, $response);
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1008405001, $request, $response);
|
||||||
|
|
||||||
/** @var \Modules\Attribute\Models\AttributeType[] $attributes */
|
/** @var \Modules\Attribute\Models\AttributeType[] $attributes */
|
||||||
$attributes = EquipmentAttributeTypeMapper::getAll()
|
$attributes = EquipmentAttributeTypeMapper::getAll()
|
||||||
|
|
|
||||||
0
Docs/Dev/img/er.png
Normal file → Executable file
0
Docs/Dev/img/er.png
Normal file → Executable file
|
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
21
Theme/Backend/Lang/Navigation.ar.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.ar.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.cs.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.cs.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.da.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.da.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
|
|
@ -13,9 +13,9 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['Navigation' => [
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => 'Equipment Attribute',
|
||||||
|
'EquipmentInspectionTypes' => 'Equipment Inspektionstypen',
|
||||||
'EquipmentManagement' => 'Equipment Management',
|
'EquipmentManagement' => 'Equipment Management',
|
||||||
'Equipments' => 'Equipments',
|
'Equipments' => 'Equipments',
|
||||||
'Inspections' => 'Inspektionen',
|
'Inspections' => 'Inspektionen',
|
||||||
'EquipmentInspectionTypes' => 'Equipment Inspektionstypen',
|
|
||||||
'EquipmentAttributes' => 'Equipment Attribute',
|
|
||||||
]];
|
]];
|
||||||
|
|
|
||||||
21
Theme/Backend/Lang/Navigation.el.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.el.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
4
Theme/Backend/Lang/Navigation.en.lang.php
Normal file → Executable file
4
Theme/Backend/Lang/Navigation.en.lang.php
Normal file → Executable file
|
|
@ -13,9 +13,9 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['Navigation' => [
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => 'Equipment Attributes',
|
||||||
|
'EquipmentInspectionTypes' => 'Equipment Inspection Types',
|
||||||
'EquipmentManagement' => 'Equipment Management',
|
'EquipmentManagement' => 'Equipment Management',
|
||||||
'Equipments' => 'Equipments',
|
'Equipments' => 'Equipments',
|
||||||
'Inspections' => 'Inspections',
|
'Inspections' => 'Inspections',
|
||||||
'EquipmentInspectionTypes' => 'Equipment Inspection Types',
|
|
||||||
'EquipmentAttributes' => 'Equipment Attributes',
|
|
||||||
]];
|
]];
|
||||||
|
|
|
||||||
21
Theme/Backend/Lang/Navigation.es.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.es.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.fi.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.fi.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.fr.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.fr.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.hu.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.hu.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.it.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.it.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.ja.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.ja.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.ko.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.ko.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.no.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.no.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.pl.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.pl.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.pt.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.pt.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.ru.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.ru.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.sv.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.sv.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.th.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.th.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.tr.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.tr.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.uk.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.uk.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
21
Theme/Backend/Lang/Navigation.zh.lang.php
Executable file
21
Theme/Backend/Lang/Navigation.zh.lang.php
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['Navigation' => [
|
||||||
|
'EquipmentAttributes' => '',
|
||||||
|
'EquipmentInspectionTypes' => '',
|
||||||
|
'EquipmentManagement' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/ar.lang.php
Executable file
44
Theme/Backend/Lang/ar.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/cs.lang.php
Executable file
44
Theme/Backend/Lang/cs.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/da.lang.php
Executable file
44
Theme/Backend/Lang/da.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
|
|
@ -13,30 +13,32 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['EquipmentManagement' => [
|
return ['EquipmentManagement' => [
|
||||||
'Equipment' => 'Equipment',
|
':status1' => 'Aktiv',
|
||||||
'Equipments' => 'Equipment',
|
':status2' => 'Inaktiv',
|
||||||
'Status' => 'Status',
|
':status3' => 'Beschädigt',
|
||||||
'Name' => 'Name',
|
':status4' => 'Außer Betrieb',
|
||||||
'Type' => 'Typ',
|
'Attributes' => 'Attribute',
|
||||||
'Make' => 'Marke',
|
'Costs' => 'Kosten',
|
||||||
'Model' => 'Modell',
|
'Date' => 'Datum',
|
||||||
'Start' => 'Start',
|
'Driver' => '',
|
||||||
'End' => 'Ende',
|
'EIN' => '',
|
||||||
'Profile' => 'Profile',
|
'Ein' => 'Ein',
|
||||||
'Attributes' => 'Attribute',
|
'End' => 'Ende',
|
||||||
'Files' => 'Dateien',
|
'Equipment' => 'Equipment',
|
||||||
'Notes' => 'Notizen',
|
'Equipments' => 'Equipment',
|
||||||
'Costs' => 'Kosten',
|
'Files' => 'Dateien',
|
||||||
'Inspections' => 'Inspectionen',
|
'History' => 'Historie',
|
||||||
'Ein' => 'Ein',
|
'Inspections' => 'Inspectionen',
|
||||||
'History' => 'Historie',
|
'LeasingFee' => 'Leasingkosten',
|
||||||
'Upcoming' => 'Upcoming',
|
'Make' => 'Marke',
|
||||||
'Responsible' => 'Verantwortlich',
|
'Model' => 'Modell',
|
||||||
'Date' => 'Datum',
|
'Name' => 'Name',
|
||||||
'PurchasePrice' => 'Kaufpreis',
|
'Notes' => 'Notizen',
|
||||||
'LeasingFee' => 'Leasingkosten',
|
'Profile' => 'Profile',
|
||||||
':status1' => 'Aktiv',
|
'PurchasePrice' => 'Kaufpreis',
|
||||||
':status2' => 'Inaktiv',
|
'Responsible' => 'Verantwortlich',
|
||||||
':status3' => 'Beschädigt',
|
'Start' => 'Start',
|
||||||
':status4' => 'Außer Betrieb',
|
'Status' => 'Status',
|
||||||
|
'Type' => 'Typ',
|
||||||
|
'Upcoming' => 'Upcoming',
|
||||||
]];
|
]];
|
||||||
|
|
|
||||||
44
Theme/Backend/Lang/el.lang.php
Executable file
44
Theme/Backend/Lang/el.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
|
|
@ -13,30 +13,32 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['EquipmentManagement' => [
|
return ['EquipmentManagement' => [
|
||||||
'Equipment' => 'Equipment',
|
':status1' => 'Active',
|
||||||
'Equipments' => 'Equipments',
|
':status2' => 'Inactive',
|
||||||
'Status' => 'Status',
|
':status3' => 'Damaged',
|
||||||
'Name' => 'Name',
|
':status4' => 'Out of order',
|
||||||
'Type' => 'Type',
|
'Attributes' => 'Attributes',
|
||||||
'Make' => 'Make',
|
'Costs' => 'Costs',
|
||||||
'Model' => 'Model',
|
'Date' => 'Date',
|
||||||
'Start' => 'Start',
|
'Driver' => '',
|
||||||
'End' => 'End',
|
'EIN' => '',
|
||||||
'Profile' => 'Profile',
|
'Ein' => 'Ein',
|
||||||
'Attributes' => 'Attributes',
|
'End' => 'End',
|
||||||
'Files' => 'Files',
|
'Equipment' => 'Equipment',
|
||||||
'Notes' => 'Notes',
|
'Equipments' => 'Equipments',
|
||||||
'Costs' => 'Costs',
|
'Files' => 'Files',
|
||||||
'Inspections' => 'Inspections',
|
'History' => 'History',
|
||||||
'Ein' => 'Ein',
|
'Inspections' => 'Inspections',
|
||||||
'History' => 'History',
|
'LeasingFee' => 'Leasing Fee',
|
||||||
'Upcoming' => 'Upcoming',
|
'Make' => 'Make',
|
||||||
'Responsible' => 'Responsible',
|
'Model' => 'Model',
|
||||||
'Date' => 'Date',
|
'Name' => 'Name',
|
||||||
'PurchasePrice' => 'Purchase Price',
|
'Notes' => 'Notes',
|
||||||
'LeasingFee' => 'Leasing Fee',
|
'Profile' => 'Profile',
|
||||||
':status1' => 'Active',
|
'PurchasePrice' => 'Purchase Price',
|
||||||
':status2' => 'Inactive',
|
'Responsible' => 'Responsible',
|
||||||
':status3' => 'Damaged',
|
'Start' => 'Start',
|
||||||
':status4' => 'Out of order',
|
'Status' => 'Status',
|
||||||
|
'Type' => 'Type',
|
||||||
|
'Upcoming' => 'Upcoming',
|
||||||
]];
|
]];
|
||||||
|
|
|
||||||
44
Theme/Backend/Lang/es.lang.php
Executable file
44
Theme/Backend/Lang/es.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/fi.lang.php
Executable file
44
Theme/Backend/Lang/fi.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/fr.lang.php
Executable file
44
Theme/Backend/Lang/fr.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/hu.lang.php
Executable file
44
Theme/Backend/Lang/hu.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/it.lang.php
Executable file
44
Theme/Backend/Lang/it.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/ja.lang.php
Executable file
44
Theme/Backend/Lang/ja.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/ko.lang.php
Executable file
44
Theme/Backend/Lang/ko.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/no.lang.php
Executable file
44
Theme/Backend/Lang/no.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/pl.lang.php
Executable file
44
Theme/Backend/Lang/pl.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/pt.lang.php
Executable file
44
Theme/Backend/Lang/pt.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/ru.lang.php
Executable file
44
Theme/Backend/Lang/ru.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/sv.lang.php
Executable file
44
Theme/Backend/Lang/sv.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/th.lang.php
Executable file
44
Theme/Backend/Lang/th.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/tr.lang.php
Executable file
44
Theme/Backend/Lang/tr.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/uk.lang.php
Executable file
44
Theme/Backend/Lang/uk.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
44
Theme/Backend/Lang/zh.lang.php
Executable file
44
Theme/Backend/Lang/zh.lang.php
Executable file
|
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Jingga
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return ['EquipmentManagement' => [
|
||||||
|
':status1' => '',
|
||||||
|
':status2' => '',
|
||||||
|
':status3' => '',
|
||||||
|
':status4' => '',
|
||||||
|
'Attributes' => '',
|
||||||
|
'Costs' => '',
|
||||||
|
'Date' => '',
|
||||||
|
'Driver' => '',
|
||||||
|
'EIN' => '',
|
||||||
|
'Ein' => '',
|
||||||
|
'End' => '',
|
||||||
|
'Equipment' => '',
|
||||||
|
'Equipments' => '',
|
||||||
|
'Files' => '',
|
||||||
|
'History' => '',
|
||||||
|
'Inspections' => '',
|
||||||
|
'LeasingFee' => '',
|
||||||
|
'Make' => '',
|
||||||
|
'Model' => '',
|
||||||
|
'Name' => '',
|
||||||
|
'Notes' => '',
|
||||||
|
'Profile' => '',
|
||||||
|
'PurchasePrice' => '',
|
||||||
|
'Responsible' => '',
|
||||||
|
'Start' => '',
|
||||||
|
'Status' => '',
|
||||||
|
'Type' => '',
|
||||||
|
'Upcoming' => '',
|
||||||
|
]];
|
||||||
|
|
@ -146,7 +146,8 @@ echo $this->data['nav']->render();
|
||||||
$equipment->attributes,
|
$equipment->attributes,
|
||||||
$this->data['attributeTypes'] ?? [],
|
$this->data['attributeTypes'] ?? [],
|
||||||
$this->data['units'] ?? [],
|
$this->data['units'] ?? [],
|
||||||
'{/api}fleet/equipment/attribute'
|
'{/api}fleet/equipment/attribute',
|
||||||
|
$equipment->id
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
0
tests/Controller/Api/ApiControllerEquipmentTrait.php
Normal file → Executable file
0
tests/Controller/Api/ApiControllerEquipmentTrait.php
Normal file → Executable file
Loading…
Reference in New Issue
Block a user