mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
[PM-2570] [PM-4649] Update change master password UI (#8416)
* Update the change master password dialog on browser Change text to remove the mention of the bitwarden.com web vault Change icon to show it's external link Changes based on Figma attached to PM-2570 * Update the change master password dialog on desktop Change text to remove the mention of the bitwarden.com web vault Changes based on Figma attached to PM-2570 and to replicate what is done on browser --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
06acdefa91
commit
cbb7e1840d
@@ -800,8 +800,11 @@
|
||||
"changeMasterPass": {
|
||||
"message": "Change master password"
|
||||
},
|
||||
"changeMasterPasswordConfirmation": {
|
||||
"message": "You can change your master password on the bitwarden.com web vault. Do you want to visit the website now?"
|
||||
"continueToWebApp": {
|
||||
"message": "Continue to web app?"
|
||||
},
|
||||
"changeMasterPasswordOnWebConfirmation": {
|
||||
"message": "You can change your master password on the Bitwarden web app."
|
||||
},
|
||||
"fingerprintPhrase": {
|
||||
"message": "Fingerprint phrase",
|
||||
|
||||
@@ -65,10 +65,10 @@ export class AccountMenu implements IMenubarMenu {
|
||||
id: "changeMasterPass",
|
||||
click: async () => {
|
||||
const result = await dialog.showMessageBox(this._window, {
|
||||
title: this.localize("changeMasterPass"),
|
||||
message: this.localize("changeMasterPass"),
|
||||
detail: this.localize("changeMasterPasswordConfirmation"),
|
||||
buttons: [this.localize("yes"), this.localize("no")],
|
||||
title: this.localize("continueToWebApp"),
|
||||
message: this.localize("continueToWebApp"),
|
||||
detail: this.localize("changeMasterPasswordOnWebConfirmation"),
|
||||
buttons: [this.localize("continue"), this.localize("cancel")],
|
||||
cancelId: 1,
|
||||
defaultId: 0,
|
||||
noLink: true,
|
||||
|
||||
Reference in New Issue
Block a user