mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
82 lines
2.5 KiB
Elm
82 lines
2.5 KiB
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Messages.Comp.EmailSettingsForm exposing
|
|
( Texts
|
|
, de
|
|
, gb
|
|
)
|
|
|
|
import Data.SSLType exposing (SSLType)
|
|
import Messages.Basics
|
|
import Messages.Data.SSLType
|
|
|
|
|
|
type alias Texts =
|
|
{ basics : Messages.Basics.Texts
|
|
, sslTypeLabel : SSLType -> String
|
|
, connectionPlaceholder : String
|
|
, connectionNameInfo : String
|
|
, smtpHost : String
|
|
, smtpHostPlaceholder : String
|
|
, smtpPort : String
|
|
, smtpUser : String
|
|
, smtpUserPlaceholder : String
|
|
, smtpPassword : String
|
|
, smtpPasswordPlaceholder : String
|
|
, fromAddress : String
|
|
, fromAddressPlaceholder : String
|
|
, replyTo : String
|
|
, replyToPlaceholder : String
|
|
, ssl : String
|
|
, ignoreCertCheck : String
|
|
}
|
|
|
|
|
|
gb : Texts
|
|
gb =
|
|
{ basics = Messages.Basics.gb
|
|
, sslTypeLabel = Messages.Data.SSLType.gb
|
|
, connectionPlaceholder = "Connection name, e.g. 'gmail.com'"
|
|
, connectionNameInfo = "The connection name must not contain whitespace or special characters."
|
|
, smtpHost = "SMTP Host"
|
|
, smtpHostPlaceholder = "SMTP host name, e.g. 'mail.gmail.com'"
|
|
, smtpPort = "SMTP Port"
|
|
, smtpUser = "SMTP User"
|
|
, smtpUserPlaceholder = "SMTP Username, e.g. 'your.name@gmail.com'"
|
|
, smtpPassword = "SMTP Password"
|
|
, smtpPasswordPlaceholder = "Password"
|
|
, fromAddress = "From Address"
|
|
, fromAddressPlaceholder = "Sender E-Mail address"
|
|
, replyTo = "Reply-To"
|
|
, replyToPlaceholder = "Optional Reply-To E-Mail address"
|
|
, ssl = "SSL"
|
|
, ignoreCertCheck = "Ignore certificate check"
|
|
}
|
|
|
|
|
|
de : Texts
|
|
de =
|
|
{ basics = Messages.Basics.de
|
|
, sslTypeLabel = Messages.Data.SSLType.de
|
|
, connectionPlaceholder = "Name der Verbindung, z.B. 'gmail.com'"
|
|
, connectionNameInfo = "Der Name muss eine gültige ID sein, es dürfen keine Leer- oder Sonderzeichen verwendet werden."
|
|
, smtpHost = "SMTP-Server"
|
|
, smtpHostPlaceholder = "SMTP-Server, z.B. 'mail.gmail.com'"
|
|
, smtpPort = "SMTP-Port"
|
|
, smtpUser = "SMTP-Benutzer"
|
|
, smtpUserPlaceholder = "SMTP-Benutzername, z.B. 'your.name@gmail.com'"
|
|
, smtpPassword = "SMTP-Passwort"
|
|
, smtpPasswordPlaceholder = "Passwort"
|
|
, fromAddress = "Absenderadresse"
|
|
, fromAddressPlaceholder = "E-Mail-Adresse des Absenders"
|
|
, replyTo = "Antwort an"
|
|
, replyToPlaceholder = "Optionale Antwortadresse"
|
|
, ssl = "SSL"
|
|
, ignoreCertCheck = "Zertifikatsprüfung ignorieren"
|
|
}
|