oms-Billing/Admin/Install/Media/lang.php
2024-03-20 07:21:20 +00:00

59 lines
1.7 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* 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.',
'REF' => 'REF',
'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',
'TaxRemark' => 'No sales tax will be charged in accordance with §19 (1) UStG.',
],
'de' => [
'InvoiceNo' => 'Belegnummer',
'InvoiceDate' => 'Belegdatum',
'ServiceDate' => 'Leistungsdatum',
'CustomerNo' => 'Kundennummer',
'REF' => 'REF',
'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',
'TaxRemark' => 'Es wird gemäß §19 Abs. 1 UStG keine Umsatzsteuer berechnet.',
],
];