mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
29 lines
462 B
Elm
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" |