mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-06 15:15:58 +00:00
44 lines
1.3 KiB
Elm
44 lines
1.3 KiB
Elm
module Messages.Comp.PersonForm exposing (Texts, gb)
|
|
|
|
import Data.ContactType exposing (ContactType)
|
|
import Data.PersonUse exposing (PersonUse)
|
|
import Messages.Basics
|
|
import Messages.Comp.AddressForm
|
|
import Messages.Data.ContactType
|
|
import Messages.Data.PersonUse
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, addressForm : Messages.Comp.AddressForm.Texts
|
|
, personUseLabel : PersonUse -> String
|
|
, useOfPerson : String
|
|
, useAsConcerningOnly : String
|
|
, useAsCorrespondentOnly : String
|
|
, useAsBoth : String
|
|
, dontUseForSuggestions : String
|
|
, chooseAnOrg : String
|
|
, address : String
|
|
, contacts : String
|
|
, contactTypeLabel : ContactType -> String
|
|
, notes : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, addressForm = Messages.Comp.AddressForm.gb
|
|
, personUseLabel = Messages.Data.PersonUse.gb
|
|
, useOfPerson = "Use of this person"
|
|
, useAsConcerningOnly = "Use as concerning person only"
|
|
, useAsCorrespondentOnly = "Use as correspondent person only"
|
|
, useAsBoth = "Use as both concerning or correspondent person"
|
|
, dontUseForSuggestions = "Do not use for suggestions."
|
|
, chooseAnOrg = "Choose an organization"
|
|
, address = "Address"
|
|
, contacts = "Contacts"
|
|
, contactTypeLabel = Messages.Data.ContactType.gb
|
|
, notes = "Notes"
|
|
}
|