mirror of
https://github.com/Karaka-Management/oms-BusinessExpenses.git
synced 2026-01-11 07:08:43 +00:00
38 lines
939 B
PHP
38 lines
939 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' => 'Entwurf',
|
|
':status2' => 'Fertiggestellt',
|
|
':status3' => 'Inaktiv',
|
|
'Amount' => 'Betrag',
|
|
'Approved' => 'Genehmigt',
|
|
'CreatedAt' => 'Erstellt',
|
|
'Description' => 'Beschreibung',
|
|
'End' => 'Ende',
|
|
'Expenses' => 'Kosten',
|
|
'From' => 'Von',
|
|
'Gross' => 'Brutto',
|
|
'Net' => 'Netto',
|
|
'Notes' => 'Notizen',
|
|
'Paid' => 'Bezahlt',
|
|
'Report' => 'Bericht',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Title' => 'Titel',
|
|
'Overview' => 'Übersicht',
|
|
'Clocking' => 'Zeiterfassung',
|
|
'Type' => 'Typ',
|
|
]];
|