1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

Count and display invalid fields in toast. (#10249)

This commit is contained in:
Alec Rippberger
2024-07-29 15:33:29 -05:00
committed by GitHub
parent 3b668deaac
commit 6b8f60792e
2 changed files with 39 additions and 1 deletions

View File

@@ -2949,6 +2949,18 @@
}
}
},
"singleFieldNeedsAttention": {
"message": "1 field needs your attention."
},
"multipleFieldsNeedAttention": {
"message": "$COUNT$ fields need your attention.",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"selectPlaceholder": {
"message": "-- Select --"
},