manage data

This commit is contained in:
Jimmy Girardet
2022-03-09 17:09:33 +01:00
parent 2b42a1cc8b
commit b5fe694522
18 changed files with 212 additions and 1 deletions

View File

@ -9,6 +9,7 @@ module Messages.Comp.CustomFieldTable exposing
( Texts
, de
, gb
, fr
)
import Data.TimeZone exposing (TimeZone)
@ -44,3 +45,13 @@ de tz =
, usageCount = "#Nutzung"
, formatDateShort = DF.formatDateShort Messages.UiLanguage.German tz
}
fr : TimeZone -> Texts
fr tz =
{ basics = Messages.Basics.fr
, nameLabel = "Nom/Label"
, format = "Format"
, usageCount = "#Utilisations"
, formatDateShort = DF.formatDateShort Messages.UiLanguage.French tz
}