docspell/modules/webapp/src/main/elm/Messages/Basics.elm

44 lines
804 B
Elm
Raw Normal View History

2021-03-28 16:23:43 +00:00
module Messages.Basics exposing (..)
type alias Texts =
{ incoming : String
, outgoing : String
, tags : String
, items : String
, submit : String
, submitThisForm : String
, cancel : String
, delete : String
, created : String
, edit : String
, back : String
, backToList : String
, searchPlaceholder : String
, id : String
2021-03-28 16:23:43 +00:00
}
gb : Texts
gb =
{ incoming = "Incoming"
, outgoing = "Outgoing"
, tags = "Tags"
, items = "Items"
, submit = "Submit"
, submitThisForm = "Submit this form"
, cancel = "Cancel"
, delete = "Delete"
, created = "Created"
, edit = "Edit"
, back = "Back"
, backToList = "Back to list"
, searchPlaceholder = "Search"
, id = "Id"
2021-03-28 16:23:43 +00:00
}
de : Texts
de =
gb