Prepare translating dates

This commit is contained in:
Eike Kettner
2021-04-12 10:53:34 +02:00
parent 7cb4f741e0
commit 5737eba82d
26 changed files with 593 additions and 154 deletions

View File

@ -1,5 +1,8 @@
module Messages.Comp.CalEventInput exposing (Texts, gb)
import Messages.DateFormat as DF
import Messages.UiLanguage
type alias Texts =
{ weekday : String
@ -11,6 +14,7 @@ type alias Texts =
, error : String
, schedule : String
, next : String
, formatDateTime : Int -> String
}
@ -25,4 +29,5 @@ gb =
, error = "Error"
, schedule = "Schedule"
, next = "Next"
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.English
}