mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-08 15:59:51 +00:00
32 lines
453 B
Elm
32 lines
453 B
Elm
{-
|
|
Copyright 2020 Docspell Contributors
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Messages.Comp.FolderSelect exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Messages.Comp.ExpandCollapse
|
|
|
|
|
|
type alias Texts =
|
|
{ expandCollapse : Messages.Comp.ExpandCollapse.Texts
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ expandCollapse = Messages.Comp.ExpandCollapse.gb
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ expandCollapse = Messages.Comp.ExpandCollapse.de
|
|
}
|