mirror of
https://github.com/Karaka-Management/oms-AssetManagement.git
synced 2026-01-11 06:38:40 +00:00
26 lines
524 B
PHP
26 lines
524 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\AssetManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['AssetManagement' => [
|
|
'Assets' => 'Assets',
|
|
'Status' => 'Status',
|
|
'Name' => 'Name',
|
|
'Number' => 'Number',
|
|
'Type' => 'Type',
|
|
':status1' => 'Active',
|
|
':status2' => 'Inactive',
|
|
':status3' => 'Damaged',
|
|
':status4' => 'Out of order',
|
|
]];
|