mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
33 lines
455 B
Elm
33 lines
455 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
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 …"
|
|
}
|