mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 07:35:59 +00:00
19 lines
327 B
Elm
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"
|
|
}
|