mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-13 14:30:00 +00:00
fix(console): toast login handler, show user session loginname, policy value incrementation, accessibility (#413)
* get auth policy, fix increment from 0 * seo, accessibility * ngsw rem check for update * organize interceptors * toast i18n part1 * show loginname * use primary color * toast login handler, fix user session type * Update console/src/assets/i18n/de.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/de.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/de.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/en.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/index.html Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/en.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/en.json Co-authored-by: Florian Forster <florian@caos.ch> Co-authored-by: Florian Forster <florian@caos.ch>
This commit is contained in:
@@ -191,7 +191,23 @@
|
||||
"SIGNEDOUT":"Du bist abgemeldet. Klicke auf den Button um dich erneut anzumelden!",
|
||||
"SIGNEDOUT_BTN":"Anmelden",
|
||||
"EDITACCOUNT":"Account bearbeiten",
|
||||
"ADDACCOUNT":"Account hinzufügen"
|
||||
"ADDACCOUNT":"Account hinzufügen",
|
||||
"TOAST": {
|
||||
"CREATED":"User erfolgreich erstellt",
|
||||
"SAVED":"Profile gespeichert!",
|
||||
"EMAILSAVED":"Email gespeichert!",
|
||||
"PHONESAVED":"Telefonnummer gespeichert!",
|
||||
"PHONEREMOVED":"Telefonnummer gelöscht!",
|
||||
"PHONEVERIFIED":"Telefonnummer bestätigt!",
|
||||
"PHONEVERIFICATIONSENT":"Tel. Bestätigungscode gesendet!",
|
||||
"EMAILVERIFICATIONSENT":"Email Bestätigungscode gesendet!",
|
||||
"OTPREMOVED":"OTP entfernt!",
|
||||
"INITIALPASSWORDSET":"Initiales Passwort gesetzt!",
|
||||
"PASSWORDNOTIFICATIONSENT":"Passwortänderung mittgeteilt!",
|
||||
"PASSWORDCHANGED":"Passwort geändert!",
|
||||
"REACTIVATED":"User reaktiviert!",
|
||||
"DEACTIVATED":"User deaktiviert!"
|
||||
}
|
||||
},
|
||||
"IAM": {
|
||||
"DETAIL": {
|
||||
@@ -437,6 +453,13 @@
|
||||
"CREATIONDATE":"Erstelldatum",
|
||||
"CHANGEDATE":"Letzte Änderung",
|
||||
"RESOURCEOWNER":"Besitzer"
|
||||
},
|
||||
"TOAST":{
|
||||
"MEMBERREMOVED":"Manager entfernt!",
|
||||
"MEMBERSADDED": "Manager hinzugefügt!",
|
||||
"MEMBERADDED": "Manager hinzugefügt!",
|
||||
"ROLEREMOVED":"Rolle entfernt!",
|
||||
"ROLECHANGED":"Rolle verändert!"
|
||||
}
|
||||
},
|
||||
"APP": {
|
||||
@@ -480,6 +503,12 @@
|
||||
"AUTHMETHOD0":"Basic",
|
||||
"AUTHMETHOD1":"Post",
|
||||
"AUTHMETHOD2":"None"
|
||||
},
|
||||
"TOAST": {
|
||||
"REACTIVATED":"App reaktiviert!",
|
||||
"DEACTIVATED":"App deaktiviert!",
|
||||
"OIDCUPDATED":"OIDC Konfiguration geändert!",
|
||||
"OIDCCLIENTSECRETREGENERATED":"OIDC Client Secret generiert!"
|
||||
}
|
||||
},
|
||||
"GENDERS": {
|
||||
@@ -555,6 +584,10 @@
|
||||
"DETAIL": {
|
||||
"TITLE":"Authorisierung Detail",
|
||||
"DESCRIPTION":""
|
||||
},
|
||||
"TOAST": {
|
||||
"UPDATED":"Berechtigung geändert!",
|
||||
"BULKREMOVED":"Berechtigungen entfernt!"
|
||||
}
|
||||
},
|
||||
"CHANGES": {
|
||||
|
@@ -191,7 +191,23 @@
|
||||
"SIGNEDOUT":"You are signed out. Click the button below to sign in again!",
|
||||
"SIGNEDOUT_BTN":"Sign In",
|
||||
"EDITACCOUNT":"Edit Account",
|
||||
"ADDACCOUNT":"log in with another account"
|
||||
"ADDACCOUNT":"Log in with another account",
|
||||
"TOAST": {
|
||||
"CREATED":"User created successful!",
|
||||
"SAVED":"Profile saved successful!",
|
||||
"EMAILSAVED":"Email saved successful!",
|
||||
"PHONESAVED":"Phone saved successful!",
|
||||
"PHONEREMOVED":"Phone has been removed!",
|
||||
"PHONEVERIFIED":"Phone verified successful!",
|
||||
"PHONEVERIFICATIONSENT":"Phone verification code sent!",
|
||||
"EMAILVERIFICATIONSENT":"Email verification code sent!",
|
||||
"OTPREMOVED":"OTP removed!",
|
||||
"INITIALPASSWORDSET":"Initial password set!",
|
||||
"PASSWORDNOTIFICATIONSENT":"Password Change Notification sent",
|
||||
"PASSWORDCHANGED":"Password changed successful!",
|
||||
"REACTIVATED":"User reactivated",
|
||||
"DEACTIVATED":"User deactivated"
|
||||
}
|
||||
},
|
||||
"IAM": {
|
||||
"DETAIL": {
|
||||
@@ -437,6 +453,13 @@
|
||||
"CREATIONDATE":"Created At",
|
||||
"CHANGEDATE":"Last Modified",
|
||||
"RESOURCEOWNER":"Owner"
|
||||
},
|
||||
"TOAST":{
|
||||
"MEMBERREMOVED":"Manager removed!",
|
||||
"MEMBERSADDED": "Managers added!",
|
||||
"MEMBERADDED": "Manager added!",
|
||||
"ROLEREMOVED":"Role removed!",
|
||||
"ROLECHANGED":"Role changed!"
|
||||
}
|
||||
},
|
||||
"APP": {
|
||||
@@ -480,6 +503,12 @@
|
||||
"AUTHMETHOD0":"Basic",
|
||||
"AUTHMETHOD1":"Post",
|
||||
"AUTHMETHOD2":"None"
|
||||
},
|
||||
"TOAST": {
|
||||
"REACTIVATED":"App reactivated!",
|
||||
"DEACTIVATED":"App deactivated!",
|
||||
"OIDCUPDATED":"OIDC Config updated!",
|
||||
"OIDCCLIENTSECRETREGENERATED":"OIDC Client Secret generated!"
|
||||
}
|
||||
},
|
||||
"GENDERS": {
|
||||
@@ -555,6 +584,10 @@
|
||||
"DETAIL": {
|
||||
"TITLE":"Authorization Detail",
|
||||
"DESCRIPTION":""
|
||||
},
|
||||
"TOAST": {
|
||||
"UPDATED":"Grant updated!",
|
||||
"BULKREMOVED":"Grants removed!"
|
||||
}
|
||||
},
|
||||
"CHANGES": {
|
||||
|
Reference in New Issue
Block a user