mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-08 15:59:51 +00:00
38 lines
531 B
Elm
38 lines
531 B
Elm
module Messages.Comp.SearchStatsView exposing
|
|
( Texts
|
|
, de
|
|
, 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"
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ items = "Dokumente"
|
|
, count = "Anzahl"
|
|
, sum = "Summe"
|
|
, avg = "Durchschnitt"
|
|
, min = "Minimum"
|
|
, max = "Maximum"
|
|
}
|