docspell/modules/webapp/src/main/elm/Messages/Comp/SearchStatsView.elm
2021-04-11 16:05:11 +02:00

23 lines
343 B
Elm

module Messages.Comp.SearchStatsView exposing (Texts, gb)
type alias Texts =
{ items : String
, count : String
, sum : String
, avg : String
, min : String
, max : String
}
gb : Texts
gb =
{ items = "Items"
, count = "Count"
, sum = "Sum"
, avg = "Avg"
, min = "Min"
, max = "Max"
}