mirror of
https://github.com/Karaka-Management/oms-Organization.git
synced 2026-01-25 06:18:41 +00:00
31 lines
728 B
PHP
Executable File
31 lines
728 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Organization
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Organization' => [
|
|
'Active' => 'Active',
|
|
'Department' => 'Department',
|
|
'Departments' => 'Departments',
|
|
'Description' => 'Description',
|
|
'Inactive' => 'Inactive',
|
|
'Logo' => 'Logo',
|
|
'Name' => 'Name',
|
|
'Parent' => 'Parent',
|
|
'Position' => 'Position',
|
|
'Positions' => 'Positions',
|
|
'Status' => 'Status',
|
|
'Unit' => 'Unit',
|
|
'UnitLogo' => 'Unit Logo',
|
|
'Units' => 'Units',
|
|
]];
|