module Messages.Comp.EmailSettingsTable exposing ( Texts , de , gb ) import Messages.Basics type alias Texts = { basics : Messages.Basics.Texts , hostPort : String , from : String } gb : Texts gb = { basics = Messages.Basics.gb , hostPort = "Host/Port" , from = "From" } de : Texts de = { basics = Messages.Basics.de , hostPort = "Server/Port" , from = "Absender" }