mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
45 lines
670 B
Elm
45 lines
670 B
Elm
{-
|
|
Copyright 2020 Docspell Contributors
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
-}
|
|
|
|
module Messages.Data.PersonUse exposing
|
|
( de
|
|
, gb
|
|
)
|
|
|
|
import Data.PersonUse exposing (PersonUse(..))
|
|
|
|
|
|
gb : PersonUse -> String
|
|
gb pu =
|
|
case pu of
|
|
Correspondent ->
|
|
"Correspondent"
|
|
|
|
Concerning ->
|
|
"Concerning"
|
|
|
|
Both ->
|
|
"Both"
|
|
|
|
Disabled ->
|
|
"Disabled"
|
|
|
|
|
|
de : PersonUse -> String
|
|
de pu =
|
|
case pu of
|
|
Correspondent ->
|
|
"Korrespondent"
|
|
|
|
Concerning ->
|
|
"Betreffend"
|
|
|
|
Both ->
|
|
"Beides"
|
|
|
|
Disabled ->
|
|
"Deaktiviert"
|