mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
38 lines
809 B
Elm
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."
|
|
}
|