mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-08 07:59:51 +00:00
72 lines
1.8 KiB
Elm
72 lines
1.8 KiB
Elm
{-
|
|
Copyright 2020 Docspell Contributors
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
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 = "Korrespondierende Organisation"
|
|
, correspondentPerson = "Korrespondierende Person"
|
|
, concerningPerson = "Betreffende Person"
|
|
, concerningEquipment = "Betreffende Ausstattung"
|
|
, itemDate = "Datum"
|
|
, itemDueDate = "Fälligkeitsdatum"
|
|
, formatDateShort = DF.formatDateShort Messages.UiLanguage.German
|
|
}
|