mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 23:55:28 +00:00
26 lines
359 B
Elm
26 lines
359 B
Elm
module Messages.Comp.ExpandCollapse exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
|
|
type alias Texts =
|
|
{ showMoreLabel : String
|
|
, showLessLabel : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ showMoreLabel = "Show More …"
|
|
, showLessLabel = "Show Less …"
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ showMoreLabel = "Mehr …"
|
|
, showLessLabel = "Weniger …"
|
|
}
|