mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 19:08:26 +00:00
Externalized strings
This commit is contained in:
39
modules/webapp/src/main/elm/Messages/Basics.elm
Normal file
39
modules/webapp/src/main/elm/Messages/Basics.elm
Normal file
@ -0,0 +1,39 @@
|
||||
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
|
||||
}
|
||||
|
||||
|
||||
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"
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
gb
|
Reference in New Issue
Block a user