Reorganize messages to reflect page structure

This commit is contained in:
Eike Kettner
2021-04-10 00:30:42 +02:00
parent fa2c5750dd
commit 7c43fa0874
165 changed files with 585 additions and 586 deletions

View File

@ -0,0 +1,34 @@
module Messages.Comp.AttachmentMeta exposing (..)
import Messages.Basics
type alias Texts =
{ basics : Messages.Basics.Texts
, extractedMetadata : String
, content : String
, labels : String
, proposals : String
, correspondentOrg : String
, correspondentPerson : String
, concerningPerson : String
, concerningEquipment : String
, itemDate : String
, itemDueDate : String
}
gb : Texts
gb =
{ basics = Messages.Basics.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"
}