feat(i18n): add german language

pull/194/head
Bennet Gallein 2026-02-16 22:50:07 +01:00
parent 5a69f52653
commit d496c527af
No known key found for this signature in database
GPG Key ID: 54F2DF6954E8C635
2 changed files with 40 additions and 0 deletions

37
locales/de-DE/common.json Normal file
View File

@ -0,0 +1,37 @@
{
"Incidents": "Vorfälle",
"No data yet": "Noch keine Daten",
"All systems not operational": "Alle Systeme nicht funktional",
"All systems operational": "Alle System funktional",
"Some systems not operational": "Manche Systeme sind nicht funktional ({{down}} von {{total}})",
"Last updated on": "Letzte Aktualisierung: {{date}} (vor {{seconds}} Sekunden)",
"upcoming maintenance": "{{count}} anstehende Wartung",
"upcoming maintenance_plural": "{{count}} anstehende Wartungen",
"Hide": "[verstecken]",
"Show": "[zeigen]",
"Operational": "Funktional",
"No data available": "Keine Daten verfügbar, stell sicher dass der worker mit der letzten config version deployed und prüfe den worker status!",
"Overall": "Total: {{percent}}%",
"No Data": "Keine Daten",
"percent at date": "{{percent}}% am {{date}}",
"Down for": "Ausfall für {{duration}} (klick für Details)",
"incidents at": "🚨 {{name}} Vorfall am {{date}}",
"Response times": "Antwortszeit (ms)",
"Upcoming": "[Geplant] ",
"Scheduled Maintenance": "Geplante Wartung",
"Scheduled for": "Geplant für:",
"From": "Von:",
"Expected end": "Voraussichtliches Ende:",
"To": "Bis:",
"Until further notice": "Offen",
"Affected components": "Betroffene Komponenten:",
"MONITOR ID NOT FOUND": "[ERR: MONITOR ID NICHT GEFUNDEN]",
"No incidents in this month": "Keine Ausfälle diesen Monat",
"There are no incidents for this month": "Es gibt keine Ausfälle diesen Monat.",
"Monitor not found": "Monitor mit id {{id}} nicht gefunden!",
"Monitor State not defined": "Monitor State ist nicht definiert. Prüfe den worker status und binding!",
"All": "Alle",
"Select monitor": "Auswählen",
"Backwards": "← Zurück",
"Forward": "Vorwärts →"
}

View File

@ -5,6 +5,7 @@ import en from '../locales/en/common.json'
import zhCN from '../locales/zh-CN/common.json'
import zhTW from '../locales/zh-TW/common.json'
import frFR from '../locales/fr-FR/common.json'
import deDE from '../locales/de-DE/common.json'
i18n
.use(LanguageDetector)
@ -17,6 +18,8 @@ i18n
'zh-TW': { common: zhTW },
fr: { common: frFR },
'fr-FR': { common: frFR },
de: { common: deDE },
'de-DE': { common: deDE },
},
fallbackLng: 'en',
interpolation: {