mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix: Never Sent Email Text
This commit is contained in:
parent
528d1f64f0
commit
6edd95b6b7
@ -3,7 +3,11 @@
|
|||||||
<div class="shadow p-3 mb-5 bg-white rounded">
|
<div class="shadow p-3 mb-5 bg-white rounded">
|
||||||
<div v-if="checked">{{ $t('unregister_mail.text_true') }}</div>
|
<div v-if="checked">{{ $t('unregister_mail.text_true') }}</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{ $t('unregister_mail.text_false', { date: dateLastSend, mail: email }) }}
|
{{
|
||||||
|
dateLastSend === ''
|
||||||
|
? $t('unregister_mail.never_sent', { email })
|
||||||
|
: $t('unregister_mail.text_false', { date: dateLastSend, mail: email })
|
||||||
|
}}
|
||||||
|
|
||||||
<!-- Using components -->
|
<!-- Using components -->
|
||||||
<b-input-group :prepend="$t('unregister_mail.info')" class="mt-3">
|
<b-input-group :prepend="$t('unregister_mail.info')" class="mt-3">
|
||||||
|
|||||||
@ -75,6 +75,7 @@
|
|||||||
"button": "Registrierungs-Email bestätigen, jetzt senden",
|
"button": "Registrierungs-Email bestätigen, jetzt senden",
|
||||||
"error": "Fehler beim Senden des Bestätigungs-Links an den Benutzer: {message}",
|
"error": "Fehler beim Senden des Bestätigungs-Links an den Benutzer: {message}",
|
||||||
"info": "Email bestätigen, wiederholt senden an:",
|
"info": "Email bestätigen, wiederholt senden an:",
|
||||||
|
"never_sent": "Es scheint so, als ob wir nie eine E-Mail an {email} geschickt haben",
|
||||||
"success": "Erfolgreiches Senden des Bestätigungs-Links an die E-Mail des Nutzers! ({email})",
|
"success": "Erfolgreiches Senden des Bestätigungs-Links an die E-Mail des Nutzers! ({email})",
|
||||||
"text_false": " Die letzte Email wurde am {date} Uhr an das Mitglied ({mail}) gesendet.",
|
"text_false": " Die letzte Email wurde am {date} Uhr an das Mitglied ({mail}) gesendet.",
|
||||||
"text_true": " Die Email wurde bestätigt."
|
"text_true": " Die Email wurde bestätigt."
|
||||||
|
|||||||
@ -75,6 +75,7 @@
|
|||||||
"button": "Confirm registration email, send now",
|
"button": "Confirm registration email, send now",
|
||||||
"error": "Error sending the confirmation link to the user: {message}",
|
"error": "Error sending the confirmation link to the user: {message}",
|
||||||
"info": "Confirm email, send repeatedly to:",
|
"info": "Confirm email, send repeatedly to:",
|
||||||
|
"never_sent": "It seems we did never send an email to the member {email}",
|
||||||
"success": "Successfully send the confirmation link to the user's email! ({email})",
|
"success": "Successfully send the confirmation link to the user's email! ({email})",
|
||||||
"text_false": "The last email was sent to the member ({mail}) on {date}.",
|
"text_false": "The last email was sent to the member ({mail}) on {date}.",
|
||||||
"text_true": "The email was confirmed."
|
"text_true": "The email was confirmed."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user