mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-25 05:37:42 +00:00
feat: show max password length in complexity components (#7810)
# Which Problems Are Solved There is confusing ambiguity in the error messages for setting too long passwords in different places. # How the Problems Are Solved A check for maximum password length is added so it's clear that passwords can't exceed a maximum length of 70 or 72 bytes. Password validation now provides a live updating check mark or cross mark to indicate if the maximum length requirement is met. # Additional Changes Clarified requirement descriptions on the registration page with complete sentences. # Additional Context Closes #6301 --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
This commit is contained in:
@@ -594,6 +594,7 @@
|
||||
"INVALID_FORMAT": "Le format n'est pas valide.",
|
||||
"NOTANEMAIL": "La valeur donnée n'est pas une adresse e-mail.",
|
||||
"MINLENGTH": "Doit comporter au moins {{length}} caractères.",
|
||||
"MAXLENGTH": "Doit contenir moins de {{requiredLength}} caractères.",
|
||||
"UPPERCASEMISSING": "Doit inclure un caractère majuscule.",
|
||||
"LOWERCASEMISSING": "Doit inclure un caractère minuscule.",
|
||||
"SYMBOLERROR": "Doit inclure un symbole ou un signe de ponctuation.",
|
||||
@@ -879,7 +880,8 @@
|
||||
"SET": "Définir un nouveau mot de passe",
|
||||
"RESENDNOTIFICATION": "Envoyer le lien de réinitialisation du mot de passe",
|
||||
"REQUIRED": "Certains champs obligatoires sont manquants.",
|
||||
"MINLENGTHERROR": "Doit comporter au moins {{value}} caractères."
|
||||
"MINLENGTHERROR": "Doit comporter au moins {{value}} caractères.",
|
||||
"MAXLENGTHERROR": "Doit contenir moins de {{value}} caractères"
|
||||
},
|
||||
"ID": "ID",
|
||||
"EMAIL": "E-mail",
|
||||
|
Reference in New Issue
Block a user