Improve share email form

This commit is contained in:
eikek
2021-10-24 00:37:53 +02:00
parent eaccb60732
commit f5bb85c61e
6 changed files with 74 additions and 16 deletions

View File

@ -23,6 +23,7 @@ type alias Texts =
, httpError : Http.Error -> String
, subjectTemplate : Maybe String -> String
, bodyTemplate : String -> String
, mailSent : String
}
@ -40,6 +41,7 @@ you can find the documents here:
Kind regards
"""
, mailSent = "Mail sent."
}
@ -57,4 +59,5 @@ die freigegebenen Dokumente befinden sich hier:
Freundliche Grüße
"""
, mailSent = "E-Mail gesendet."
}

View File

@ -38,7 +38,7 @@ type alias Texts =
, correctFormErrors : String
, noName : String
, shareInformation : String
, sendMail : String
, sendViaMail : String
, notOwnerInfo : String
, showOwningSharesOnly : String
}
@ -63,7 +63,7 @@ gb =
, correctFormErrors = "Please correct the errors in the form."
, noName = "No Name"
, shareInformation = "Share Information"
, sendMail = "Send via E-Mail"
, sendViaMail = "Send via E-Mail"
, notOwnerInfo = "Only the user who created this share can edit its properties."
, showOwningSharesOnly = "Show my shares only"
}
@ -88,7 +88,7 @@ de =
, correctFormErrors = "Bitte korrigiere die Fehler im Formular."
, noName = "Ohne Name"
, shareInformation = "Informationen zur Freigabe"
, sendMail = "Per E-Mail versenden"
, sendViaMail = "Per E-Mail versenden"
, notOwnerInfo = "Nur der Benutzer, der diese Freigabe erstellt hat, kann diese auch ändern."
, showOwningSharesOnly = "Nur meine Freigaben anzeigen"
}