Files
docspell/modules/webapp/src/main/elm/Messages/Comp/BoxMessageEdit.elm
2022-01-26 23:26:06 +01:00

38 lines
809 B
Elm

{-
Copyright 2020 Eike K. & Contributors
SPDX-License-Identifier: AGPL-3.0-or-later
-}
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."
}