Skip to content

Commit a5f9be3

Browse files
authored
Merge pull request #33 from maatien/german-translation
2 parents 8fb2e50 + f674cb1 commit a5f9be3

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

resources/lang/de/invoice.php

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
];

resources/views/default/layout.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
{{ $invoice->serial_number }}{{ $invoice->formatMoney($invoice->totalAmount()) }}
2727
</td>
2828
<td class="text-right">
29-
<p class="dompdf-page p-2">Page </p>
29+
<p class="dompdf-page p-2">{{ __('invoices::invoice.page') }} </p>
3030
</td>
3131
</tr>
3232
</tbody>

0 commit comments

Comments
 (0)