mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-07 07:35:59 +00:00
23 lines
429 B
Elm
23 lines
429 B
Elm
module Messages.Comp.ScanMailboxTable exposing (Texts, gb)
|
|
|
|
import Messages.Basics
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, summary : String
|
|
, connection : String
|
|
, folders : String
|
|
, receivedSince : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, summary = "Summary"
|
|
, connection = "Connection"
|
|
, folders = "Folders"
|
|
, receivedSince = "Received Since"
|
|
}
|