Add German translation for collective settings page

This commit is contained in:
eikek
2021-06-06 00:28:35 +02:00
parent 9db75f3e71
commit fe4f48dd7f
20 changed files with 421 additions and 30 deletions

View File

@ -1,4 +1,8 @@
module Messages.Comp.CalEventInput exposing (Texts, gb)
module Messages.Comp.CalEventInput exposing
( Texts
, de
, gb
)
import Http
import Messages.Comp.HttpError
@ -35,3 +39,19 @@ gb =
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.English
, httpError = Messages.Comp.HttpError.gb
}
de : Texts
de =
{ weekday = "Wochentag"
, year = "Jahr"
, month = "Monat"
, day = "Tag"
, hour = "Stunde"
, minute = "Minute"
, error = "Fehler"
, schedule = "Zeitplan"
, next = "Nächsten Zeiten"
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.German
, httpError = Messages.Comp.HttpError.de
}