1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

[EC-1022] add hint to group name input about max chars (#4553)

This commit is contained in:
Jake Fink 2023-01-30 11:08:54 -05:00 committed by GitHub
parent 62986be1a2
commit 64e0d45caf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -21,6 +21,7 @@
<bit-form-field>
<bit-label>{{ "name" | i18n }}</bit-label>
<input bitInput type="text" formControlName="name" />
<bit-hint>{{ "characterMaximum" | i18n: 100 }}</bit-hint>
</bit-form-field>
<bit-form-field>
<bit-label>{{ "externalId" | i18n }}</bit-label>

View File

@ -5293,6 +5293,15 @@
"required": {
"message": "required"
},
"characterMaximum": {
"message": "$MAX$ character maximum",
"placeholders": {
"max": {
"content": "$1",
"example": "100"
}
}
},
"idpSingleSignOnServiceUrlRequired": {
"message": "Required if Entity ID is not a URL."
},