mirror of
https://github.com/Karaka-Management/oms-IncomeStatement.git
synced 2026-01-11 11:48:41 +00:00
34 lines
783 B
PHP
34 lines
783 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\PL
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['IncomeStatement' => [
|
|
'Start' => 'Start',
|
|
'End' => 'End',
|
|
'Overview' => 'Overview',
|
|
'Metrics' => 'Metrics',
|
|
'Charts' => 'Charts',
|
|
'Interval' => 'Interval',
|
|
'Environment' => 'Environment',
|
|
'Monthly' => 'Monthly',
|
|
'Quarterly' => 'Quarterly',
|
|
'Annually' => 'Annually',
|
|
'Category' => 'Category',
|
|
'Subtotal' => 'Subtotal',
|
|
'Total' => 'Total',
|
|
'HR' => 'HR',
|
|
'Diff' => 'Diff',
|
|
'Sales' => 'Sales',
|
|
'Diff%' => 'Diff %',
|
|
]];
|