mirror of
https://github.com/Karaka-Management/oms-Finance.git
synced 2026-01-15 14:58:41 +00:00
28 lines
745 B
PHP
28 lines
745 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Localization
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Finance' => [
|
|
'Invoice' => 'Invoice',
|
|
'Sales' => 'Sales',
|
|
'Name' => 'Name',
|
|
'TaxCodes' => 'Tax Codes',
|
|
'TaxCode' => 'Tax Code',
|
|
'Purchase' => 'Purchase',
|
|
'InvoicePercentage' => 'Invoice Percentage',
|
|
'OutputPercentage' => 'Sales Percentage',
|
|
'InputPercentage' => 'Input Percentage',
|
|
'Tax1Account' => 'Tax Account 1',
|
|
'Tax2Account' => 'Tax Account 2',
|
|
]];
|