mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-06 15:15:58 +00:00
17 lines
259 B
Elm
17 lines
259 B
Elm
module Messages.Comp.ImapSettingsTable exposing (Texts, gb)
|
|
|
|
import Messages.Basics
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, hostPort : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, hostPort = "Host/Port"
|
|
}
|