mirror of
https://github.com/Karaka-Management/oms-BusinessExpenses.git
synced 2026-01-11 07:08:43 +00:00
38 lines
920 B
PHP
38 lines
920 B
PHP
<?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 ['BusinessExpenses' => [
|
|
':status1' => 'Draft',
|
|
':status2' => 'Finalized',
|
|
':status3' => 'Inactive',
|
|
'Amount' => 'Amount',
|
|
'Approved' => 'Approved',
|
|
'CreatedAt' => 'Created At',
|
|
'Description' => 'Description',
|
|
'End' => 'End',
|
|
'Expenses' => 'Expenses',
|
|
'From' => 'From',
|
|
'Gross' => 'Gross',
|
|
'Net' => 'Net',
|
|
'Notes' => 'Notes',
|
|
'Paid' => 'Paid',
|
|
'Report' => 'Report',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Title' => 'Title',
|
|
'Overview' => 'Overview',
|
|
'Clocking' => 'Clocking',
|
|
'Type' => 'Type',
|
|
]];
|