start and coolectivesettings

This commit is contained in:
Jimmy Girardet
2022-03-05 22:04:34 +01:00
parent 404e82647c
commit 5559c5aed4
28 changed files with 586 additions and 1 deletions

View File

@ -9,6 +9,7 @@ module Messages.Comp.CalEventInput exposing
( Texts
, de
, gb
, fr
)
import Data.TimeZone exposing (TimeZone)
@ -63,3 +64,19 @@ de tz =
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.German tz
, httpError = Messages.Comp.HttpError.de
}
fr : TimeZone -> Texts
fr tz =
{ weekday = "Jour de la semaine"
, year = "Année"
, month = "Mois"
, day = "Jour"
, hour = "Heure"
, minute = "Minute"
, error = "Erreur"
, schedule = "Programmation"
, next = "Suivant"
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.French tz
, httpError = Messages.Comp.HttpError.fr
}