|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +return [ |
| 6 | + /* |
| 7 | + |-------------------------------------------------------------------------- |
| 8 | + | Invoice Language Lines |
| 9 | + |-------------------------------------------------------------------------- |
| 10 | + */ |
| 11 | + 'invoice' => 'Rechnung', |
| 12 | + 'serial_number' => 'Rechnung Nr.', |
| 13 | + 'due_at' => 'Fällig am', |
| 14 | + 'created_at' => 'Rechnungsdatum', |
| 15 | + 'paid_at' => 'Bezahlt am', |
| 16 | + 'description' => 'Beschreibung', |
| 17 | + 'total_amount' => 'Gesamtbetrag', |
| 18 | + 'tax' => 'Steuer', |
| 19 | + 'tax_label' => 'Steuer', |
| 20 | + 'subtotal_amount' => 'Zwischensumme', |
| 21 | + 'amount' => 'Betrag', |
| 22 | + 'unit_price' => 'Einzelpreis', |
| 23 | + 'quantity' => 'Menge', |
| 24 | + 'discount_name' => 'Rabatt', |
| 25 | + |
| 26 | + 'from' => 'Rechnungsersteller', |
| 27 | + 'to' => 'Rechnungsempfänger', |
| 28 | + 'shipping_to' => 'Versandadresse', |
| 29 | + |
| 30 | + 'states' => [ |
| 31 | + 'draft' => 'Entwurf', |
| 32 | + 'pending' => 'Ausstehend', |
| 33 | + 'paid' => 'Bezahlt', |
| 34 | + 'refunded' => 'Erstattet', |
| 35 | + ], |
| 36 | + |
| 37 | + 'types' => [ |
| 38 | + 'invoice' => 'Rechnung', |
| 39 | + 'quote' => 'Angebot', |
| 40 | + 'credit' => 'Gutschrift', |
| 41 | + 'proforma' => 'Proforma-Rechnung', |
| 42 | + ], |
| 43 | + |
| 44 | + 'page' => 'Seite', |
| 45 | +]; |
0 commit comments