itemdetail

This commit is contained in:
Jimmy Girardet
2022-03-05 23:46:48 +01:00
parent d33513dc7d
commit adb723ee03
25 changed files with 403 additions and 1 deletions

View File

@ -9,6 +9,7 @@ module Messages.Comp.AttachmentMeta exposing
( Texts
, de
, gb
, fr
)
import Data.TimeZone exposing (TimeZone)
@ -70,3 +71,21 @@ de tz =
, itemDueDate = "Fälligkeitsdatum"
, formatDateShort = DF.formatDateShort Messages.UiLanguage.German tz
}
fr : TimeZone -> Texts
fr tz =
{ basics = Messages.Basics.fr
, httpError = Messages.Comp.HttpError.fr
, extractedMetadata = "Métadonnées extraites"
, content = "Contenu"
, labels = "Labels"
, proposals = "Propositions"
, correspondentOrg = "Organisation correspondante"
, correspondentPerson = "Personne correspondante"
, concerningPerson = "Personne concernée"
, concerningEquipment = "Equipment concerné"
, itemDate = "Date du document"
, itemDueDate = "Date d'échéance"
, formatDateShort = DF.formatDateShort Messages.UiLanguage.French tz
}