mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
45 lines
627 B
Elm
45 lines
627 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
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"
|
|
}
|