Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(module:i18n) add missing german translations #8605

Merged
merged 1 commit into from
Jun 27, 2024
Merged
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
16 changes: 12 additions & 4 deletions components/i18n/languages/de_DE.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
weekPlaceholder: 'Woche auswählen',
rangePlaceholder: ['Startdatum', 'Enddatum'],
rangeYearPlaceholder: ['Startjahr', 'Endjahr'],
rangeQuarterPlaceholder: ['Startquartal', 'Endquartal'],
rangeMonthPlaceholder: ['Startmonat', 'Endmonat'],
rangeWeekPlaceholder: ['Startwoche', 'Endwoche'],
locale: 'de_DE',
Expand All @@ -50,8 +51,8 @@ export default {
monthBeforeYear: true,
previousMonth: 'Vorheriger Monat (PageUp)',
nextMonth: 'Nächster Monat (PageDown)',
previousYear: 'Vorheriges Jahr (Ctrl + left)',
nextYear: 'Nächstes Jahr (Ctrl + right)',
previousYear: 'Vorheriges Jahr (Strg + links)',
nextYear: 'Nächstes Jahr (Strg + rechts)',
previousDecade: 'Vorheriges Jahrzehnt',
nextDecade: 'Nächstes Jahrzehnt',
previousCentury: 'Vorheriges Jahrhundert',
Expand All @@ -63,7 +64,8 @@ export default {
}
},
TimePicker: {
placeholder: 'Zeit auswählen'
placeholder: 'Zeit auswählen',
rangePlaceholder: ['Startzeit', 'Endzeit']
},
Calendar: {
lang: {
Expand Down Expand Up @@ -126,7 +128,10 @@ export default {
collapse: 'Zeile reduzieren',
triggerDesc: 'Klicken zur absteigenden Sortierung',
triggerAsc: 'Klicken zur aufsteigenden Sortierung',
cancelSort: 'Klicken zum Abbrechen der Sortierung'
cancelSort: 'Klicken zum Abbrechen der Sortierung',
filterCheckall: 'Alle Elemente anwählen',
filterSearchPlaceholder: 'In Filterung suchen',
selectNone: 'Alles löschen'
},
Modal: {
okText: 'OK',
Expand Down Expand Up @@ -159,6 +164,9 @@ export default {
Empty: {
description: 'Keine Daten'
},
Icon: {
icon: 'Symbol'
},
Text: {
edit: 'Bearbeiten',
copy: 'Kopieren',
Expand Down