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
|
2021-04-04 13:55:49 +00:00
|
|
|
, 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
|
2021-04-09 20:39:44 +00:00
|
|
|
, 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"
|
2021-04-04 13:55:49 +00:00
|
|
|
, 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…"
|
2021-04-09 20:39:44 +00:00
|
|
|
, 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
|
|
|
}
|