mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-31 17:57:43 +01:00
Explain how to verify email for Sends
This commit is contained in:
parent
c590a94511
commit
a591c4d457
@ -1718,5 +1718,11 @@
|
|||||||
},
|
},
|
||||||
"passwordConfirmationDesc": {
|
"passwordConfirmationDesc": {
|
||||||
"message": "This action is protected. To continue, please re-enter your master password to verify your identity."
|
"message": "This action is protected. To continue, please re-enter your master password to verify your identity."
|
||||||
|
},
|
||||||
|
"emailVerificationRequired": {
|
||||||
|
"message": "Email Verification Required"
|
||||||
|
},
|
||||||
|
"emailVerificationRequiredDesc": {
|
||||||
|
"message": "You must verify your email to use this feature. You can verify your email in the web vault."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,6 +192,15 @@ export default class RuntimeBackground {
|
|||||||
case 'reloadPopup':
|
case 'reloadPopup':
|
||||||
this.messagingService.send('reloadPopup');
|
this.messagingService.send('reloadPopup');
|
||||||
break;
|
break;
|
||||||
|
case 'emailVerificationRequired':
|
||||||
|
this.messagingService.send('showDialog', {
|
||||||
|
dialogId: 'emailVerificationRequired',
|
||||||
|
title: this.i18nService.t('emailVerificationRequired'),
|
||||||
|
text: this.i18nService.t('emailVerificationRequiredDesc'),
|
||||||
|
confirmText: this.i18nService.t('ok'),
|
||||||
|
type: 'info',
|
||||||
|
});
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user