docspell/modules/webapp/src/main/elm/Messages/Comp/ScanMailboxTable.elm
2021-04-10 00:30:42 +02:00

19 lines
327 B
Elm

module Messages.Comp.ScanMailboxTable exposing (..)
type alias Texts =
{ summary : String
, connection : String
, folders : String
, receivedSince : String
}
gb : Texts
gb =
{ summary = "Summary"
, connection = "Connection"
, folders = "Folders"
, receivedSince = "Received Since"
}