1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-14 06:48:18 +02:00

fix fido2 component copy translations (#11460)

This commit is contained in:
Jonathan Prusik 2024-10-08 14:51:41 -04:00 committed by GitHub
parent 18522e5165
commit 0c2d2ada34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -3662,6 +3662,9 @@
"noMatchingLoginsForSite": { "noMatchingLoginsForSite": {
"message": "No matching logins for this site" "message": "No matching logins for this site"
}, },
"searchSavePasskeyNewLogin": {
"message": "Search or save passkey as new login"
},
"confirm": { "confirm": {
"message": "Confirm" "message": "Confirm"
}, },

View File

@ -50,7 +50,7 @@
<ng-container *ngIf="!displayedCiphers.length"> <ng-container *ngIf="!displayedCiphers.length">
<bit-no-items class="tw-text-main" [icon]="noResultsIcon"> <bit-no-items class="tw-text-main" [icon]="noResultsIcon">
<ng-container slot="title">{{ "noMatchingLoginsForSite" | i18n }}</ng-container> <ng-container slot="title">{{ "noMatchingLoginsForSite" | i18n }}</ng-container>
<ng-container slot="description">Search or save passkey as new login</ng-container> <ng-container slot="description">{{ "searchSavePasskeyNewLogin" | i18n }}</ng-container>
<button <button
bitButton bitButton
buttonType="primary" buttonType="primary"
@ -100,8 +100,8 @@
<!-- Display when no matching ciphers exist --> <!-- Display when no matching ciphers exist -->
<ng-container *ngIf="!displayedCiphers.length"> <ng-container *ngIf="!displayedCiphers.length">
<bit-no-items class="tw-text-main" [icon]="noResultsIcon"> <bit-no-items class="tw-text-main" [icon]="noResultsIcon">
<ng-container slot="title">No matching logins for this site</ng-container> <ng-container slot="title">{{ "noItemsMatchSearch" | i18n }}</ng-container>
<ng-container slot="description">Search or save passkey as new login</ng-container> <ng-container slot="description">{{ "clearFiltersOrTryAnother" | i18n }}</ng-container>
<button <button
bitButton bitButton
buttonType="primary" buttonType="primary"