-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
534 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import type { NLocale } from './enUS' | ||
|
||
const deDE: NLocale = { | ||
name: 'de-DE', | ||
global: { | ||
undo: 'Rückgängig', | ||
redo: 'Wiederholen', | ||
confirm: 'Bestätigen' | ||
}, | ||
Popconfirm: { | ||
positiveText: 'Bestätigen', | ||
negativeText: 'Abbrechen' | ||
}, | ||
Cascader: { | ||
placeholder: 'Bitte auswählen', | ||
loading: 'Wird geladen', | ||
loadingRequiredMessage: (label: string): string => | ||
`Bitte laden Sie alle Unterpunkte von ${label}, bevor Sie es auswählen.` | ||
}, | ||
Time: { | ||
dateFormat: 'dd-MM-yyyy', | ||
dateTimeFormat: 'dd-MM-yyyy HH:mm:ss' | ||
}, | ||
DatePicker: { | ||
yearFormat: 'yyyy', | ||
monthFormat: 'MMM', | ||
dayFormat: 'eeeeee', | ||
clear: 'Löschen', | ||
now: 'Jetzt', | ||
confirm: 'Bestätigen', | ||
selectTime: 'Uhrzeit auswählen', | ||
selectDate: 'Datum auswählen', | ||
datePlaceholder: 'Datum auswählen', | ||
datetimePlaceholder: 'Datum und Uhrzeit auswählen', | ||
monthPlaceholder: 'Monat auswählen', | ||
startDatePlaceholder: 'Anfangsdatum', | ||
endDatePlaceholder: 'Enddatum', | ||
startDatetimePlaceholder: 'Anfangsdatum und Uhrzeit', | ||
endDatetimePlaceholder: 'Enddatum und Uhrzeit', | ||
monthBeforeYear: true, | ||
firstDayOfWeek: 0 as 0 | 1 | 2 | 3 | 4 | 5 | 6, | ||
today: 'Heute' | ||
}, | ||
DataTable: { | ||
checkTableAll: 'Alles auswählen', | ||
uncheckTableAll: 'Auswahl aufheben', | ||
confirm: 'Bestätigen', | ||
clear: 'Löschen' | ||
}, | ||
Transfer: { | ||
sourceTitle: 'Quelle', | ||
targetTitle: 'Ziel' | ||
}, | ||
Empty: { | ||
description: 'Keine Daten' | ||
}, | ||
Select: { | ||
placeholder: 'Bitte auswählen' | ||
}, | ||
TimePicker: { | ||
placeholder: 'Uhrzeit auswählen', | ||
positiveText: 'OK', | ||
negativeText: 'Abbrechen', | ||
now: 'Jetzt' | ||
}, | ||
Pagination: { | ||
goto: 'Gehe zu', | ||
selectionSuffix: 'Seite' | ||
}, | ||
DynamicTags: { | ||
add: 'Hinzufügen' | ||
}, | ||
Log: { | ||
loading: 'Wird geladen' | ||
}, | ||
Input: { | ||
placeholder: 'Bitte ausfüllen' | ||
}, | ||
InputNumber: { | ||
placeholder: 'Bitte ausfüllen' | ||
}, | ||
DynamicInput: { | ||
create: 'Erstellen' | ||
}, | ||
ThemeEditor: { | ||
title: 'Theme Editor', | ||
clearAllVars: 'Alle Variablen löschen', | ||
clearSearch: 'Suche löschen', | ||
filterCompName: 'Filter Komponentenname', | ||
filterVarName: 'Filter Variablenname', | ||
import: 'Importieren', | ||
export: 'Exportieren', | ||
restore: 'Auf Standard zurücksetzen' | ||
} | ||
} | ||
|
||
export default deDE |
Oops, something went wrong.