mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-14 04:37:35 +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": "Форматирование неверно.",
|
||||
"NOTANEMAIL": "Данное значение не является адресом электронной почты.",
|
||||
"MINLENGTH": "Должно быть не менее {{requiredLength}} символов.",
|
||||
"MAXLENGTH": "Должно быть меньше {{requiredLength}} символов.",
|
||||
"UPPERCASEMISSING": "Должен содержать символ верхнего регистра.",
|
||||
"LOWERCASEMISSING": "Должен включать строчные буквы.",
|
||||
"SYMBOLERROR": "Должен содержать символ или знак препинания.",
|
||||
@@ -887,7 +888,8 @@
|
||||
"RESENDNOTIFICATION": "Отправить ссылку для сброса пароля",
|
||||
"REQUIRED": "Отсутствуют некоторые обязательные поля.",
|
||||
"MINLENGTHERROR": "Должно быть не менее {{value}} символов.",
|
||||
"NOTEQUAL": "Указанные пароли не совпадают."
|
||||
"NOTEQUAL": "Указанные пароли не совпадают.",
|
||||
"MAXLENGTHERROR": "Должно быть меньше {{value}} символов"
|
||||
},
|
||||
"ID": "Идентификатор",
|
||||
"EMAIL": "Электронная почта",
|
||||
|
Reference in New Issue
Block a user