mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-11 21:39:33 +00:00
65 lines
1.7 KiB
Elm
65 lines
1.7 KiB
Elm
module Messages.Comp.AttachmentMeta exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Http
|
|
import Messages.Basics
|
|
import Messages.Comp.HttpError
|
|
import Messages.DateFormat as DF
|
|
import Messages.UiLanguage
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, httpError : Http.Error -> String
|
|
, extractedMetadata : String
|
|
, content : String
|
|
, labels : String
|
|
, proposals : String
|
|
, correspondentOrg : String
|
|
, correspondentPerson : String
|
|
, concerningPerson : String
|
|
, concerningEquipment : String
|
|
, itemDate : String
|
|
, itemDueDate : String
|
|
, formatDateShort : Int -> String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, httpError = Messages.Comp.HttpError.gb
|
|
, extractedMetadata = "Extracted Meta Data"
|
|
, content = "Content"
|
|
, labels = "Labels"
|
|
, proposals = "Proposals"
|
|
, correspondentOrg = "Correspondent Organization"
|
|
, correspondentPerson = "Correspondent Person"
|
|
, concerningPerson = "Concerning Person"
|
|
, concerningEquipment = "Concerning Equipment"
|
|
, itemDate = "Item Date"
|
|
, itemDueDate = "Item Due Date"
|
|
, formatDateShort = DF.formatDateShort Messages.UiLanguage.English
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ basics = Messages.Basics.de
|
|
, httpError = Messages.Comp.HttpError.de
|
|
, extractedMetadata = "Extrahierte Metadaten"
|
|
, content = "Inhalt"
|
|
, labels = "Label"
|
|
, proposals = "Vorschläge"
|
|
, correspondentOrg = "Korrespondent Unternehmen"
|
|
, correspondentPerson = "Korrespondent Person"
|
|
, concerningPerson = "Betreffende Person"
|
|
, concerningEquipment = "Ausstattung"
|
|
, itemDate = "Dokumentdatum"
|
|
, itemDueDate = "Fälligkeit"
|
|
, formatDateShort = DF.formatDateShort Messages.UiLanguage.German
|
|
}
|