mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 19:08:26 +00:00
Reorganize messages to reflect page structure
This commit is contained in:
28
modules/webapp/src/main/elm/Messages/Comp/CalEventInput.elm
Normal file
28
modules/webapp/src/main/elm/Messages/Comp/CalEventInput.elm
Normal 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"
|
||||
}
|
Reference in New Issue
Block a user