mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-20 13:27:35 +00:00
fix: user init mail (for wrong email) (#891)
* add resendInitialMail * disable email notifications (when not initialised) * fix resend init mail * add tests * cleanup * cleanup * fix tests * add resend trigger, dialog * refactor contact component, add sendinitmail fnc * skip email if empty * reload user on phone email changes, i18n warndialog on dl * lint * rebuild mgmt proto * remove initial focus * Update console/src/assets/i18n/de.json Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
This commit is contained in:
@@ -77,7 +77,9 @@
|
||||
"LOGIN":"Einloggen",
|
||||
"EDIT":"Bearbeiten",
|
||||
"PIN":"Anpinnen",
|
||||
"CONFIGURE":"Konfigurieren"
|
||||
"CONFIGURE":"Konfigurieren",
|
||||
"SEND":"Senden",
|
||||
"NEWVALUE":"Neuer Wert"
|
||||
},
|
||||
"ERRORS": {
|
||||
"REQUIRED": "Bitte fülle alle benötigten Felder aus.",
|
||||
@@ -112,6 +114,11 @@
|
||||
"DELETE_TITLE":"User löschen",
|
||||
"DELETE_DESCRIPTION":"Sie sind im Begriff einen Benutzer endgültig zu löschen. Wollen Sie dies wirklich tun?"
|
||||
},
|
||||
"SENDEMAILDIALOG":{
|
||||
"TITLE":"Email Benachrichtigung senden",
|
||||
"DESCRIPTION":"Klicken Sie den untenstehenden Button um ein verifizierungs Email an die aktuelle Adresse zu versenden oder ändern Sie die Emailadresse in dem Feld.",
|
||||
"NEWEMAIL":"Neue Email"
|
||||
},
|
||||
"TABLE":{
|
||||
"DEACTIVATE":"Deaktivieren",
|
||||
"ACTIVATE":"Aktivieren",
|
||||
@@ -241,6 +248,10 @@
|
||||
},
|
||||
"EMAIL": "E-Mail",
|
||||
"PHONE": "Telefonnummer",
|
||||
"PHONEEMPTY":"Keine Telefonnummer hinterlegt",
|
||||
"PHONEVERIFIED":"Telefonnummer bestätigt.",
|
||||
"EMAILVERIFIED":"Email verifiziert",
|
||||
"NOTVERIFIED":"nicht verifiziert",
|
||||
"PREFERRED_LOGINNAME":"Bevorzugter Loginname",
|
||||
"LOGINMETHODS": {
|
||||
"TITLE": "Kontaktinformationen",
|
||||
@@ -248,12 +259,18 @@
|
||||
"EMAIL": {
|
||||
"TITLE": "E-Mail",
|
||||
"VALID": "Validiert",
|
||||
"RESEND": "Verifikationsmail erneut senden"
|
||||
"RESEND": "Verifikationsmail erneut senden",
|
||||
"EDITTITLE":"Email ändern",
|
||||
"EDITDESC":"Geben Sie die neue Email in dem darunterliegenden Feld ein!"
|
||||
},
|
||||
"PHONE": {
|
||||
"TITLE": "Telefon",
|
||||
"VALID": "Validiert",
|
||||
"RESEND": "Verifikationsnachricht erneut senden"
|
||||
"RESEND": "Verifikationsnachricht erneut senden",
|
||||
"EDITTITLE":"Nummer ändern",
|
||||
"EDITDESC":"Geben Sie die neue Nummer in dem darunterliegenden Feld ein!",
|
||||
"DELETETITLE":"Telefonnummer löschen",
|
||||
"DELETEDESC":"Wollen Sie die Telefonnummer wirklich löschen?"
|
||||
},
|
||||
"RESENDCODE": "Code erneut senden",
|
||||
"ENTERCODE":"Verifizieren",
|
||||
@@ -294,10 +311,13 @@
|
||||
"SIGNEDOUT_BTN":"Anmelden",
|
||||
"EDITACCOUNT":"Konto bearbeiten",
|
||||
"ADDACCOUNT":"Konto hinzufügen",
|
||||
"RESENDINITIALEMAIL":"Neue Initialisierungsmail senden",
|
||||
"RESENDEMAILNOTIFICATION":"Benachrichtigungsmail senden",
|
||||
"TOAST": {
|
||||
"CREATED":"Benutzer erfolgreich erstellt.",
|
||||
"SAVED":"Profil gespeichert.",
|
||||
"EMAILSAVED":"E-Mail gespeichert.",
|
||||
"INITEMAILSENT":"Initialisierung Email gesendet.",
|
||||
"PHONESAVED":"Telefonnummer gespeichert.",
|
||||
"PHONEREMOVED":"Telefonnummer gelöscht.",
|
||||
"PHONEVERIFIED":"Telefonnummer bestätigt.",
|
||||
|
@@ -77,7 +77,9 @@
|
||||
"LOGIN":"Login",
|
||||
"EDIT":"Edit",
|
||||
"PIN":"Pin / Unpin",
|
||||
"CONFIGURE":"Configure"
|
||||
"CONFIGURE":"Configure",
|
||||
"SEND":"Send",
|
||||
"NEWVALUE":"New Value"
|
||||
},
|
||||
"ERRORS": {
|
||||
"REQUIRED": "Some required fields are missing.",
|
||||
@@ -112,6 +114,11 @@
|
||||
"DELETE_TITLE":"Delete User",
|
||||
"DELETE_DESCRIPTION":"You are about to permanently delete a user. Are you sure?"
|
||||
},
|
||||
"SENDEMAILDIALOG":{
|
||||
"TITLE":"Send Email Notification",
|
||||
"DESCRIPTION":"Click the button below to send a notification to the current email address or change the email address in the field.",
|
||||
"NEWEMAIL":"New email address"
|
||||
},
|
||||
"TABLE":{
|
||||
"DEACTIVATE":"Deactivate",
|
||||
"ACTIVATE":"Activate",
|
||||
@@ -240,7 +247,11 @@
|
||||
"NOTEQUAL":"The passwords provided do not match."
|
||||
},
|
||||
"EMAIL": "E-mail",
|
||||
"PHONE": "Phone Number",
|
||||
"PHONE": "Phonenumber",
|
||||
"PHONEEMPTY":"No phonenumber defined",
|
||||
"PHONEVERIFIED":"Phonenumber verified.",
|
||||
"EMAILVERIFIED":"Email verified",
|
||||
"NOTVERIFIED":"not verified",
|
||||
"PREFERRED_LOGINNAME":"Preferred Loginname",
|
||||
"LOGINMETHODS": {
|
||||
"TITLE": "Contact Information",
|
||||
@@ -248,12 +259,18 @@
|
||||
"EMAIL": {
|
||||
"TITLE": "E-mail",
|
||||
"VALID": "validated",
|
||||
"RESEND": "Resend Verification E-mail"
|
||||
"RESEND": "Resend Verification E-mail",
|
||||
"EDITTITLE":"Change Email",
|
||||
"EDITDESC":"Enter the new email in the field below."
|
||||
},
|
||||
"PHONE": {
|
||||
"TITLE": "Phone",
|
||||
"VALID": "validated",
|
||||
"RESEND": "Resend Verification Text Message"
|
||||
"RESEND": "Resend Verification Text Message",
|
||||
"EDITTITLE":"Change number",
|
||||
"EDITDESC":"Enter the new phonenumber in the field below.",
|
||||
"DELETETITLE":"Delete Phonenumber",
|
||||
"DELETEDESC":"Do you really want to delete the phonenumber"
|
||||
},
|
||||
"RESENDCODE": "Resend Code",
|
||||
"ENTERCODE":"Verify",
|
||||
@@ -294,10 +311,13 @@
|
||||
"SIGNEDOUT_BTN":"Sign In",
|
||||
"EDITACCOUNT":"Edit Account",
|
||||
"ADDACCOUNT":"Log in With Another Account",
|
||||
"RESENDINITIALEMAIL":"Send new initialisation mail",
|
||||
"RESENDEMAILNOTIFICATION":"Resend Email notification",
|
||||
"TOAST": {
|
||||
"CREATED":"User created successfully.",
|
||||
"SAVED":"Profile saved successfully.",
|
||||
"EMAILSAVED":"E-mail saved successfully.",
|
||||
"INITEMAILSENT":"Initializing mail sent.",
|
||||
"PHONESAVED":"Phone saved successfully.",
|
||||
"PHONEREMOVED":"Phone has been removed.",
|
||||
"PHONEVERIFIED":"Phone verified successfully.",
|
||||
|
Reference in New Issue
Block a user