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

69 lines
1.5 KiB
Elm
Raw Normal View History

2021-04-11 14:05:11 +00:00
module Messages.Basics exposing (Texts, gb)
2021-03-28 16:23:43 +00:00
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-04-05 19:31:45 +00:00
, ok : String
, yes : String
, no : String
2021-04-06 23:09:58 +00:00
, chooseTag : String
, loading : String
2021-04-10 14:02:34 +00:00
, name : String
, organization : String
, person : String
, equipment : String
, folder : String
, date : String
, correspondent : String
, concerning : String
, customFields : String
, direction : 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-04-05 19:31:45 +00:00
, ok = "Ok"
, yes = "Yes"
, no = "No"
2021-04-06 23:09:58 +00:00
, chooseTag = "Choose a tag"
, loading = "Loading"
2021-04-10 14:02:34 +00:00
, name = "Name"
, organization = "Organization"
, person = "Person"
, equipment = "Equipment"
, folder = "Folder"
, date = "Date"
, correspondent = "Correspondent"
, concerning = "Concerning"
, customFields = "Custom Fields"
, direction = "Direction"
2021-03-28 16:23:43 +00:00
}