1
0
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:
Bernd Schoolmann 2024-07-08 19:46:55 +02:00
parent 1cea108717
commit 64693f5db8
No known key found for this signature in database
2 changed files with 8 additions and 9 deletions

View File

@ -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"

View File

@ -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;
}