Externalize strings in usersettings page

This commit is contained in:
Eike Kettner
2021-04-04 21:57:34 +02:00
parent 594818499e
commit 9c1beb2240
38 changed files with 1145 additions and 446 deletions

View File

@ -2,7 +2,6 @@ module Data.SSLType exposing
( SSLType(..)
, all
, fromString
, label
, toString
)
@ -45,16 +44,3 @@ fromString str =
_ ->
Nothing
label : SSLType -> String
label st =
case st of
None ->
"None"
SSL ->
"SSL/TLS"
StartTLS ->
"StartTLS"