mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 19:08:26 +00:00
Add German translation for Detail page
This commit is contained in:
@ -1,4 +1,7 @@
|
||||
module Messages.Data.ContactType exposing (gb)
|
||||
module Messages.Data.ContactType exposing
|
||||
( de
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.ContactType exposing (ContactType(..))
|
||||
|
||||
@ -23,3 +26,25 @@ gb ct =
|
||||
|
||||
Website ->
|
||||
"Website"
|
||||
|
||||
|
||||
de : ContactType -> String
|
||||
de ct =
|
||||
case ct of
|
||||
Phone ->
|
||||
"Telefon"
|
||||
|
||||
Mobile ->
|
||||
"Mobil"
|
||||
|
||||
Fax ->
|
||||
"Fax"
|
||||
|
||||
Email ->
|
||||
"E-Mail"
|
||||
|
||||
Docspell ->
|
||||
"Docspell"
|
||||
|
||||
Website ->
|
||||
"Webseite"
|
||||
|
@ -1,4 +1,7 @@
|
||||
module Messages.Data.CustomFieldType exposing (gb)
|
||||
module Messages.Data.CustomFieldType exposing
|
||||
( de
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.CustomFieldType exposing (CustomFieldType(..))
|
||||
|
||||
@ -20,3 +23,22 @@ gb ft =
|
||||
|
||||
Money ->
|
||||
"Money"
|
||||
|
||||
|
||||
de : CustomFieldType -> String
|
||||
de ft =
|
||||
case ft of
|
||||
Text ->
|
||||
"Text"
|
||||
|
||||
Numeric ->
|
||||
"Numerisch"
|
||||
|
||||
Date ->
|
||||
"Datum"
|
||||
|
||||
Boolean ->
|
||||
"Boolean"
|
||||
|
||||
Money ->
|
||||
"Geldbetrag"
|
||||
|
@ -1,4 +1,7 @@
|
||||
module Messages.Data.EquipmentUse exposing (gb)
|
||||
module Messages.Data.EquipmentUse exposing
|
||||
( de
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.EquipmentUse exposing (EquipmentUse(..))
|
||||
|
||||
@ -11,3 +14,13 @@ gb pu =
|
||||
|
||||
Disabled ->
|
||||
"Disabled"
|
||||
|
||||
|
||||
de : EquipmentUse -> String
|
||||
de pu =
|
||||
case pu of
|
||||
Concerning ->
|
||||
"Betreffend"
|
||||
|
||||
Disabled ->
|
||||
"Deaktiviert"
|
||||
|
@ -1,4 +1,7 @@
|
||||
module Messages.Data.OrgUse exposing (gb)
|
||||
module Messages.Data.OrgUse exposing
|
||||
( de
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.OrgUse exposing (OrgUse(..))
|
||||
|
||||
@ -11,3 +14,13 @@ gb pu =
|
||||
|
||||
Disabled ->
|
||||
"Disabled"
|
||||
|
||||
|
||||
de : OrgUse -> String
|
||||
de pu =
|
||||
case pu of
|
||||
Correspondent ->
|
||||
"Korrespondent"
|
||||
|
||||
Disabled ->
|
||||
"Deaktiviert"
|
||||
|
@ -1,4 +1,7 @@
|
||||
module Messages.Data.PersonUse exposing (gb)
|
||||
module Messages.Data.PersonUse exposing
|
||||
( de
|
||||
, gb
|
||||
)
|
||||
|
||||
import Data.PersonUse exposing (PersonUse(..))
|
||||
|
||||
@ -17,3 +20,19 @@ gb pu =
|
||||
|
||||
Disabled ->
|
||||
"Disabled"
|
||||
|
||||
|
||||
de : PersonUse -> String
|
||||
de pu =
|
||||
case pu of
|
||||
Correspondent ->
|
||||
"Korrespondent"
|
||||
|
||||
Concerning ->
|
||||
"Betreffend"
|
||||
|
||||
Both ->
|
||||
"Beide"
|
||||
|
||||
Disabled ->
|
||||
"Deaktiviert"
|
||||
|
Reference in New Issue
Block a user