Files
docspell/modules/webapp/src/main/elm/Messages/Data/AccountScope.elm
2022-03-08 09:42:45 +01:00

29 lines
462 B
Elm

{-
Copyright 2020 Eike K. & Contributors
SPDX-License-Identifier: AGPL-3.0-or-later
-}
module Messages.Data.AccountScope exposing (Texts, de, gb, fr)
import Data.AccountScope exposing (AccountScope)
type alias Texts =
AccountScope -> String
gb : Texts
gb =
Data.AccountScope.fold "Personal" "Collective"
de : Texts
de =
Data.AccountScope.fold "Persönlich" "Kollektiv"
fr : Texts
fr =
Data.AccountScope.fold "Personnel" "Groupe"