oms-Billing/Admin/Install/Media/lang.php
2023-06-17 03:13:20 +02:00

57 lines
1.6 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* Bill localization.
*
* @package Modules\Media
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
return [
'en' => [
'InvoiceNo' => 'Invoice No.',
'InvoiceDate' => 'Invoice Date',
'ServiceDate' => 'Service Date',
'CustomerNo' => 'Customer No.',
'PO' => 'PO',
'DueDate' => 'Due Date',
'Item' => 'Item',
'Currency' => 'Currency',
'Quantity' => 'Quantity',
'UnitPrice' => 'Unit Price',
'Total' => 'Total',
'Net' => 'Net',
'Gross' => 'Gross',
'Subtotal' => 'Subtotal',
'Taxes' => 'Taxes',
'Terms' => 'Terms',
'PaymentTerms' => 'Payment Terms',
],
'de' => [
'InvoiceNo' => 'Belegnummer',
'InvoiceDate' => 'Belegdatum',
'ServiceDate' => 'Leistungsdatum',
'CustomerNo' => 'Kundennummer',
'PO' => 'Kundenreferenz',
'DueDate' => 'Fälligkeitsdatum',
'Item' => 'Artikel',
'Currency' => 'Währung',
'Quantity' => 'Menge',
'UnitPrice' => 'Einzelpreis',
'Total' => 'Gesamt',
'Net' => 'Netto',
'Gross' => 'Brutto',
'Subtotal' => 'Netto',
'Taxes' => 'USt',
'Terms' => 'AGB',
'PaymentTerms' => 'Zahlungsbedingungen',
],
];