mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
45 lines
659 B
Elm
45 lines
659 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Messages.Data.EquipmentUse exposing
|
|
( de
|
|
, gb
|
|
, fr
|
|
)
|
|
|
|
import Data.EquipmentUse exposing (EquipmentUse(..))
|
|
|
|
|
|
gb : EquipmentUse -> String
|
|
gb pu =
|
|
case pu of
|
|
Concerning ->
|
|
"Concerning"
|
|
|
|
Disabled ->
|
|
"Disabled"
|
|
|
|
|
|
de : EquipmentUse -> String
|
|
de pu =
|
|
case pu of
|
|
Concerning ->
|
|
"Betreffend"
|
|
|
|
Disabled ->
|
|
"Deaktiviert"
|
|
|
|
|
|
fr : EquipmentUse -> String
|
|
fr pu =
|
|
case pu of
|
|
Concerning ->
|
|
"Concerné"
|
|
|
|
Disabled ->
|
|
"Inactif"
|