Prepare translating dates

This commit is contained in:
Eike Kettner
2021-04-12 10:53:34 +02:00
parent 7cb4f741e0
commit 5737eba82d
26 changed files with 593 additions and 154 deletions

View File

@ -1,6 +1,8 @@
module Messages.Comp.CustomFieldTable exposing (Texts, gb)
import Messages.Basics
import Messages.DateFormat as DF
import Messages.UiLanguage
type alias Texts =
@ -8,6 +10,7 @@ type alias Texts =
, nameLabel : String
, format : String
, usageCount : String
, formatDateShort : Int -> String
}
@ -17,4 +20,5 @@ gb =
, nameLabel = "Name/Label"
, format = "Format"
, usageCount = "#Usage"
, formatDateShort = DF.formatDateShort Messages.UiLanguage.English
}