Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions resources/lang/de/invoice.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

declare(strict_types=1);

return [
/*
|--------------------------------------------------------------------------
| Invoice Language Lines
|--------------------------------------------------------------------------
*/
'invoice' => 'Rechnung',
'serial_number' => 'Rechnung Nr.',
'due_at' => 'Fällig am',
'created_at' => 'Rechnungsdatum',
'paid_at' => 'Bezahlt am',
'description' => 'Beschreibung',
'total_amount' => 'Gesamtbetrag',
'tax' => 'Steuer',
'tax_label' => 'Steuer',
'subtotal_amount' => 'Zwischensumme',
'amount' => 'Betrag',
'unit_price' => 'Einzelpreis',
'quantity' => 'Menge',
'discount_name' => 'Rabatt',

'from' => 'Rechnungsersteller',
'to' => 'Rechnungsempfänger',
'shipping_to' => 'Versandadresse',

'states' => [
'draft' => 'Entwurf',
'pending' => 'Ausstehend',
'paid' => 'Bezahlt',
'refunded' => 'Erstattet',
],

'types' => [
'invoice' => 'Rechnung',
'quote' => 'Angebot',
'credit' => 'Gutschrift',
'proforma' => 'Proforma-Rechnung',
],

'page' => 'Seite',
];
2 changes: 1 addition & 1 deletion resources/views/default/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{{ $invoice->serial_number }} • {{ $invoice->formatMoney($invoice->totalAmount()) }}
</td>
<td class="text-right">
<p class="dompdf-page p-2">Page </p>
<p class="dompdf-page p-2">{{ __('invoices::invoice.page') }} </p>
</td>
</tr>
</tbody>
Expand Down