mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-28 11:38:40 +00:00
23 lines
463 B
PHP
Executable File
23 lines
463 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\InvestmentManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['InvestmentManagement' => [
|
|
'Investment' => 'Investment',
|
|
'Investments' => 'Investments',
|
|
':status1' => 'Draft',
|
|
':status2' => 'Open',
|
|
':status3' => 'Approved',
|
|
':status4' => 'Denied',
|
|
]];
|