Skip to content

Commit a587b7a

Browse files
authored
Merge pull request #3 from REHvision/master
Add German translation
2 parents 0470594 + 7990083 commit a587b7a

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,6 @@
6969
'translations' => [
7070
'en' => require_once __DIR__ . '/lib/languages/en.php',
7171
'fr' => require_once __DIR__ . '/lib/languages/fr.php',
72+
'de' => require_once __DIR__ . '/lib/languages/de.php',
7273
],
7374
]);

lib/languages/de.php

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?php
2+
3+
return [
4+
'view.backups' => 'Backups',
5+
'backups.pluralized' => ['Backup', 'Backups'],
6+
7+
'backups.placeholder' => 'Es ist kein anzeigbares Backup vorhanden',
8+
9+
'backups.filename' => 'Dateiname',
10+
'backups.size' => 'Größe',
11+
'backups.created' => 'Erstellt',
12+
13+
'backups.create' => 'Ein neues Backup erstellen',
14+
'backups.create.process' => 'Das Backup wird erstellt',
15+
'backups.create.success' => 'Das Backup wurde erfolgreich erstellt',
16+
'backups.create.error' => 'Es ist ein Fehler bei der Backup-Erstellung aufgetreten',
17+
18+
'backups.download' => 'Herunterladen',
19+
'backups.downloading' => 'Wird heruntergeladen',
20+
'backups.download.latest' => 'Das letzte Backup herunterladen',
21+
'backups.delete.some' => 'Ältere Backups löschen',
22+
'backups.delete.prefix' => 'Du bist dabei folgendes zu löschen:',
23+
'backups.delete.button' => 'Ja, lösche es',
24+
'backups.delete.multiple.button' => 'Ja, lösche sie',
25+
'backups.delete.multiple.question' => 'Welche Backups möchtest du löschen?',
26+
'backups.delete.multiple.placeholder' => 'Bitte wähle einen Zeitraum',
27+
'backups.delete.multiple.week' => 'Lösche Backups älter als 1 Woche',
28+
'backups.delete.multiple.month' => 'Lösche Backups älter als 1 Monat',
29+
'backups.delete.multiple.half' => 'Lösche Backups älter als 6 Monate',
30+
'backups.delete.multiple.year' => 'Lösche Backups älter als 1 Jahr',
31+
'backups.delete.warning.noMatch' => 'Kein Backup entspricht deiner Auswahl, es gibt nichts zu löschen.',
32+
'backups.delete.warning.deletable' => [
33+
'Kein Backup wird gelöscht. ',
34+
'1 Backup wird gelöscht. ',
35+
'{{ count }} Backups werden gelöscht. '
36+
],
37+
'backups.delete.warning.remaining' => [
38+
'<strong>Es wird kein Backup verbleiben.</strong>',
39+
'Es wird 1 Backup verbleiben. ',
40+
'Es werden {{ count }} Backups verbleiben. '
41+
],
42+
'backups.delete.warning.question' => [
43+
'Willst du sie dennoch löschen?',
44+
'Willst du fortfahren?',
45+
'Willst du fortfahren?'
46+
],
47+
];

0 commit comments

Comments
 (0)