mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-11 13:30:39 +01:00
Update apps/browser/src/_locales/en/messages.json
Co-authored-by: Danielle Flinn <43477473+danielleflinn@users.noreply.github.com>
This commit is contained in:
parent
1cea108717
commit
64693f5db8
@ -1957,7 +1957,7 @@
|
||||
"message": "Account not found in desktop app"
|
||||
},
|
||||
"biometricsNoUserDesc": {
|
||||
"message": "The user you are trying to unlock in the browser extension is not signed in to the desktop application. Please sign in to the desktop application and try again."
|
||||
"message": "The account you are unlocking is not signed in on the desktop app. Please sign in to the desktop app and try again."
|
||||
},
|
||||
"biometricsNoClientKeyHalfTitle": {
|
||||
"message": "Password or PIN required"
|
||||
|
@ -358,14 +358,6 @@ export class NativeMessagingBackground {
|
||||
break;
|
||||
} else if (message.response === "canceled") {
|
||||
break;
|
||||
} else {
|
||||
this.messagingService.send("showDialog", {
|
||||
title: { key: "biometricsBrokenIPCMessage" },
|
||||
content: { key: "biometricsBrokenIPCMessageDesc" },
|
||||
acceptButtonText: { key: "ok" },
|
||||
cancelButtonText: null,
|
||||
type: "danger",
|
||||
});
|
||||
}
|
||||
|
||||
// Check for initial setup of biometric unlock
|
||||
@ -432,6 +424,13 @@ export class NativeMessagingBackground {
|
||||
}
|
||||
default:
|
||||
this.logService.error("NativeMessage, got unknown command: " + message.command);
|
||||
this.messagingService.send("showDialog", {
|
||||
title: { key: "biometricsBrokenIPCMessage" },
|
||||
content: { key: "biometricsBrokenIPCMessageDesc" },
|
||||
acceptButtonText: { key: "ok" },
|
||||
cancelButtonText: null,
|
||||
type: "danger",
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user