Reorganize messages to reflect page structure

This commit is contained in:
Eike Kettner
2021-04-10 00:30:42 +02:00
parent fa2c5750dd
commit 7c43fa0874
165 changed files with 585 additions and 586 deletions

View File

@ -0,0 +1,28 @@
module Messages.Comp.CalEventInput exposing (..)
type alias Texts =
{ weekday : String
, year : String
, month : String
, day : String
, hour : String
, minute : String
, error : String
, schedule : String
, next : String
}
gb : Texts
gb =
{ weekday = "Weekday"
, year = "Year"
, month = "Month"
, day = "Day"
, hour = "Hour"
, minute = "Minute"
, error = "Error"
, schedule = "Schedule"
, next = "Next"
}