Skip to content

Commit 8d0455c

Browse files
authored
Merge pull request tableflowhq#241 from maltesa/main
Add German translations
2 parents 656299a + e8cfea9 commit 8d0455c

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

src/i18n/de.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
const translations = {
2+
Upload: "Hochladen",
3+
"Select Header": "Kopfzeile auswählen",
4+
"Map Columns": "Spalten zuordnen",
5+
"Expected Column": "Erwartete Spalten",
6+
Required: "Erforderlich",
7+
"Drop your file here": "Datei hier ablegen",
8+
or: "oder",
9+
"Browse files": "Dateien durchsuchen",
10+
"Download Template": "Vorlage herunterladen",
11+
"Only CSV, XLS, and XLSX files can be uploaded": "Nur CSV-, XLS- und XLSX-Dateien können hochgeladen werden",
12+
"Select Header Row": "Kopfzeilenreihe auswählen",
13+
"Select the row which contains the column headers": "Wähle die Zeile, die die Spaltenüberschriften enthält",
14+
"Only the first sheet ("{{sheet}}") of the Excel file will be imported. To import multiple sheets, please upload each sheet individually.": "Nur das erste Blatt ("{{sheet}}") der Excel-Datei wird importiert. Um mehrere Blätter zu importieren, lade bitte jedes Blatt einzeln hoch.",
15+
"Cancel": "Abbrechen",
16+
"Continue": "Weiter",
17+
"Your File Column": "Deine Spalte der Datei",
18+
"Your Sample Data": "Deine Beispieldaten",
19+
"Destination Column": "Zielspalte",
20+
"Include": "Einfügen",
21+
"Submit": "Senden",
22+
"Loading...": "Laden...",
23+
"Please include all required columns": "Bitte alle erforderlichen Spalten einfügen",
24+
"Back": "Zurück",
25+
"- Select one -": "- Wähle eine aus -",
26+
"- empty -": "- leer -",
27+
"Import Successful": "Import erfolgreich",
28+
"Upload Successful": "Upload erfolgreich",
29+
"Done": "Fertig",
30+
"Upload another file": "Eine weitere Datei hochladen",
31+
};
32+
33+
export default translations;

src/i18n/i18n.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { initReactI18next } from "react-i18next";
33
import esTranslation from "./es";
44
import frTranslation from "./fr";
55
import itTranslations from "./it";
6+
import deTranslations from "./de";
7+
68
const resources: Resource = {
79
en: {
810
translation: {},
@@ -16,6 +18,9 @@ const resources: Resource = {
1618
it: {
1719
translation: itTranslations,
1820
},
21+
de: {
22+
translation: deTranslations,
23+
},
1924
};
2025

2126
i18.use(initReactI18next).init({

0 commit comments

Comments
 (0)