mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 10:28:27 +00:00
Editable dashboard
This commit is contained in:
30
modules/webapp/src/main/elm/Messages/Comp/BoxMessageEdit.elm
Normal file
30
modules/webapp/src/main/elm/Messages/Comp/BoxMessageEdit.elm
Normal file
@ -0,0 +1,30 @@
|
||||
module Messages.Comp.BoxMessageEdit exposing (Texts, de, gb)
|
||||
|
||||
|
||||
type alias Texts =
|
||||
{ titleLabel : String
|
||||
, titlePlaceholder : String
|
||||
, bodyLabel : String
|
||||
, bodyPlaceholder : String
|
||||
, infoText : String
|
||||
}
|
||||
|
||||
|
||||
gb : Texts
|
||||
gb =
|
||||
{ titleLabel = "Title"
|
||||
, titlePlaceholder = "Message title…"
|
||||
, bodyLabel = "Body"
|
||||
, bodyPlaceholder = "Message body…"
|
||||
, infoText = "Markdown can be used in both fields for simple formatting."
|
||||
}
|
||||
|
||||
|
||||
de : Texts
|
||||
de =
|
||||
{ titleLabel = "Titel"
|
||||
, titlePlaceholder = "Titel…"
|
||||
, bodyLabel = "Nachricht"
|
||||
, bodyPlaceholder = "Text…"
|
||||
, infoText = "Markdown kann in beiden Feldern für einfache Formatierung verwendet werden."
|
||||
}
|
Reference in New Issue
Block a user