2021-06-06 13:59:50 +02:00

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 "
}