diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index d7cca18960a..91cd174a6b6 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -162,3 +162,7 @@ apps/web/src/locales/en/messages.json
**/*.Dockerfile
**/.dockerignore
**/entrypoint.sh
+
+## Overrides
+# tsconfig files are potentially dangerous and will be reviewed by platform to prevent misconfigurations
+**/tsconfig.json @bitwarden/team-platform-dev
diff --git a/.github/workflows/publish-cli.yml b/.github/workflows/publish-cli.yml
index ff85a30d3f6..d758e6f11c9 100644
--- a/.github/workflows/publish-cli.yml
+++ b/.github/workflows/publish-cli.yml
@@ -222,7 +222,7 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'success'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
- name: Update deployment status to Failure
if: ${{ inputs.publish_type != 'Dry Run' && failure() }}
@@ -230,4 +230,4 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'failure'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
diff --git a/.github/workflows/publish-desktop.yml b/.github/workflows/publish-desktop.yml
index af24083e973..ae631165db9 100644
--- a/.github/workflows/publish-desktop.yml
+++ b/.github/workflows/publish-desktop.yml
@@ -162,7 +162,7 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'success'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
- name: Update deployment status to Failure
if: ${{ inputs.publish_type != 'Dry Run' && failure() }}
@@ -170,7 +170,7 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'failure'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
snap:
name: Deploy Snap
@@ -283,7 +283,7 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'success'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
- name: Update deployment status to Failure
if: ${{ inputs.publish_type != 'Dry Run' && failure() }}
@@ -291,4 +291,4 @@ jobs:
with:
token: '${{ secrets.GITHUB_TOKEN }}'
state: 'failure'
- deployment_id: ${{ needs.setup.outputs.deployment_id }}
+ deployment-id: ${{ needs.setup.outputs.deployment_id }}
diff --git a/.github/workflows/release-browser.yml b/.github/workflows/release-browser.yml
index 3e54e79a303..498f8748959 100644
--- a/.github/workflows/release-browser.yml
+++ b/.github/workflows/release-browser.yml
@@ -40,7 +40,7 @@ jobs:
- name: Check Release Version
id: version
- uses: bitwarden/gh-actions/release_version-check@main
+ uses: bitwarden/gh-actions/release-version-check@main
with:
release-type: ${{ github.event.inputs.release_type }}
project-type: ts
diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml
index a1bc36cf85e..6a10bec1ba2 100644
--- a/.github/workflows/release-cli.yml
+++ b/.github/workflows/release-cli.yml
@@ -40,7 +40,7 @@ jobs:
- name: Check Release Version
id: version
- uses: bitwarden/gh-actions/release_version-check@main
+ uses: bitwarden/gh-actions/release-version-check@main
with:
release-type: ${{ inputs.release_type }}
project-type: ts
diff --git a/.github/workflows/release-desktop-beta.yml b/.github/workflows/release-desktop-beta.yml
index ea0feb10e3d..a5e374395d8 100644
--- a/.github/workflows/release-desktop-beta.yml
+++ b/.github/workflows/release-desktop-beta.yml
@@ -47,7 +47,7 @@ jobs:
- name: Check Release Version
id: version
- uses: bitwarden/gh-actions/release_version-check@main
+ uses: bitwarden/gh-actions/release-version-check@main
with:
release-type: 'Initial Release'
project-type: ts
diff --git a/.github/workflows/release-desktop.yml b/.github/workflows/release-desktop.yml
index 3285ad468d6..57143747a86 100644
--- a/.github/workflows/release-desktop.yml
+++ b/.github/workflows/release-desktop.yml
@@ -40,7 +40,7 @@ jobs:
- name: Check Release Version
id: version
- uses: bitwarden/gh-actions/release_version-check@main
+ uses: bitwarden/gh-actions/release-version-check@main
with:
release-type: ${{ inputs.release_type }}
project-type: ts
diff --git a/apps/browser/package.json b/apps/browser/package.json
index 1b31af0d150..8fc1d733921 100644
--- a/apps/browser/package.json
+++ b/apps/browser/package.json
@@ -1,24 +1,24 @@
{
"name": "@bitwarden/browser",
- "version": "2025.1.1",
+ "version": "2025.1.4",
"scripts": {
"build": "npm run build:chrome",
- "build:chrome": "cross-env BROWSER=chrome MANIFEST_VERSION=3 webpack",
- "build:edge": "cross-env BROWSER=edge MANIFEST_VERSION=3 webpack",
- "build:firefox": "cross-env BROWSER=firefox webpack",
- "build:opera": "cross-env BROWSER=opera webpack",
- "build:safari": "cross-env BROWSER=safari webpack",
+ "build:chrome": "cross-env BROWSER=chrome MANIFEST_VERSION=3 NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
+ "build:edge": "cross-env BROWSER=edge MANIFEST_VERSION=3 NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
+ "build:firefox": "cross-env BROWSER=firefox NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
+ "build:opera": "cross-env BROWSER=opera NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
+ "build:safari": "cross-env BROWSER=safari NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
"build:watch": "npm run build:watch:chrome",
"build:watch:chrome": "npm run build:chrome -- --watch",
"build:watch:edge": "npm run build:edge -- --watch",
"build:watch:firefox": "npm run build:firefox -- --watch",
"build:watch:opera": "npm run build:opera -- --watch",
"build:watch:safari": "npm run build:safari -- --watch",
- "build:prod:chrome": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npm run build:chrome",
- "build:prod:edge": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npm run build:edge",
- "build:prod:firefox": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npm run build:firefox",
- "build:prod:opera": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npm run build:opera",
- "build:prod:safari": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npm run build:safari",
+ "build:prod:chrome": "cross-env NODE_ENV=production npm run build:chrome",
+ "build:prod:edge": "cross-env NODE_ENV=production npm run build:edge",
+ "build:prod:firefox": "cross-env NODE_ENV=production npm run build:firefox",
+ "build:prod:opera": "cross-env NODE_ENV=production npm run build:opera",
+ "build:prod:safari": "cross-env NODE_ENV=production npm run build:safari",
"dist:chrome": "npm run build:prod:chrome && mkdir -p dist && ./scripts/compress.ps1 dist-chrome.zip",
"dist:edge": "npm run build:prod:edge && mkdir -p dist && ./scripts/compress.ps1 dist-edge.zip",
"dist:firefox": "npm run build:prod:firefox && mkdir -p dist && ./scripts/compress.ps1 dist-firefox.zip",
diff --git a/apps/browser/src/_locales/ar/messages.json b/apps/browser/src/_locales/ar/messages.json
index 625454de8c6..807565f3749 100644
--- a/apps/browser/src/_locales/ar/messages.json
+++ b/apps/browser/src/_locales/ar/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "قم بتأكيد هويتك"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "خزانتك مقفلة. قم بتأكيد هويتك للمتابعة."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "اطلب إضافة عنصر إذا لم يتم العثور على عنصر في المخزن الخاص بك. ينطبق على جميع حسابات تسجيل الدخول."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "أظهر البطاقات في صفحة التبويبات"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "قائمة عناصر البطاقة في صفحة التبويب لسهولة التعبئة التلقائية."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "إظهار الهويات على صفحة التبويب"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/az/messages.json b/apps/browser/src/_locales/az/messages.json
index 8e7d2201f28..153295bcd01 100644
--- a/apps/browser/src/_locales/az/messages.json
+++ b/apps/browser/src/_locales/az/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Kimliyi doğrula"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Bu cihazı tanımırıq. Kimliyinizi doğrulamaq üçün e-poçtunuza göndərilən kodu daxil edin."
+ },
+ "continueLoggingIn": {
+ "message": "Giriş etməyə davam"
+ },
"yourVaultIsLocked": {
"message": "Seyfiniz kilidlənib. Davam etmək üçün kimliyinizi doğrulayın."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Seyfinizdə tapılmayan elementin əlavə edilməsi soruşulsun. Giriş etmiş bütün hesablara aiddir."
},
- "showCardsInVaultView": {
- "message": "Kartları, Seyf görünüşündə Avto-doldurma təklifləri olaraq göstər"
+ "showCardsInVaultViewV2": {
+ "message": "Kartları, Seyf görünüşündə Avto-doldurma təklifləri olaraq həmişə göstər"
},
"showCardsCurrentTab": {
"message": "Kartları Vərəq səhifəsində göstər"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Asan avto-doldurma üçün Vərəq səhifəsində kart elementlərini sadalayın."
},
- "showIdentitiesInVaultView": {
- "message": "Kimlikləri, Seyf görünüşündə Avto-doldurma təklifləri olaraq göstər"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Kimlikləri, Seyf görünüşündə Avto-doldurma təklifləri olaraq həmişə göstər"
},
"showIdentitiesCurrentTab": {
"message": "Vərəq səhifəsində kimlikləri göstər"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra enli"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Lütfən masaüstü tətbiqinizi güncəlləyin"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Biometrik kilid açmanı istifadə etmək üçün lütfən masaüstü tətbiqinizi güncəlləyin, ya da masaüstü ayarlarında barmaq izi ilə kilid açmanı sıradan çıxardın."
}
}
diff --git a/apps/browser/src/_locales/be/messages.json b/apps/browser/src/_locales/be/messages.json
index 57496e83f41..5d898ff5674 100644
--- a/apps/browser/src/_locales/be/messages.json
+++ b/apps/browser/src/_locales/be/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Праверыць асобу"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Ваша сховішча заблакіравана. Каб працягнуць, пацвердзіце сваю асобу."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Паказваць карткі на старонцы з укладкамі"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Спіс элементаў картак на старонцы з укладкамі для лёгкага аўтазапаўнення."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Паказваць пасведчанні на старонцы з укладкамі"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/bg/messages.json b/apps/browser/src/_locales/bg/messages.json
index 6e9f992f5ba..da5ba937925 100644
--- a/apps/browser/src/_locales/bg/messages.json
+++ b/apps/browser/src/_locales/bg/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Потвърждаване на самоличността"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Това устройство е непознато. Въведете кода изпратен на е-пощата Ви, за да потвърдите самоличността си."
+ },
+ "continueLoggingIn": {
+ "message": "Продължаване с вписването"
+ },
"yourVaultIsLocked": {
"message": "Трезорът е заключен — въведете главната си парола, за да продължите."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Питане за добавяне на елемент, ако такъв не бъде намерен в трезора. Прилага се за всички регистрации, в които сте вписан(а)."
},
- "showCardsInVaultView": {
- "message": "Показване на картите като предложения за авт. попълване в изгледа на трезора"
+ "showCardsInVaultViewV2": {
+ "message": "Картите да се показват винаги като предложения за авт. попълване в изгледа на трезора"
},
"showCardsCurrentTab": {
"message": "Показване на карти в страницата с разделите"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Показване на картите в страницата с разделите, за лесно автоматично попълване."
},
- "showIdentitiesInVaultView": {
- "message": "Показване на самоличности като предложения за автоматично попълване в изгледа на трезора"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Самоличностите да се показват винаги като предложения за автоматично попълване в изгледа на трезора"
},
"showIdentitiesCurrentTab": {
"message": "Показване на самоличности в страницата с разделите"
@@ -2285,7 +2291,7 @@
"message": "Потребителят е заключен или отписан"
},
"biometricsNotUnlockedDesc": {
- "message": "Отключете потребителя в настолното приложение и опитайте отново."
+ "message": "Отключете потребителя в самостоятелното приложение и опитайте отново."
},
"biometricsNotAvailableTitle": {
"message": "Отключването чрез биометрични данни не е налично"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Много широко"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Моля, обновете самостоятелното приложение"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "За да използвате отключването чрез биометрични данни, обновете самостоятелното приложение или изключете отключването чрез пръстов отпечатък в настройките му."
}
}
diff --git a/apps/browser/src/_locales/bn/messages.json b/apps/browser/src/_locales/bn/messages.json
index 219071238e9..2e992713c14 100644
--- a/apps/browser/src/_locales/bn/messages.json
+++ b/apps/browser/src/_locales/bn/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "আপনার ভল্ট লক করা আছে। চালিয়ে যেতে আপনার মূল পাসওয়ার্ডটি যাচাই করান।"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/bs/messages.json b/apps/browser/src/_locales/bs/messages.json
index 81c162e91be..be803b0a077 100644
--- a/apps/browser/src/_locales/bs/messages.json
+++ b/apps/browser/src/_locales/bs/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/ca/messages.json b/apps/browser/src/_locales/ca/messages.json
index 89ab22c1794..b2252e31e5b 100644
--- a/apps/browser/src/_locales/ca/messages.json
+++ b/apps/browser/src/_locales/ca/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verifica identitat"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "La caixa forta està bloquejada. Comproveu la contrasenya mestra per continuar."
},
@@ -978,7 +984,7 @@
"message": "Demana d'afegir els inicis de sessió"
},
"vaultSaveOptionsTitle": {
- "message": "Save to vault options"
+ "message": "Opcions de guardar a la caixa forta"
},
"addLoginNotificationDesc": {
"message": "La \"Notificació per afegir inicis de sessió\" demana automàticament que guardeu els nous inicis de sessió a la vostra caixa forta quan inicieu la sessió per primera vegada."
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Demana afegir un element si no se'n troba cap a la caixa forta. S'aplica a tots els comptes connectats."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Mostra sempre les targetes com a suggeriments d'emplenament automàtic a la vista de la caixa forta"
},
"showCardsCurrentTab": {
"message": "Mostra les targetes a la pàgina de pestanya"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Llista els elements de la targeta a la pàgina de pestanya per facilitar l'autoemplenat."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Mostra sempre les identitats com a suggeriments d'emplenament automàtic a la vista de la caixa forta"
},
"showIdentitiesCurrentTab": {
"message": "Mostra les identitats a la pàgina de pestanya"
@@ -1005,7 +1011,7 @@
"message": "Llista els elements d'identitat de la pestanya de la pàgina per facilitar l'autoemplenat."
},
"clickToAutofillOnVault": {
- "message": "Click items to autofill on Vault view"
+ "message": "Feu clic als elements per emplenar automàticament a la vista de la caixa forta"
},
"clearClipboard": {
"message": "Buida el porta-retalls",
@@ -1122,11 +1128,11 @@
"message": "\"Contrasenya del fitxer\" i \"Confirma contrasenya del fitxer\" no coincideixen."
},
"warning": {
- "message": "ADVERTIMENT",
+ "message": "AVÍS",
"description": "WARNING (should stay in capitalized letters if the language permits)"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Advertència",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"confirmVaultExport": {
@@ -1466,10 +1472,10 @@
"description": "Represents the message for allowing the user to enable the autofill overlay"
},
"autofillSuggestionsSectionTitle": {
- "message": "Autofill suggestions"
+ "message": "Suggeriments d'emplenament automàtic"
},
"showInlineMenuLabel": {
- "message": "Show autofill suggestions on form fields"
+ "message": "Mostra suggeriments d'emplenament automàtic als camps del formulari"
},
"showInlineMenuIdentitiesLabel": {
"message": "Display identities as suggestions"
@@ -1478,7 +1484,7 @@
"message": "Display cards as suggestions"
},
"showInlineMenuOnIconSelectionLabel": {
- "message": "Display suggestions when icon is selected"
+ "message": "Mostra suggeriments quan la icona està seleccionada"
},
"showInlineMenuOnFormFieldsDescAlt": {
"message": "Applies to all logged in accounts."
@@ -1502,7 +1508,7 @@
"description": "Overlay appearance select option for showing the field on click of the overlay icon"
},
"enableAutoFillOnPageLoadSectionTitle": {
- "message": "Autofill on page load"
+ "message": "Emplenament automàtic a la càrrega de la pàgina"
},
"enableAutoFillOnPageLoad": {
"message": "Habilita l'emplenament automàtic en carregar la pàgina"
@@ -1514,7 +1520,7 @@
"message": "Els llocs web compromesos o no fiables poden aprofitar-se de l'emplenament automàtic en carregar de la pàgina."
},
"learnMoreAboutAutofillOnPageLoadLinkText": {
- "message": "Learn more about risks"
+ "message": "Més informació sobre riscs"
},
"learnMoreAboutAutofill": {
"message": "Obteniu més informació sobre l'emplenament automàtic"
@@ -1768,7 +1774,7 @@
"message": "Identitat"
},
"typeSshKey": {
- "message": "SSH key"
+ "message": "Clau SSH"
},
"newItemHeader": {
"message": "New $TYPE$",
@@ -1801,13 +1807,13 @@
"message": "Historial de les contrasenyes"
},
"generatorHistory": {
- "message": "Generator history"
+ "message": "Historial del generador"
},
"clearGeneratorHistoryTitle": {
- "message": "Clear generator history"
+ "message": "Neteja l'historial del generador"
},
"cleargGeneratorHistoryDescription": {
- "message": "If you continue, all entries will be permanently deleted from generator's history. Are you sure you want to continue?"
+ "message": "Si continueu, totes les entrades se suprimiran permanentment de l'historial del generador. Esteu segur que voleu continuar?"
},
"back": {
"message": "Arrere"
@@ -1846,7 +1852,7 @@
"message": "Notes segures"
},
"sshKeys": {
- "message": "SSH Keys"
+ "message": "Claus SSH"
},
"clear": {
"message": "Esborra",
@@ -1872,7 +1878,7 @@
"description": "Domain name. Ex. website.com"
},
"baseDomainOptionRecommended": {
- "message": "Base domain (recommended)",
+ "message": "Domini base (recomanat)",
"description": "Domain name. Ex. website.com"
},
"domainName": {
@@ -2041,10 +2047,10 @@
"message": "Clona"
},
"passwordGenerator": {
- "message": "Password generator"
+ "message": "Generador de contrasenyes"
},
"usernameGenerator": {
- "message": "Username generator"
+ "message": "Generador de nom d'usuari"
},
"useThisPassword": {
"message": "Use this password"
@@ -2108,7 +2114,7 @@
"message": "Ompli automàticament i guarda"
},
"fillAndSave": {
- "message": "Fill and save"
+ "message": "Ompli i guarda"
},
"autoFillSuccessAndSavedUri": {
"message": "Element emplenat automàticament i URI guardat"
@@ -2825,7 +2831,7 @@
"message": "Generate email"
},
"spinboxBoundariesHint": {
- "message": "Value must be between $MIN$ and $MAX$.",
+ "message": "El valor ha d'estar entre $MIN$ i $MAX$.",
"description": "Explains spin box minimum and maximum values to the user",
"placeholders": {
"min": {
@@ -2839,7 +2845,7 @@
}
},
"passwordLengthRecommendationHint": {
- "message": " Use $RECOMMENDED$ characters or more to generate a strong password.",
+ "message": " Utilitzeu $RECOMMENDED$ caràcters o més per generar una contrasenya segura.",
"description": "Appended to `spinboxBoundariesHint` to recommend a length to the user. This must include any language-specific 'sentence' separator characters (e.g. a space in english).",
"placeholders": {
"recommended": {
@@ -2849,7 +2855,7 @@
}
},
"passphraseNumWordsRecommendationHint": {
- "message": " Utilitzeu paraules $RECOMMENDED$ o més per generar una frase de pas segura.",
+ "message": " Utilitzeu $RECOMMENDED$ paraules o més per generar una frase de pas segura.",
"description": "Appended to `spinboxBoundariesHint` to recommend a number of words to the user. This must include any language-specific 'sentence' separator characters (e.g. a space in english).",
"placeholders": {
"recommended": {
@@ -3175,13 +3181,13 @@
"message": "Configuració d'emplenament automàtic"
},
"autofillKeyboardShortcutSectionTitle": {
- "message": "Autofill shortcut"
+ "message": "Drecera d'emplenament automàtic"
},
"autofillKeyboardShortcutUpdateLabel": {
- "message": "Change shortcut"
+ "message": "Canvia la drecera"
},
"autofillKeyboardManagerShortcutsLabel": {
- "message": "Manage shortcuts"
+ "message": "Gestiona les dreceres"
},
"autofillShortcut": {
"message": "Drecera de teclat d'emplenament automàtic"
@@ -3190,7 +3196,7 @@
"message": "The autofill login shortcut is not set. Change this in the browser's settings."
},
"autofillLoginShortcutText": {
- "message": "The autofill login shortcut is $COMMAND$. Manage all shortcuts in the browser's settings.",
+ "message": "La drecera d'emplenament automàtic és $COMMAND$. Gestioneu totes les dreceres a la configuració del navegador.",
"placeholders": {
"command": {
"content": "$1",
@@ -3302,11 +3308,11 @@
"message": "Dispositiu de confiança"
},
"sendsNoItemsTitle": {
- "message": "No active Sends",
+ "message": "No hi ha Sends actius",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendsNoItemsMessage": {
- "message": "Use Send to securely share encrypted information with anyone.",
+ "message": "Utilitzeu Send per compartir informació xifrada de manera segura amb qualsevol persona.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"inputRequired": {
@@ -3976,7 +3982,7 @@
"message": "Clau de pas suprimida"
},
"autofillSuggestions": {
- "message": "Autofill suggestions"
+ "message": "Suggeriments d'emplenament automàtic"
},
"itemSuggestions": {
"message": "Suggested items"
@@ -3994,7 +4000,7 @@
"message": "Clear filters or try another search term"
},
"copyInfoTitle": {
- "message": "Copy info - $ITEMNAME$",
+ "message": "Copia info - $ITEMNAME$",
"description": "Title for a button that opens a menu with options to copy information from an item.",
"placeholders": {
"itemname": {
@@ -4014,7 +4020,7 @@
}
},
"moreOptionsLabel": {
- "message": "More options, $ITEMNAME$",
+ "message": "Més opcions, $ITEMNAME$",
"description": "Aria label for a button that opens a menu with more options for an item.",
"placeholders": {
"itemname": {
@@ -4024,7 +4030,7 @@
}
},
"moreOptionsTitle": {
- "message": "More options - $ITEMNAME$",
+ "message": "Més opcions - $ITEMNAME$",
"description": "Title for a button that opens a menu with more options for an item.",
"placeholders": {
"itemname": {
@@ -4072,13 +4078,13 @@
"message": "Consola d'administració"
},
"accountSecurity": {
- "message": "Account security"
+ "message": "Seguretat del compte"
},
"notifications": {
- "message": "Notifications"
+ "message": "Notificacions"
},
"appearance": {
- "message": "Appearance"
+ "message": "Aparença"
},
"errorAssigningTargetCollection": {
"message": "S'ha produït un error en assignar la col·lecció de destinació."
@@ -4208,7 +4214,7 @@
"message": "Filtres"
},
"filterVault": {
- "message": "Filter vault"
+ "message": "Filtra dades"
},
"filterApplied": {
"message": "One filter applied"
@@ -4304,7 +4310,7 @@
}
},
"autoFillOnPageLoad": {
- "message": "Autofill on page load?"
+ "message": "Habilita l'emplenament automàtic en carregar la pàgina?"
},
"cardExpiredTitle": {
"message": "Expired card"
@@ -4328,7 +4334,7 @@
"message": "Enable animations"
},
"showAnimations": {
- "message": "Show animations"
+ "message": "Mostra animacions"
},
"addAccount": {
"message": "Afig compte"
@@ -4561,10 +4567,10 @@
"message": "Account actions"
},
"showNumberOfAutofillSuggestions": {
- "message": "Show number of login autofill suggestions on extension icon"
+ "message": "Mostra el nombre de suggeriments d'emplenament automàtic d'inici de sessió a la icona d'extensió"
},
"showQuickCopyActions": {
- "message": "Show quick copy actions on Vault"
+ "message": "Mostra accions de còpia ràpida a la caixa forta"
},
"systemDefault": {
"message": "System default"
@@ -4573,16 +4579,16 @@
"message": "Enterprise policy requirements have been applied to this setting"
},
"sshPrivateKey": {
- "message": "Private key"
+ "message": "Clau privada"
},
"sshPublicKey": {
- "message": "Public key"
+ "message": "Clau pública"
},
"sshFingerprint": {
"message": "Fingerprint"
},
"sshKeyAlgorithm": {
- "message": "Key type"
+ "message": "Tipus de clau"
},
"sshKeyAlgorithmED25519": {
"message": "ED25519"
@@ -4819,7 +4825,7 @@
"message": "Generated password"
},
"compactMode": {
- "message": "Compact mode"
+ "message": "Mode compacte"
},
"beta": {
"message": "Beta"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/cs/messages.json b/apps/browser/src/_locales/cs/messages.json
index 0a05974279a..eaad6b1e643 100644
--- a/apps/browser/src/_locales/cs/messages.json
+++ b/apps/browser/src/_locales/cs/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Ověřit identitu"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Toto zařízení nepoznáváme. Zadejte kód zaslaný na Váš e-mail pro ověření Vaší totožnosti."
+ },
+ "continueLoggingIn": {
+ "message": "Pokračovat v přihlášení"
+ },
"yourVaultIsLocked": {
"message": "Váš trezor je uzamčen. Pro pokračování musíte zadat hlavní heslo."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Požádá o přidání položky, pokud nebyla nalezena v trezoru. Platí pro všechny přihlášené účty."
},
- "showCardsInVaultView": {
- "message": "Zobrazit karty jako návrhy automatického vyplňování v zobrazení trezoru"
+ "showCardsInVaultViewV2": {
+ "message": "Vždy zobrazit karty jako návrhy automatického vyplňování v zobrazení trezoru"
},
"showCardsCurrentTab": {
"message": "Zobrazit platební karty na obrazovce Karta"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Pro snadné vyplnění zobrazí platební karty na obrazovce Karta."
},
- "showIdentitiesInVaultView": {
- "message": "Zobrazit identity jako návrhy automatického vyplňování v zobrazení trezoru"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Vždy zobrazit identity jako návrhy automatického vyplňování v zobrazení trezoru"
},
"showIdentitiesCurrentTab": {
"message": "Zobrazit identity na obrazovce Karta"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra široký"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Aktualizujte aplikaci pro stolní počítač"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Chcete-li použít biometrické odemknutí, aktualizujte aplikaci pro stolní počítač nebo v nastavení vypněte odemknutí otiskem prstů."
}
}
diff --git a/apps/browser/src/_locales/cy/messages.json b/apps/browser/src/_locales/cy/messages.json
index cbaa31fea30..174f91a9914 100644
--- a/apps/browser/src/_locales/cy/messages.json
+++ b/apps/browser/src/_locales/cy/messages.json
@@ -29,7 +29,7 @@
"message": "Use single sign-on"
},
"welcomeBack": {
- "message": "Welcome back"
+ "message": "Croeso nôl"
},
"setAStrongPassword": {
"message": "Gosod cyfrinair cryf"
@@ -171,7 +171,7 @@
}
},
"copyWebsite": {
- "message": "Copy website"
+ "message": "Copïo'r wefan"
},
"copyNotes": {
"message": "Copy notes"
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Gwirio'ch hunaniaeth"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Mae eich cell ar glo. Gwiriwch eich hunaniaeth i barhau."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4075,7 +4081,7 @@
"message": "Account security"
},
"notifications": {
- "message": "Notifications"
+ "message": "Hysbysiadau"
},
"appearance": {
"message": "Golwg"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/da/messages.json b/apps/browser/src/_locales/da/messages.json
index 628ce983c09..a35cdcb7435 100644
--- a/apps/browser/src/_locales/da/messages.json
+++ b/apps/browser/src/_locales/da/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Bekræft identitet"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Denne enhed er ikke genkendt. Angiv koden i den tilsendte e-mail for at bekræfte identiteten."
+ },
+ "continueLoggingIn": {
+ "message": "Fortsæt med at logge ind"
+ },
"yourVaultIsLocked": {
"message": "Din boks er låst. Bekræft din identitet for at fortsætte."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Anmod om at tilføje et emne, hvis intet ikke findes i boksen. Gælder alle indloggede konti."
},
- "showCardsInVaultView": {
- "message": "Vis kort som Autoudfyldningsforslag ved Boks-visning"
+ "showCardsInVaultViewV2": {
+ "message": "Vis altid kort som Autoudfyldningsforslag ved Boks-visning"
},
"showCardsCurrentTab": {
"message": "Vis kort på fanebladet"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Vis kortemner på siden Fane for nem autoudfyldning."
},
- "showIdentitiesInVaultView": {
- "message": "Vis identiteter som Autoudfyldningsforslag ved Boks-visning"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Vis altid identiteter som Autoudfyldningsforslag ved Boks-visning"
},
"showIdentitiesCurrentTab": {
"message": "Vis identiteter på fanebladet"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra bred"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Opdatér venligst computerapplikationen"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "For brug af biometrisk oplåsning skal computerapplikationen opdateres eller fingeraftryksoplåsning deaktiveres i computerindstillingerne."
}
}
diff --git a/apps/browser/src/_locales/de/messages.json b/apps/browser/src/_locales/de/messages.json
index 86d9d513e40..75f616e3152 100644
--- a/apps/browser/src/_locales/de/messages.json
+++ b/apps/browser/src/_locales/de/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Identität verifizieren"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Wir erkennen dieses Gerät nicht. Gib den an deine E-Mail-Adresse gesendeten Code ein, um deine Identität zu verifizieren."
+ },
+ "continueLoggingIn": {
+ "message": "Anmeldung fortsetzen"
+ },
"yourVaultIsLocked": {
"message": "Dein Tresor ist gesperrt. Verifiziere deine Identität, um fortzufahren."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Nach dem Hinzufügen eines Eintrags fragen, wenn er nicht in deinem Tresor gefunden wurde. Gilt für alle angemeldeten Konten."
},
- "showCardsInVaultView": {
- "message": "Karten als Vorschläge zum Auto-Ausfüllen in der Tresor-Ansicht anzeigen"
+ "showCardsInVaultViewV2": {
+ "message": "Karten immer als Auto-Ausfüllen-Vorschläge in der Tresor-Ansicht anzeigen"
},
"showCardsCurrentTab": {
"message": "Karten auf Tab Seite anzeigen"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Karten-Einträge auf der Tab Seite anzeigen, um das Auto-Ausfüllen zu vereinfachen."
},
- "showIdentitiesInVaultView": {
- "message": "Identitäten als Vorschläge zum Auto-Ausfüllen in der Tresor-Ansicht anzeigen"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Identitäten immer als Auto-Ausfüllen-Vorschläge in der Tresor-Ansicht anzeigen"
},
"showIdentitiesCurrentTab": {
"message": "Identitäten auf Tab Seite anzeigen"
@@ -2811,7 +2817,7 @@
"message": "Bitwarden konnte folgende(n) Tresor-Eintrag/Einträge nicht entschlüsseln."
},
"contactCSToAvoidDataLossPart1": {
- "message": "Kontaktiere den Kundensupport",
+ "message": "Kontaktiere unser Customer Success Team",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra breit"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Bitte aktualisiere deine Desktop-Anwendung"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Um biometrisches Entsperren zu verwenden, aktualisiere bitte deine Desktop-Anwendung oder deaktiviere die Entsperrung per Fingerabdruck in den Desktop-Einstellungen."
}
}
diff --git a/apps/browser/src/_locales/el/messages.json b/apps/browser/src/_locales/el/messages.json
index 16fd5094fdd..24dfa75a3b6 100644
--- a/apps/browser/src/_locales/el/messages.json
+++ b/apps/browser/src/_locales/el/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Επιβεβαίωση ταυτότητας"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Το vault σας είναι κλειδωμένο. Επαληθεύστε τον κύριο κωδικό πρόσβασης για να συνεχίσετε."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ζητήστε να προσθέσετε ένα αντικείμενο αν δε βρεθεί στο θησαυ/κιό σας. Ισχύει για όλους τους συνδεδεμένους λογαριασμούς."
},
- "showCardsInVaultView": {
- "message": "Εμφάνιση καρτών ως προτάσεις αυτόματης συμπλήρωσης στην προβολή Θησαυ/κίου"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Εμφάνιση καρτών στη σελίδα Καρτέλας"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Εμφάνισε τα αντικείμενα κάρτες στη σελίδα Καρτέλα για εύκολη αυτόματη συμπλήρωση."
},
- "showIdentitiesInVaultView": {
- "message": "Εμφάνιση ταυτοτήτων ως προτάσεις αυτόματης συμπλήρωσης στην προβολή Θησαυ/κίου"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Εμφάνιση ταυτοτήτων στη σελίδα καρτέλας"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Εξαιρετικά φαρδύ"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 6b1764289f8..666dea3f5b8 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -445,6 +445,18 @@
"generatePassphrase": {
"message": "Generate passphrase"
},
+ "passwordGenerated": {
+ "message": "Password generated"
+ },
+ "passphraseGenerated": {
+ "message": "Passphrase generated"
+ },
+ "usernameGenerated": {
+ "message": "Username generated"
+ },
+ "emailGenerated": {
+ "message": "Email generated"
+ },
"regeneratePassword": {
"message": "Regenerate password"
},
@@ -647,6 +659,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +1004,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1013,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
diff --git a/apps/browser/src/_locales/en_GB/messages.json b/apps/browser/src/_locales/en_GB/messages.json
index 4ea532f1e35..70ebff74e72 100644
--- a/apps/browser/src/_locales/en_GB/messages.json
+++ b/apps/browser/src/_locales/en_GB/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognise this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy auto-fill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/en_IN/messages.json b/apps/browser/src/_locales/en_IN/messages.json
index 38724849736..2a4d0c67fca 100644
--- a/apps/browser/src/_locales/en_IN/messages.json
+++ b/apps/browser/src/_locales/en_IN/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify Identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognise this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy auto-fill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identifies as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/es/messages.json b/apps/browser/src/_locales/es/messages.json
index 2f87902cedb..44a7d564a06 100644
--- a/apps/browser/src/_locales/es/messages.json
+++ b/apps/browser/src/_locales/es/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verificar identidad"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Tu caja fuerte está bloqueada. Verifica tu identidad para continuar."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Pide que se agregue un elemento si no se encuentra uno en su caja fuerte. Se aplica a todas las cuentas que hayan iniciado sesión."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Mostrar las tarjetas en la pestaña"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Listar los elementos de tarjetas en la página para facilitar el auto-rellenado."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Mostrar las identidades en la página"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/et/messages.json b/apps/browser/src/_locales/et/messages.json
index 5ee8566dc33..9f108a5666c 100644
--- a/apps/browser/src/_locales/et/messages.json
+++ b/apps/browser/src/_locales/et/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Identiteedi kinnitamine"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Hoidla on lukus. Jätkamiseks sisesta ülemparool."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Kuva \"Kaart\" vaates kaardiandmed"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Kuvab \"Kaart\" vaates kaardiandmeid, et neid saaks kiiresti sisestada"
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Kuva \"Kaart\" vaates identiteete"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/eu/messages.json b/apps/browser/src/_locales/eu/messages.json
index d7bcfc2838e..2494046aaab 100644
--- a/apps/browser/src/_locales/eu/messages.json
+++ b/apps/browser/src/_locales/eu/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Zure identitatea egiaztatu"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Zure kutxa gotorra blokeatuta dago. Egiaztatu zure identitatea jarraitzeko."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Erakutsi txartelak fitxa orrian"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Erakutsi elementuen txartelak fitxa orrian, erraz auto-betetzeko."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Erakutsi identitateak fitxa orrian"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/fa/messages.json b/apps/browser/src/_locales/fa/messages.json
index 3cb1581b98f..f9f016ecac2 100644
--- a/apps/browser/src/_locales/fa/messages.json
+++ b/apps/browser/src/_locales/fa/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "تأیید هویت"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "گاوصندوق شما قفل شده است. برای ادامه هویت خود را تأیید کنید."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "نمایش کارتها در صفحه برگه"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "برای پر کردن خودکار آسان، موارد کارت را در صفحه برگه فهرست کن."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "نشان دادن هویت در صفحه برگه"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/fi/messages.json b/apps/browser/src/_locales/fi/messages.json
index 9e2f18ea72e..a225f89ced5 100644
--- a/apps/browser/src/_locales/fi/messages.json
+++ b/apps/browser/src/_locales/fi/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Vahvista henkilöllisyytesi"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Holvisi on lukittu. Jatka vahvistamalla henkilöllisyytesi."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ehdota kohteen tallennusta, jos holvistasi ei vielä löydy vastaavaa kohdetta. Koskee kaikkia kirjautuneita tilejä."
},
- "showCardsInVaultView": {
- "message": "Näytä kortit automaattitäytön ehdotuksina Holvi-näkymässä"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Näytä kortit välilehtiosiossa"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Näytä kortit Välilehti-sivulla automaattitäytön helpottamiseksi."
},
- "showIdentitiesInVaultView": {
- "message": "Näytä henkilöllisyydet automaattitäytön ehdotuksina Holvi-sivulla."
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Näytä henkilöllisyydet välilehtiosiossa"
@@ -2325,7 +2331,7 @@
"description": "A category title describing the concept of web domains"
},
"blockedDomains": {
- "message": "Blocked domains"
+ "message": "Estetyt verkkotunnukset"
},
"excludedDomains": {
"message": "Ohitettavat verkkotunnukset"
@@ -2340,7 +2346,7 @@
"message": "Autofill and other related features will not be offered for these websites. You must refresh the page for changes to take effect."
},
"autofillBlockedNoticeV2": {
- "message": "Autofill is blocked for this website."
+ "message": "Automaattitäyttö on estetty tällä sivustolla."
},
"autofillBlockedNoticeGuidance": {
"message": "Change this in settings"
@@ -2805,7 +2811,7 @@
"message": "Virhe"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Salauksen purkuvirhe"
},
"couldNotDecryptVaultItemsBelow": {
"message": "Bitwarden could not decrypt the vault item(s) listed below."
@@ -3976,10 +3982,10 @@
"message": "Pääsyavain poistettiin"
},
"autofillSuggestions": {
- "message": "Autofill suggestions"
+ "message": "Automaattitäytön ehdotukset"
},
"itemSuggestions": {
- "message": "Suggested items"
+ "message": "Ehdotetut kohteet"
},
"autofillSuggestionsTip": {
"message": "Tallenna tälle sivustolle automaattisesti täytettävä kirjautumistieto."
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Erittäin leveä"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/fil/messages.json b/apps/browser/src/_locales/fil/messages.json
index 62e962e309a..91c94013c5c 100644
--- a/apps/browser/src/_locales/fil/messages.json
+++ b/apps/browser/src/_locales/fil/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "I-verify ang pagkakakilanlan"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Naka-lock ang iyong vault. Patunayan ang iyong pagkakakilanlan upang magpatuloy."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Hilingin na magdagdag ng isang item kung ang isa ay hindi mahanap sa iyong vault. Nalalapat sa lahat ng naka-log in na account."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Ipakita ang mga card sa Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Itala ang mga item ng card sa Tab page para sa madaling auto-fill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Ipakita ang mga pagkatao sa Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/fr/messages.json b/apps/browser/src/_locales/fr/messages.json
index b1ebfe05fe1..d155db81547 100644
--- a/apps/browser/src/_locales/fr/messages.json
+++ b/apps/browser/src/_locales/fr/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Vérifier l'identité"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Votre coffre est verrouillé. Vérifiez votre identité pour continuer."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Demande l'ajout d'un élément si celui-ci n'est pas trouvé dans votre coffre. S'applique à tous les comptes connectés."
},
- "showCardsInVaultView": {
- "message": "Afficher les cartes de paiement en tant que suggestions de saisie automatique dans la vue du coffre"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Afficher les cartes de paiement sur la Page d'onglet"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Liste les éléments des cartes de paiement sur la Page d'onglet pour faciliter la saisie automatique."
},
- "showIdentitiesInVaultView": {
- "message": "Afficher les identités en tant que suggestions de saisie automatique dans la vue du coffre"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Afficher les identités sur la Page d'onglet"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Très large"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/gl/messages.json b/apps/browser/src/_locales/gl/messages.json
index 3d352359e69..d5d956f7f0d 100644
--- a/apps/browser/src/_locales/gl/messages.json
+++ b/apps/browser/src/_locales/gl/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verificar identidade"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "A túa caixa forte está bloqueada. Verifica a túa identidade para continuar."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ofrecer gardar un elemento se non se atopa na caixa forte. Aplica a tódalas sesións iniciadas."
},
- "showCardsInVaultView": {
- "message": "Na caixa forte, amosar tarxetas como suxestións de Autoenchido"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Amosar tarxetas na pestana"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Lista na pestana actual as tarxetas gardadas para autoenchido."
},
- "showIdentitiesInVaultView": {
- "message": "Na caixa forte, amosar identidades como suxestións de Autoenchido"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Amosar identidades na pestana"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Moi ancho"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/he/messages.json b/apps/browser/src/_locales/he/messages.json
index b66d0a4aa24..ef2b54903df 100644
--- a/apps/browser/src/_locales/he/messages.json
+++ b/apps/browser/src/_locales/he/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "אימות זהות"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "הכספת שלך נעולה. הזן את הסיסמה הראשית שלך כדי להמשיך."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/hi/messages.json b/apps/browser/src/_locales/hi/messages.json
index 8927c78e16b..1c3869fa4e5 100644
--- a/apps/browser/src/_locales/hi/messages.json
+++ b/apps/browser/src/_locales/hi/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "पहचान सत्यापित करें"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "आपकी वॉल्ट लॉक हो गई है। जारी रखने के लिए अपने मास्टर पासवर्ड को सत्यापित करें।"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "टैब पेज पर कार्ड दिखाएं"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "आसान ऑटो-फिल के लिए टैब पेज पर कार्ड आइटम सूचीबद्ध करें।"
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "टैब पेज पर पहचान दिखाएं"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/hr/messages.json b/apps/browser/src/_locales/hr/messages.json
index 20583c4cbbd..11831d13ea5 100644
--- a/apps/browser/src/_locales/hr/messages.json
+++ b/apps/browser/src/_locales/hr/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Potvrdi identitet"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Tvoj trezor je zaključan. Potvrdi glavnu lozinku za nastavak."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Pitaj za dodavanje stavke ako nije pronađena u tvojem trezoru. Primjenjuje se na sve prijavljene račune."
},
- "showCardsInVaultView": {
- "message": "Prikaži kartice kao prijedloge za auto-ispunu u prikazu trezora"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Prikaži platne kartice"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Prikazuj platne kartice za jednostavnu auto-ispunu."
},
- "showIdentitiesInVaultView": {
- "message": "Prikaži identitete kao prijedloge za auto-ispunu u prikazu trezora"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Prikaži identitete"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra široko"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/hu/messages.json b/apps/browser/src/_locales/hu/messages.json
index bcde4db3c4f..d1e9abdaaed 100644
--- a/apps/browser/src/_locales/hu/messages.json
+++ b/apps/browser/src/_locales/hu/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Személyazonosság ellenőrzése"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Nem ismerhető fel ez az eszköz. Írjuk be az email címünkre küldött kódot a személyazonosság igazolásához."
+ },
+ "continueLoggingIn": {
+ "message": "A bejelentkezés folytatása"
+ },
"yourVaultIsLocked": {
"message": "A széf zárolásra került. A folytatáshoz meg kell adni a mesterjelszót."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Egy elem hozzáadásának kérése, ha az nem található a széfben. Minden bejelentkezett fiókra vonatkozik."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Mindig jelenítse meg a kártyákat automatikus kitöltési javaslatként a Széf nézetben"
},
"showCardsCurrentTab": {
"message": "Kártyák megjelenítése a Fül oldalon"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Kártyaelemek listázása a Fül oldalon a könnyű automatikus kitöltéshez."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Mindig jelenítse meg a személyazonosságokat automatikus kitöltési javaslatként a Széf nézetben"
},
"showIdentitiesCurrentTab": {
"message": "Azonosítások megjelenítése a Fül oldalon"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra széles"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Frissítsük az asztali alkalmazást."
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "A biometrikus feloldás használatához frissítsük az asztali alkalmazást vagy tiltsuk le az ujjlenyomatos feloldást az asztali beállításokban."
}
}
diff --git a/apps/browser/src/_locales/id/messages.json b/apps/browser/src/_locales/id/messages.json
index fedfb0cec1f..0964684ecff 100644
--- a/apps/browser/src/_locales/id/messages.json
+++ b/apps/browser/src/_locales/id/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verifikasi Identitas Anda"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Brankas Anda terkunci. Verifikasi kata sandi utama Anda untuk melanjutkan."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Tanyakan untuk menambah sebuah benda jika benda itu tidak ditemukan di brankas Anda. Diterapkan ke seluruh akun yang telah masuk."
},
- "showCardsInVaultView": {
- "message": "Tampilkan kartu sebagai saran isi otomatis pada tampilan Brankas"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Tamplikan kartu pada halaman Tab"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Buat tampilan daftar benda dari kartu pada halaman Tab untuk isi otomatis yang mudah."
},
- "showIdentitiesInVaultView": {
- "message": "Tampilkan identitas sebagai saran isi otomatis pada tampilan Brankas"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Tampilkan identitas pada halaman Tab"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra lebar"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/it/messages.json b/apps/browser/src/_locales/it/messages.json
index 53b94a951c1..c36addb8df1 100644
--- a/apps/browser/src/_locales/it/messages.json
+++ b/apps/browser/src/_locales/it/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verifica identità"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Non riconosciamo questo dispositivo. Inserisci il codice inviato alla tua e-mail per verificare la tua identità."
+ },
+ "continueLoggingIn": {
+ "message": "Continua l'accesso"
+ },
"yourVaultIsLocked": {
"message": "La tua cassaforte è bloccata. Verifica la tua identità per continuare."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Chiedi di creare un nuovo elemento se non ce n'è uno nella tua cassaforte. Si applica a tutti gli account sul dispositivo."
},
- "showCardsInVaultView": {
- "message": "Mostra le carte come suggerimenti di riempimento automatico nella vista cassaforte"
+ "showCardsInVaultViewV2": {
+ "message": "Mostra sempre le carte come suggerimenti di riempimento automatico nella vista cassaforte"
},
"showCardsCurrentTab": {
"message": "Mostra le carte nella sezione Scheda"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Mostra le carte nella sezione Scheda per riempirle automaticamente."
},
- "showIdentitiesInVaultView": {
- "message": "Mostra le identità come suggerimenti di riempimento automatico nella vista cassaforte"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Mostra sempre le identità come suggerimenti di riempimento automatico nella vista cassaforte"
},
"showIdentitiesCurrentTab": {
"message": "Mostra le identità nella sezione Scheda"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Molto larga"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Aggiornare l'applicazione desktop"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Per usare lo sblocco biometrico, aggiornare l'applicazione desktop o disabilitare lo sblocco dell'impronta digitale nelle impostazioni del desktop."
}
}
diff --git a/apps/browser/src/_locales/ja/messages.json b/apps/browser/src/_locales/ja/messages.json
index 1824c9314ee..2a6910f95bf 100644
--- a/apps/browser/src/_locales/ja/messages.json
+++ b/apps/browser/src/_locales/ja/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "本人確認を行う"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "保管庫がロックされています。続行するには本人確認を行ってください。"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "保管庫にアイテムが見つからない場合は、アイテムを追加するよう要求します。ログインしているすべてのアカウントに適用されます。"
},
- "showCardsInVaultView": {
- "message": "保管庫ビューに自動入力の候補としてカードを表示する"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "タブページにカードを表示"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "自動入力を簡単にするために、タブページにカードアイテムを表示します"
},
- "showIdentitiesInVaultView": {
- "message": "保管庫ビューに自動入力の候補として ID を表示する"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "タブページに ID を表示"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "エクストラワイド"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/ka/messages.json b/apps/browser/src/_locales/ka/messages.json
index 1f8f2766e7b..96ebdc75ce9 100644
--- a/apps/browser/src/_locales/ka/messages.json
+++ b/apps/browser/src/_locales/ka/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/km/messages.json b/apps/browser/src/_locales/km/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/km/messages.json
+++ b/apps/browser/src/_locales/km/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/kn/messages.json b/apps/browser/src/_locales/kn/messages.json
index ce85c7ea820..9194d581046 100644
--- a/apps/browser/src/_locales/kn/messages.json
+++ b/apps/browser/src/_locales/kn/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಲಾಕ್ ಆಗಿದೆ. ಮುಂದುವರೆಯಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/ko/messages.json b/apps/browser/src/_locales/ko/messages.json
index c264492e0d2..ffec7ebbd25 100644
--- a/apps/browser/src/_locales/ko/messages.json
+++ b/apps/browser/src/_locales/ko/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "신원 확인"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "보관함이 잠겨 있습니다. 마스터 비밀번호를 입력하여 계속하세요."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "보관함에 항목이 없을 경우 추가하라는 메시지를 표시합니다. 모든 로그인된 계정에 적용됩니다."
},
- "showCardsInVaultView": {
- "message": "보관함 보기에서 카드 자동 완성 제안을 표시"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "탭 페이지에 카드 표시"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "간편한 자동완성을 위해 탭에 카드 항목들을 나열"
},
- "showIdentitiesInVaultView": {
- "message": "보관함 보기에서 신원들의 자동 완성 제안을 표시"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "탭 페이지에 신원들을 표시"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "매우 넓게"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/lt/messages.json b/apps/browser/src/_locales/lt/messages.json
index f76ae921425..b2699faafb6 100644
--- a/apps/browser/src/_locales/lt/messages.json
+++ b/apps/browser/src/_locales/lt/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Patvirtinti tapatybę"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Jūsų saugykla užrakinta. Norėdami tęsti, patikrinkite pagrindinį slaptažodį."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Paprašykite pridėti elementą, jei jo nerasta Jūsų saugykloje. Taikoma visoms prisijungusioms paskyroms."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Rodyti korteles skirtuko puslapyje"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Pateikti kortelių elementų skirtuko puslapyje sąrašą, kad būtų lengva automatiškai užpildyti."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Rodyti tapatybes skirtuko puslapyje"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/lv/messages.json b/apps/browser/src/_locales/lv/messages.json
index d18fbb92039..1417cb559ae 100644
--- a/apps/browser/src/_locales/lv/messages.json
+++ b/apps/browser/src/_locales/lv/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Identitātes apliecināšana"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Mēs neatpazīstam šo ierīci. Jāievada kods, kas tika nosūtīts e-pastā, lai apliecinātu savu identitāti."
+ },
+ "continueLoggingIn": {
+ "message": "Turpināt pieteikšanos"
+ },
"yourVaultIsLocked": {
"message": "Glabātava ir aizslēgta. Jāapliecina sava identitāte, lai turpinātu."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Vaicāt, vai pievienot vienumu, ja glabātavā tāds nav atrodams. Attiecas uz visiem kontiem, kuri ir pieteikušies."
},
- "showCardsInVaultView": {
- "message": "Rādīt kartes kā automātiskās aizpildes ieteikumus glabātavas skatā"
+ "showCardsInVaultViewV2": {
+ "message": "Glabātavas skatā vienmēr rādīt kartes kā automātiskās aizpildes ieteikumus"
},
"showCardsCurrentTab": {
"message": "Rādīt kartes cilnes lapā"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Attēlot kartes ciļņu lapā vieglākai aizpildīšanai."
},
- "showIdentitiesInVaultView": {
- "message": "Rādīt identitātes kā automātiskās aizpildes ieteikumus glabātavas skatā"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Glabātavas skatā vienmēr rādīt identitātes kā automātiskās aizpildes ieteikumus"
},
"showIdentitiesCurrentTab": {
"message": "Rādīt identitātes cilnes pārskatā"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ļoti plats"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Lūgums atjaunināt darbvirsmas lietotni"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Lai izmantotu atslēgšanu ar biometriju, lūgums atjaunināt darbvirsmas lietotni vai atspējot atslēgšanu ar pirkstu nospiedumu darbvirsmas iestatījumos."
}
}
diff --git a/apps/browser/src/_locales/ml/messages.json b/apps/browser/src/_locales/ml/messages.json
index cfbb1972388..131e5a080a1 100644
--- a/apps/browser/src/_locales/ml/messages.json
+++ b/apps/browser/src/_locales/ml/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "തങ്ങളുടെ വാൾട് പൂട്ടിയിരിക്കുന്നു. തുടരുന്നതിന് നിങ്ങളുടെ പ്രാഥമിക പാസ്വേഡ് പരിശോധിക്കുക."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/mr/messages.json b/apps/browser/src/_locales/mr/messages.json
index 05d6034acec..394da61d138 100644
--- a/apps/browser/src/_locales/mr/messages.json
+++ b/apps/browser/src/_locales/mr/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "ओळख सत्यापित करा"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "तुमची तिजोरीला कुलूप लावले आहे. पुढे जाण्यासाठी तुमची ओळख सत्यापित करा."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/my/messages.json b/apps/browser/src/_locales/my/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/my/messages.json
+++ b/apps/browser/src/_locales/my/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/nb/messages.json b/apps/browser/src/_locales/nb/messages.json
index df676d2a3ba..8cef85cc3ad 100644
--- a/apps/browser/src/_locales/nb/messages.json
+++ b/apps/browser/src/_locales/nb/messages.json
@@ -81,10 +81,10 @@
"message": "Et hint for hovedpassordet (valgfritt)"
},
"joinOrganization": {
- "message": "Join organization"
+ "message": "Bli med i organisasjonen"
},
"joinOrganizationName": {
- "message": "Join $ORGANIZATIONNAME$",
+ "message": "Bli med i $ORGANIZATIONNAME$",
"placeholders": {
"organizationName": {
"content": "$1",
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Bekreft identitet"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Hvelvet ditt er låst. Kontroller hovedpassordet ditt for å fortsette."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Vis kort på fanesiden"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Vis kortelementer på fanesiden for lett auto-utfylling."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Vis identiteter på fanesiden"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra bred"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/ne/messages.json b/apps/browser/src/_locales/ne/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/ne/messages.json
+++ b/apps/browser/src/_locales/ne/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/nl/messages.json b/apps/browser/src/_locales/nl/messages.json
index 8a70ea4548c..8c0434031da 100644
--- a/apps/browser/src/_locales/nl/messages.json
+++ b/apps/browser/src/_locales/nl/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Identiteit verifiëren"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We herkennen dit apparaat niet. Voer de code in die naar je e-mail is verzonden om je identiteit te verifiëren."
+ },
+ "continueLoggingIn": {
+ "message": "Doorgaan met inloggen"
+ },
"yourVaultIsLocked": {
"message": "Je kluis is vergrendeld. Bevestig je identiteit om door te gaan."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Vraag om een item toe te voegen als het niet is gevonden is je kluis. Dit geld voor alle ingelogde accounts."
},
- "showCardsInVaultView": {
- "message": "Kaarten als Autofill-suggesties in de kluisweergave weergeven"
+ "showCardsInVaultViewV2": {
+ "message": "Kaarten altijd als Autofill-suggesties in de kluisweergave weergeven"
},
"showCardsCurrentTab": {
"message": "Kaarten weergeven op tabpagina"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Kaartenitems weergeven op de tabpagina voor gemakkelijk automatisch invullen."
},
- "showIdentitiesInVaultView": {
- "message": "Identiteiten als Autofill-suggesties in de kluisweergave weergeven"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Identiteiten altijd als Autofill-suggesties in de kluisweergave weergeven"
},
"showIdentitiesCurrentTab": {
"message": "Identiteiten weergeven op tabpagina"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra breed"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Werk je desktopapplicatie bij"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Als u biometrische gegevens wilt gebruiken, moet je de desktopapplicatie bijwerken of vingerafdrukontgrendeling uitschakelen in de instellingen van de desktopapplicatie."
}
}
diff --git a/apps/browser/src/_locales/nn/messages.json b/apps/browser/src/_locales/nn/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/nn/messages.json
+++ b/apps/browser/src/_locales/nn/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/or/messages.json b/apps/browser/src/_locales/or/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/or/messages.json
+++ b/apps/browser/src/_locales/or/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/pl/messages.json b/apps/browser/src/_locales/pl/messages.json
index b79acf95a1c..9260ed2577c 100644
--- a/apps/browser/src/_locales/pl/messages.json
+++ b/apps/browser/src/_locales/pl/messages.json
@@ -20,7 +20,7 @@
"message": "Utwórz konto"
},
"newToBitwarden": {
- "message": "New to Bitwarden?"
+ "message": "Nowy użytkownik Bitwarden?"
},
"logInWithPasskey": {
"message": "Zaloguj się używając passkey"
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Zweryfikuj tożsamość"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Sejf jest zablokowany. Zweryfikuj swoją tożsamość, aby kontynuować."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Poproś o dodanie elementu, jeśli nie zostanie znaleziony w Twoim sejfie. Dotyczy wszystkich zalogowanych kont."
},
- "showCardsInVaultView": {
- "message": "Pokaż karty jako sugestie autouzupełniania w widoku sejfu"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Pokaż karty na stronie głównej"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Pokaż elementy karty na stronie głównej, aby ułatwić autouzupełnianie."
},
- "showIdentitiesInVaultView": {
- "message": "Pokaż tożsamości jako sugestie autouzupełniania w widoku sejfu"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Pokaż tożsamości na stronie głównej"
@@ -1320,7 +1326,7 @@
"message": "Limit czasu uwierzytelniania"
},
"authenticationSessionTimedOut": {
- "message": "The authentication session timed out. Please restart the login process."
+ "message": "Upłynął limit czasu uwierzytelniania. Uruchom ponownie proces logowania."
},
"enterVerificationCodeEmail": {
"message": "Wpisz 6-cyfrowy kod weryfikacyjny, który został przesłany na adres $EMAIL$.",
@@ -2325,7 +2331,7 @@
"description": "A category title describing the concept of web domains"
},
"blockedDomains": {
- "message": "Blocked domains"
+ "message": "Zablokowane domeny"
},
"excludedDomains": {
"message": "Wykluczone domeny"
@@ -2340,10 +2346,10 @@
"message": "Autofill and other related features will not be offered for these websites. You must refresh the page for changes to take effect."
},
"autofillBlockedNoticeV2": {
- "message": "Autofill is blocked for this website."
+ "message": "Autouzupełnianie jest zablokowane dla tej witryny."
},
"autofillBlockedNoticeGuidance": {
- "message": "Change this in settings"
+ "message": "Zmień to w ustawieniach"
},
"websiteItemLabel": {
"message": "Strona internetowa $number$ (URI)",
@@ -2364,7 +2370,7 @@
}
},
"blockedDomainsSavedSuccess": {
- "message": "Blocked domain changes saved"
+ "message": "Zmiany w zablokowanych domenach zapisane"
},
"excludedDomainsSavedSuccess": {
"message": "Zmiany w wykluczonych domenach zapisane"
@@ -2568,7 +2574,7 @@
"message": "Aby wybrać plik za pomocą przeglądarki Safari, otwórz rozszerzenie w nowym oknie."
},
"popOut": {
- "message": "Pop out"
+ "message": "Odepnij"
},
"sendFileCalloutHeader": {
"message": "Zanim zaczniesz"
@@ -2805,10 +2811,10 @@
"message": "Błąd"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Błąd odszyfrowywania"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden could not decrypt the vault item(s) listed below."
+ "message": "Bitwarden nie mógł odszyfrować elementów sejfu wymienionych poniżej."
},
"contactCSToAvoidDataLossPart1": {
"message": "Contact customer success",
@@ -3109,10 +3115,10 @@
"message": "Powiadomienie zostało wysłane na twoje urządzenie"
},
"makeSureYourAccountIsUnlockedAndTheFingerprintEtc": {
- "message": "Make sure your account is unlocked and the fingerprint phrase matches on the other device"
+ "message": "Upewnij się, że Twoje konto jest odblokowane, a unikalny identyfikator konta pasuje do drugiego urządzenia"
},
"youWillBeNotifiedOnceTheRequestIsApproved": {
- "message": "You will be notified once the request is approved"
+ "message": "Zostaniesz powiadomiony po zatwierdzeniu prośby"
},
"needAnotherOptionV1": {
"message": "Potrzebujesz innego sposobu?"
@@ -3976,10 +3982,10 @@
"message": "Passkey został usunięty"
},
"autofillSuggestions": {
- "message": "Autofill suggestions"
+ "message": "Sugestie autouzupełniania"
},
"itemSuggestions": {
- "message": "Suggested items"
+ "message": "Sugerowane elementy"
},
"autofillSuggestionsTip": {
"message": "Zapisz element logowania dla tej witryny, aby automatycznie wypełnić"
@@ -4636,22 +4642,22 @@
"message": "Nie masz uprawnień do edycji tego elementu"
},
"biometricsStatusHelptextUnlockNeeded": {
- "message": "Biometric unlock is unavailable because PIN or password unlock is required first."
+ "message": "Odblokowanie odciskiem palca jest niedostępne, ponieważ najpierw wymagane jest odblokowanie kodem PIN lub hasłem."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "Odblokowanie biometryczne jest obecnie niedostępne."
},
"biometricsStatusHelptextAutoSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Odblokowanie biometryczne jest niedostępne z powodu nieprawidłowej konfiguracji plików systemowych."
},
"biometricsStatusHelptextManualSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Odblokowanie biometryczne jest niedostępne z powodu nieprawidłowej konfiguracji plików systemowych."
},
"biometricsStatusHelptextDesktopDisconnected": {
- "message": "Biometric unlock is unavailable because the Bitwarden desktop app is closed."
+ "message": "Odblokowanie odciskiem palca jest niedostępne, ponieważ aplikacja desktopowa Bitwarden jest zamknięta."
},
"biometricsStatusHelptextNotEnabledInDesktop": {
- "message": "Biometric unlock is unavailable because it is not enabled for $EMAIL$ in the Bitwarden desktop app.",
+ "message": "Odblokowanie biometryczne jest niedostępne, ponieważ nie jest włączone dla $EMAIL$ w aplikacji desktopowej Bitwarden.",
"placeholders": {
"email": {
"content": "$1",
@@ -4660,7 +4666,7 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "Odblokowanie biometryczne jest obecnie niedostępne z nieznanego powodu."
},
"authenticating": {
"message": "Uwierzytelnianie"
@@ -4825,22 +4831,22 @@
"message": "Beta"
},
"importantNotice": {
- "message": "Important notice"
+ "message": "Ważna informacja"
},
"setupTwoStepLogin": {
- "message": "Set up two-step login"
+ "message": "Skonfiguruj dwustopniowe logowanie"
},
"newDeviceVerificationNoticeContentPage1": {
- "message": "Bitwarden will send a code to your account email to verify logins from new devices starting in February 2025."
+ "message": "Bitwarden wyśle kod na Twój adres e-mail w celu zweryfikowania logowania z nowych urządzeń, począwszy od lutego 2025 r."
},
"newDeviceVerificationNoticeContentPage2": {
- "message": "You can set up two-step login as an alternative way to protect your account or change your email to one you can access."
+ "message": "Możesz skonfigurować dwustopniowe logowanie jako alternatywny sposób ochrony konta lub zmienić swój adres e-mail do którego masz dostęp."
},
"remindMeLater": {
- "message": "Remind me later"
+ "message": "Przypomnij mi później"
},
"newDeviceVerificationNoticePageOneFormContent": {
- "message": "Do you have reliable access to your email, $EMAIL$?",
+ "message": "Czy masz pewny dostęp do swojego adresu e-mail, $EMAIL$?",
"placeholders": {
"email": {
"content": "$1",
@@ -4849,16 +4855,16 @@
}
},
"newDeviceVerificationNoticePageOneEmailAccessNo": {
- "message": "No, I do not"
+ "message": "Nie, nie mam"
},
"newDeviceVerificationNoticePageOneEmailAccessYes": {
- "message": "Yes, I can reliably access my email"
+ "message": "Tak, mam pewny dostęp do mojego adresu e-mail"
},
"turnOnTwoStepLogin": {
- "message": "Turn on two-step login"
+ "message": "Włącz dwustopniowe logowanie"
},
"changeAcctEmail": {
- "message": "Change account email"
+ "message": "Zmień adres e-mail konta"
},
"extensionWidth": {
"message": "Szerokość rozszerzenia"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Bardzo szerokie"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/pt_BR/messages.json b/apps/browser/src/_locales/pt_BR/messages.json
index 0971c5e1bc5..41b9635ecf2 100644
--- a/apps/browser/src/_locales/pt_BR/messages.json
+++ b/apps/browser/src/_locales/pt_BR/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verificar Identidade"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Seu cofre está trancado. Verifique sua identidade para continuar."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Pedir para adicionar um item se um não for encontrado no seu cofre. Aplica-se a todas as contas logadas."
},
- "showCardsInVaultView": {
- "message": "Mostrar cartões como sugestões de preenchimento automático na exibição do Cofre"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Mostrar cartões em páginas com guias."
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Exibir itens de cartão em páginas com abas para simplificar o preenchimento automático"
},
- "showIdentitiesInVaultView": {
- "message": "Mostrar identifica como sugestões de preenchimento automático na exibição do Cofre"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Exibir Identidades na Aba Atual"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra Grande"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/pt_PT/messages.json b/apps/browser/src/_locales/pt_PT/messages.json
index 663e337d01c..11495ed608f 100644
--- a/apps/browser/src/_locales/pt_PT/messages.json
+++ b/apps/browser/src/_locales/pt_PT/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verificar identidade"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Não reconhecemos este dispositivo. Introduza o código enviado para o seu e-mail para verificar a sua identidade."
+ },
+ "continueLoggingIn": {
+ "message": "Continuar a iniciar sessão"
+ },
"yourVaultIsLocked": {
"message": "O seu cofre está bloqueado. Verifique a sua identidade para continuar."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Pedir para adicionar um item se não for encontrado um no seu cofre. Aplica-se a todas as contas com sessão iniciada."
},
- "showCardsInVaultView": {
- "message": "Mostrar cartões como sugestões de preenchimento automático na vista do cofre"
+ "showCardsInVaultViewV2": {
+ "message": "Mostrar sempre cartões como sugestões de preenchimento automático na vista do cofre"
},
"showCardsCurrentTab": {
"message": "Mostrar cartões na página Separador"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Listar itens de cartões na página Separador para facilitar o preenchimento automático."
},
- "showIdentitiesInVaultView": {
- "message": "Mostrar identidades como sugestões de preenchimento automático na vista do cofre"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Mostrar sempre identidades como sugestões de preenchimento automático na vista do cofre"
},
"showIdentitiesCurrentTab": {
"message": "Mostrar identidades na página Separador"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Muito ampla"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Por favor, atualize a sua aplicação para computador"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Para utilizar o desbloqueio biométrico, atualize a sua aplicação para computador ou desative o desbloqueio por impressão digital nas definições dessa mesma app."
}
}
diff --git a/apps/browser/src/_locales/ro/messages.json b/apps/browser/src/_locales/ro/messages.json
index 165c3749b53..029d5470bd2 100644
--- a/apps/browser/src/_locales/ro/messages.json
+++ b/apps/browser/src/_locales/ro/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verificare identitate"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Seiful dvs. este blocat. Verificați-vă identitatea pentru a continua."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Afișați cardurile pe pagina Filă"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Listați elementele cardului pe pagina Filă pentru a facilita completarea automată."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Afișați identitățile pe pagina Filă"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/ru/messages.json b/apps/browser/src/_locales/ru/messages.json
index 5519737f16c..8259023f8b4 100644
--- a/apps/browser/src/_locales/ru/messages.json
+++ b/apps/browser/src/_locales/ru/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Подтвердить личность"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Мы не распознали это устройство. Введите код, отправленный на ваш email, чтобы подтвердить вашу личность."
+ },
+ "continueLoggingIn": {
+ "message": "Продолжить вход"
+ },
"yourVaultIsLocked": {
"message": "Ваше хранилище заблокировано. Подтвердите свою личность, чтобы продолжить"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Запрос на добавление элемента, если он отсутствует в вашем хранилище. Применяется ко всем авторизованным аккаунтам."
},
- "showCardsInVaultView": {
- "message": "Показывать карты как предложение автозаполнения при просмотре Хранилище"
+ "showCardsInVaultViewV2": {
+ "message": "Всегда показывать карты как предложения автозаполнения при просмотре хранилища"
},
"showCardsCurrentTab": {
"message": "Показывать карты на вкладке"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Карты будут отображены на вкладке для удобного автозаполнения."
},
- "showIdentitiesInVaultView": {
- "message": "Показывать личности как предложение автозаполнения при просмотре Хранилище"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Всегда показывать личности как предложения автозаполнения при просмотре хранилища"
},
"showIdentitiesCurrentTab": {
"message": "Показывать Личности на вкладке"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Очень широкое"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Пожалуйста, обновите приложение для компьютера"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Чтобы использовать биометрическую разблокировку, обновите приложение для компьютера или отключите разблокировку по отпечатку пальца в настройках компьютера."
}
}
diff --git a/apps/browser/src/_locales/si/messages.json b/apps/browser/src/_locales/si/messages.json
index 801e088aca8..c32e18aa87b 100644
--- a/apps/browser/src/_locales/si/messages.json
+++ b/apps/browser/src/_locales/si/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "අනන්යතාවය සත්යාපනය කරන්න"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "ඔබේ සුරක්ෂිතාගාරය අගුළු දමා ඇත. දිගටම කරගෙන යාමට ඔබේ අනන්යතාවය සත්යාපනය කරන්න."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/sk/messages.json b/apps/browser/src/_locales/sk/messages.json
index 92d0e35a51c..8c48a509ad0 100644
--- a/apps/browser/src/_locales/sk/messages.json
+++ b/apps/browser/src/_locales/sk/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Overiť identitu"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Toto zariadenie nepoznáme. Na overenie vašej totožnosti zadajte kód, ktorý bol zaslaný na váš e-mail."
+ },
+ "continueLoggingIn": {
+ "message": "Pokračovať v prihlasovaní"
+ },
"yourVaultIsLocked": {
"message": "Váš trezor je uzamknutý. Ak chcete pokračovať, overte svoju identitu."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Požiada o pridanie položky, ak sa v trezore nenachádza. Platí pre všetky prihlásené účty."
},
- "showCardsInVaultView": {
- "message": "Zobraziť karty ako návrhy automatického vypĺňania v zobrazení trezora"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Zobraziť karty na stránke \"Aktuálna karta\""
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Zoznam položiek karty na stránke \"Aktuálna karta\" na jednoduché automatické vyplnenie."
},
- "showIdentitiesInVaultView": {
- "message": "Zobraziť identity ako návrhy automatického vypĺňania v zobrazení trezora"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Zobraziť identity na stránke \"Aktuálna karta\""
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra široké"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Aktualizujte desktopovú aplikáciu"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Ak chcete používať biometrické odomykanie, aktualizujte desktopovú aplikáciu alebo vypnite odomykanie odtlačkom prsta v nastaveniach desktopovej aplikácie."
}
}
diff --git a/apps/browser/src/_locales/sl/messages.json b/apps/browser/src/_locales/sl/messages.json
index d57d6ec5e57..e1866033377 100644
--- a/apps/browser/src/_locales/sl/messages.json
+++ b/apps/browser/src/_locales/sl/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Preverjanje istovetnosti"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Vaš trezor je zaklenjen. Za nadaljevanje potrdite svojo identiteto."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Če predmeta ni v trezorju, ga je potrebno dodati. Velja za vse prijavljene račune."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Prikaži kartice na strani Zavihek"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Na strani Zavihek prikaži kartice za lažje samodejno izpoljnjevanje."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Prikaži identitete na strani Zavihek"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/sr/messages.json b/apps/browser/src/_locales/sr/messages.json
index 80de0ba3c8e..4f6d6b096af 100644
--- a/apps/browser/src/_locales/sr/messages.json
+++ b/apps/browser/src/_locales/sr/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Потврдите идентитет"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Не препознајемо овај уређај. Унесите код послат на адресу ваше електронске поште да би сте потврдили ваш идентитет."
+ },
+ "continueLoggingIn": {
+ "message": "Настави са пријављивањем"
+ },
"yourVaultIsLocked": {
"message": "Сеф је закључан. Унесите главну лозинку за наставак."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Затражите да додате ставку ако она није пронађена у вашем сефу. Односи се на све пријављене налоге."
},
- "showCardsInVaultView": {
- "message": "Прикажите картице као предлоге за ауто-попуњавање у приказу сефа"
+ "showCardsInVaultViewV2": {
+ "message": "Увек приказуј картице као препоруке аутоматског попуњавања на приказу трезора"
},
"showCardsCurrentTab": {
"message": "Прикажи кредитне картице на страници картице"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Прикажи ставке кредитних картица на страници картице за лакше аутоматско допуњавање."
},
- "showIdentitiesInVaultView": {
- "message": "Прикажите идентитете као предлоге за ауто-попуњавање у приказу сефа"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Увек приказуј идентитете као препоруке аутоматског попуњавања на приказу трезора"
},
"showIdentitiesCurrentTab": {
"message": "Прикажи идентитете на страници"
@@ -2325,7 +2331,7 @@
"description": "A category title describing the concept of web domains"
},
"blockedDomains": {
- "message": "Blocked domains"
+ "message": "Блокирани домени"
},
"excludedDomains": {
"message": "Изузети домени"
@@ -2337,13 +2343,13 @@
"message": "Bitwarden неће тражити да сачува податке за пријављивање за ове домене за све пријављене налоге. Морате освежити страницу да би промене ступиле на снагу."
},
"blockedDomainsDesc": {
- "message": "Autofill and other related features will not be offered for these websites. You must refresh the page for changes to take effect."
+ "message": "Аутоматско попуњавање и сродне функције неће бити понуђене за ове веб сајтове. Морате освежити страницу да би се измене примениле."
},
"autofillBlockedNoticeV2": {
- "message": "Autofill is blocked for this website."
+ "message": "Аутоматско попуњавање је блокирано за овај веб сајт."
},
"autofillBlockedNoticeGuidance": {
- "message": "Change this in settings"
+ "message": "Промените ово у подешавањима"
},
"websiteItemLabel": {
"message": "Сајт $number$ (УРЛ)",
@@ -2364,7 +2370,7 @@
}
},
"blockedDomainsSavedSuccess": {
- "message": "Blocked domain changes saved"
+ "message": "Измене блокираних домена су сачуване"
},
"excludedDomainsSavedSuccess": {
"message": "Изузете промене домена су сачуване"
@@ -2805,10 +2811,10 @@
"message": "Грешка"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Грешка при декрипцији"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden could not decrypt the vault item(s) listed below."
+ "message": "Bitwarden није могао да декриптује ставке из трезора наведене испод."
},
"contactCSToAvoidDataLossPart1": {
"message": "Contact customer success",
@@ -3976,10 +3982,10 @@
"message": "Приступни кључ је уклоњен"
},
"autofillSuggestions": {
- "message": "Autofill suggestions"
+ "message": "Предлози аутоматског попуњавања"
},
"itemSuggestions": {
- "message": "Suggested items"
+ "message": "Предложене ставке"
},
"autofillSuggestionsTip": {
"message": "Сачувајте ставку за пријаву за ову локацију за ауто-попуњавање"
@@ -4636,22 +4642,22 @@
"message": "Немате дозволу да уређујете ову ставку"
},
"biometricsStatusHelptextUnlockNeeded": {
- "message": "Biometric unlock is unavailable because PIN or password unlock is required first."
+ "message": "Биометријско откључавање није доступно јер је пре тога потребно унети ПИН или лозинку за откључавање."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "Биометријско откључавање тренутно није доступно."
},
"biometricsStatusHelptextAutoSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Биометријско откључавање није доступно због лоше подешених системских датотека."
},
"biometricsStatusHelptextManualSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Биометријско откључавање није доступно због лоше подешених системских датотека."
},
"biometricsStatusHelptextDesktopDisconnected": {
- "message": "Biometric unlock is unavailable because the Bitwarden desktop app is closed."
+ "message": "Биометријско откључавање није доступно јер је Bitwarden апликација на рачунару угашена."
},
"biometricsStatusHelptextNotEnabledInDesktop": {
- "message": "Biometric unlock is unavailable because it is not enabled for $EMAIL$ in the Bitwarden desktop app.",
+ "message": "Биометријско откључавање није доступно јер није омогућено за $EMAIL$ у Bitwarden апликацији на рачунару.",
"placeholders": {
"email": {
"content": "$1",
@@ -4660,7 +4666,7 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "Биометријско откључавање није доступно из непознатог разлога."
},
"authenticating": {
"message": "Аутентификација"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Врло широко"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Молим вас надоградите вашу апликацију на рачунару"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Да би сте користили биометријско откључавање, надоградите вашу апликацију на рачунару, или онемогућите откључавање отиском прста у подешавањима на рачунару."
}
}
diff --git a/apps/browser/src/_locales/sv/messages.json b/apps/browser/src/_locales/sv/messages.json
index 1927f12bc27..1019e2e84c4 100644
--- a/apps/browser/src/_locales/sv/messages.json
+++ b/apps/browser/src/_locales/sv/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verifiera identitet"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Ditt valv är låst. Verifiera din identitet för att fortsätta."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Visa kort på fliksida"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Lista kortobjekt på fliksidan för enkel automatisk fyllning."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Visa identiteter på fliksidan"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/te/messages.json b/apps/browser/src/_locales/te/messages.json
index a7913bbfc9b..69f276b06d3 100644
--- a/apps/browser/src/_locales/te/messages.json
+++ b/apps/browser/src/_locales/te/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Verify identity"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Your vault is locked. Verify your identity to continue."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Show cards on Tab page"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "List card items on the Tab page for easy autofill."
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Show identities on Tab page"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/th/messages.json b/apps/browser/src/_locales/th/messages.json
index a8a2585f42f..689f2f24f1d 100644
--- a/apps/browser/src/_locales/th/messages.json
+++ b/apps/browser/src/_locales/th/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "ยืนยันตัวตน"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "ตู้เซฟของคุณถูกล็อก ยืนยันตัวตนของคุณเพื่อดำเนินการต่อ"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
},
- "showCardsInVaultView": {
- "message": "Show cards as Autofill suggestions on Vault view"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "แสดงการ์ดบนหน้าแท็บ"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "บัตรรายการในหน้าแท็บเพื่อให้ป้อนอัตโนมัติได้ง่าย"
},
- "showIdentitiesInVaultView": {
- "message": "Show identities as Autofill suggestions on Vault view"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "แสดงตัวตนบนหน้าแท็บ"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/tr/messages.json b/apps/browser/src/_locales/tr/messages.json
index 34ad0f14483..5d41c146ab4 100644
--- a/apps/browser/src/_locales/tr/messages.json
+++ b/apps/browser/src/_locales/tr/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Kimliği doğrula"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Bu cihazı tanıyamadık. Kimliğinizi doğrulamak için e-postanıza gönderilen kodu girin."
+ },
+ "continueLoggingIn": {
+ "message": "Giriş yapmaya devam et"
+ },
"yourVaultIsLocked": {
"message": "Kasanız kilitli. Devam etmek için kimliğinizi doğrulayın."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Kasanızda bulunmayan kayıtların eklenmesini isteyip istemediğinizi sorar. Oturum açmış tüm hesaplar için geçerlidir."
},
- "showCardsInVaultView": {
- "message": "Kasa görünümünde kartları otomatik doldurma önerisi olarak göster"
+ "showCardsInVaultViewV2": {
+ "message": "Kasa görünümünde kartları her zaman otomatik doldurma önerisi olarak göster"
},
"showCardsCurrentTab": {
"message": "Sekme sayfasında kartları göster"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Kolay otomatik doldurma için sekme sayfasında kartları listele."
},
- "showIdentitiesInVaultView": {
- "message": "Kasa görünümünde kimlikleri otomatik doldurma önerisi olarak göster"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Kasa görünümünde kimlikleri her zaman otomatik doldurma önerisi olarak göster"
},
"showIdentitiesCurrentTab": {
"message": "Sekme sayfasında kimlikleri göster"
@@ -1466,7 +1472,7 @@
"description": "Represents the message for allowing the user to enable the autofill overlay"
},
"autofillSuggestionsSectionTitle": {
- "message": "Önerileri otomatik doldur"
+ "message": "Otomatik doldurma önerileri"
},
"showInlineMenuLabel": {
"message": "Form alanlarında otomatik doldurma önerilerini göster"
@@ -3976,7 +3982,7 @@
"message": "Geçiş anahtarı kaldırıldı"
},
"autofillSuggestions": {
- "message": "Önerileri otomatik doldur"
+ "message": "Otomatik doldurma önerileri"
},
"itemSuggestions": {
"message": "Önerilen kayıtlar"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Ekstra geniş"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Lütfen masaüstü uygulamanızı güncelleyin"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/uk/messages.json b/apps/browser/src/_locales/uk/messages.json
index a1ec52ee80e..adb1ccc6719 100644
--- a/apps/browser/src/_locales/uk/messages.json
+++ b/apps/browser/src/_locales/uk/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Виконати перевірку"
},
+ "weDontRecognizeThisDevice": {
+ "message": "Ми не розпізнаємо цей пристрій. Введіть код, надісланий на вашу електронну пошту, щоб підтвердити вашу особу."
+ },
+ "continueLoggingIn": {
+ "message": "Продовжити вхід"
+ },
"yourVaultIsLocked": {
"message": "Ваше сховище заблоковане. Для продовження виконайте перевірку."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Запитувати про додавання запису, якщо такого не знайдено у вашому сховищі. Застосовується для всіх облікових записів, до яких виконано вхід."
},
- "showCardsInVaultView": {
- "message": "Показувати картки як пропозиції автозаповнення в режимі перегляду сховища"
+ "showCardsInVaultViewV2": {
+ "message": "Завжди показувати картки як пропозиції автозаповнення в режимі перегляду сховища"
},
"showCardsCurrentTab": {
"message": "Показувати картки на вкладці"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Показувати список карток на сторінці вкладки для легкого автозаповнення."
},
- "showIdentitiesInVaultView": {
- "message": "Показувати посвідчення як пропозиції автозаповнення в режимі перегляду сховища"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Завжди показувати посвідчення як пропозиції автозаповнення в режимі перегляду сховища"
},
"showIdentitiesCurrentTab": {
"message": "Показувати посвідчення на вкладці"
@@ -2391,7 +2397,7 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDetails": {
- "message": "Надіслати подробиці",
+ "message": "Подробиці відправлення",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTypeText": {
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Дуже широке"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Оновіть свою комп'ютерну програму"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "Щоб використовувати біометричне розблокування, оновіть комп'ютерну програму, або вимкніть розблокування відбитком пальця в налаштуваннях системи."
}
}
diff --git a/apps/browser/src/_locales/vi/messages.json b/apps/browser/src/_locales/vi/messages.json
index b6668d8dc99..eb5075893cd 100644
--- a/apps/browser/src/_locales/vi/messages.json
+++ b/apps/browser/src/_locales/vi/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "Xác minh danh tính"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "Kho của bạn đã bị khóa. Xác minh danh tính của bạn để mở khoá."
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "Đưa ra lựa chọn để thêm một mục nếu không tìm thấy mục đó trong hòm của bạn. Áp dụng với mọi tài khoản đăng nhập trên thiết bị."
},
- "showCardsInVaultView": {
- "message": "Hiển thị các thẻ như các gợi ý tự động điền trên giao diện kho"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "Hiển thị thẻ trên trang Tab"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "Liệt kê các mục thẻ trên trang Tab để dễ dàng tự động điền."
},
- "showIdentitiesInVaultView": {
- "message": "Hiển thị các danh tính như các gợi ý tự động điền trên giao diện kho"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "Hiển thị danh tính trên trang Tab"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "Extra wide"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "Please update your desktop application"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
}
}
diff --git a/apps/browser/src/_locales/zh_CN/messages.json b/apps/browser/src/_locales/zh_CN/messages.json
index 8cd91d44a8a..ba4058b4a89 100644
--- a/apps/browser/src/_locales/zh_CN/messages.json
+++ b/apps/browser/src/_locales/zh_CN/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "验证身份"
},
+ "weDontRecognizeThisDevice": {
+ "message": "我们无法识别这个设备。请输入发送到您电子邮箱中的代码以验证您的身份。"
+ },
+ "continueLoggingIn": {
+ "message": "继续登录"
+ },
"yourVaultIsLocked": {
"message": "您的密码库已锁定。请先验证您的身份。"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "如果在密码库中找不到项目,询问添加一个。适用于所有已登录的账户。"
},
- "showCardsInVaultView": {
- "message": "在密码库视图中将支付卡显示为自动填充建议"
+ "showCardsInVaultViewV2": {
+ "message": "在密码库视图中将支付卡始终显示为自动填充建议"
},
"showCardsCurrentTab": {
"message": "在标签页上显示支付卡"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "在标签页上列出支付卡项目,以便于自动填充。"
},
- "showIdentitiesInVaultView": {
- "message": "在密码库视图中将身份显示为自动填充建议"
+ "showIdentitiesInVaultViewV2": {
+ "message": "在密码库视图中将身份始终显示为自动填充建议"
},
"showIdentitiesCurrentTab": {
"message": "在标签页上显示身份"
@@ -2325,7 +2331,7 @@
"description": "A category title describing the concept of web domains"
},
"blockedDomains": {
- "message": "屏蔽域名"
+ "message": "屏蔽的域名"
},
"excludedDomains": {
"message": "排除域名"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "超宽"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "请更新您的桌面应用程序"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "要使用生物识别解锁,请更新您的桌面应用程序,或在桌面设置中禁用指纹解锁。"
}
}
diff --git a/apps/browser/src/_locales/zh_TW/messages.json b/apps/browser/src/_locales/zh_TW/messages.json
index 13edf4920de..8f38bf44f7f 100644
--- a/apps/browser/src/_locales/zh_TW/messages.json
+++ b/apps/browser/src/_locales/zh_TW/messages.json
@@ -647,6 +647,12 @@
"verifyIdentity": {
"message": "驗證身份"
},
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"yourVaultIsLocked": {
"message": "您的密碼庫已鎖定。請驗證身分以繼續。"
},
@@ -986,8 +992,8 @@
"addLoginNotificationDescAlt": {
"message": "如果在您的密碼庫中找不到項目,則詢問是否新增項目。適用於所有已登入的帳戶。"
},
- "showCardsInVaultView": {
- "message": "在密碼庫介面中顯示支付卡自動填入建議"
+ "showCardsInVaultViewV2": {
+ "message": "Always show cards as Autofill suggestions on Vault view"
},
"showCardsCurrentTab": {
"message": "於分頁頁面顯示支付卡"
@@ -995,8 +1001,8 @@
"showCardsCurrentTabDesc": {
"message": "於分頁頁面顯示信用卡以便於自動填入。"
},
- "showIdentitiesInVaultView": {
- "message": "在密碼庫介面中顯示身分自動填入建議"
+ "showIdentitiesInVaultViewV2": {
+ "message": "Always show identities as Autofill suggestions on Vault view"
},
"showIdentitiesCurrentTab": {
"message": "於分頁頁面顯示身分"
@@ -4868,5 +4874,11 @@
},
"extraWide": {
"message": "更寬"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogTitle": {
+ "message": "請更新您的桌面應用程式"
+ },
+ "updateDesktopAppOrDisableFingerprintDialogMessage": {
+ "message": "為了使用生物辨識解鎖,請更新您的桌面應用程式,或在設定中停用指紋解鎖。"
}
}
diff --git a/apps/browser/src/auth/popup/two-factor.component.ts b/apps/browser/src/auth/popup/two-factor.component.ts
index a2f9cd9d0fc..43230bd23f4 100644
--- a/apps/browser/src/auth/popup/two-factor.component.ts
+++ b/apps/browser/src/auth/popup/two-factor.component.ts
@@ -33,7 +33,7 @@ import { BrowserApi } from "../../platform/browser/browser-api";
import { ZonedMessageListenerService } from "../../platform/browser/zoned-message-listener.service";
import BrowserPopupUtils from "../../platform/popup/browser-popup-utils";
-import { closeTwoFactorAuthPopout } from "./utils/auth-popout-window";
+import { closeTwoFactorAuthWebAuthnPopout } from "./utils/auth-popout-window";
@Component({
selector: "app-two-factor",
@@ -171,7 +171,7 @@ export class TwoFactorComponent extends BaseTwoFactorComponent implements OnInit
// We don't need this window anymore because the intent is for the user to be left
// on the web vault screen which tells them to continue in the browser extension (sidebar or popup)
- await closeTwoFactorAuthPopout();
+ await closeTwoFactorAuthWebAuthnPopout();
};
}
});
diff --git a/apps/browser/src/auth/popup/utils/auth-popout-window.spec.ts b/apps/browser/src/auth/popup/utils/auth-popout-window.spec.ts
index 9e7d69fad97..deb71f73cd6 100644
--- a/apps/browser/src/auth/popup/utils/auth-popout-window.spec.ts
+++ b/apps/browser/src/auth/popup/utils/auth-popout-window.spec.ts
@@ -7,8 +7,9 @@ import {
openUnlockPopout,
closeUnlockPopout,
openSsoAuthResultPopout,
- openTwoFactorAuthPopout,
- closeTwoFactorAuthPopout,
+ openTwoFactorAuthWebAuthnPopout,
+ closeTwoFactorAuthWebAuthnPopout,
+ closeSsoAuthResultPopout,
} from "./auth-popout-window";
describe("AuthPopoutWindow", () => {
@@ -97,22 +98,30 @@ describe("AuthPopoutWindow", () => {
});
});
- describe("openTwoFactorAuthPopout", () => {
- it("opens a window that facilitates two factor authentication", async () => {
- await openTwoFactorAuthPopout({ data: "data", remember: "remember" });
+ describe("closeSsoAuthResultPopout", () => {
+ it("closes the SSO authentication result popout window", async () => {
+ await closeSsoAuthResultPopout();
+
+ expect(closeSingleActionPopoutSpy).toHaveBeenCalledWith(AuthPopoutType.ssoAuthResult);
+ });
+ });
+
+ describe("openTwoFactorAuthWebAuthnPopout", () => {
+ it("opens a window that facilitates two factor authentication via WebAuthn", async () => {
+ await openTwoFactorAuthWebAuthnPopout({ data: "data", remember: "remember" });
expect(openPopoutSpy).toHaveBeenCalledWith(
"popup/index.html#/2fa;webAuthnResponse=data;remember=remember",
- { singleActionKey: AuthPopoutType.twoFactorAuth },
+ { singleActionKey: AuthPopoutType.twoFactorAuthWebAuthn },
);
});
});
- describe("closeTwoFactorAuthPopout", () => {
- it("closes the two-factor authentication window", async () => {
- await closeTwoFactorAuthPopout();
+ describe("closeTwoFactorAuthWebAuthnPopout", () => {
+ it("closes the two-factor authentication WebAuthn window", async () => {
+ await closeTwoFactorAuthWebAuthnPopout();
- expect(closeSingleActionPopoutSpy).toHaveBeenCalledWith(AuthPopoutType.twoFactorAuth);
+ expect(closeSingleActionPopoutSpy).toHaveBeenCalledWith(AuthPopoutType.twoFactorAuthWebAuthn);
});
});
});
diff --git a/apps/browser/src/auth/popup/utils/auth-popout-window.ts b/apps/browser/src/auth/popup/utils/auth-popout-window.ts
index 5a0e577807f..8d6e7fa92cd 100644
--- a/apps/browser/src/auth/popup/utils/auth-popout-window.ts
+++ b/apps/browser/src/auth/popup/utils/auth-popout-window.ts
@@ -6,7 +6,7 @@ import BrowserPopupUtils from "../../../platform/popup/browser-popup-utils";
const AuthPopoutType = {
unlockExtension: "auth_unlockExtension",
ssoAuthResult: "auth_ssoAuthResult",
- twoFactorAuth: "auth_twoFactorAuth",
+ twoFactorAuthWebAuthn: "auth_twoFactorAuthWebAuthn",
} as const;
const extensionUnlockUrls = new Set([
chrome.runtime.getURL("popup/index.html#/lock"),
@@ -60,26 +60,37 @@ async function openSsoAuthResultPopout(resultData: { code: string; state: string
}
/**
- * Opens a window that facilitates two-factor authentication.
+ * Closes the SSO authentication result popout window.
+ */
+async function closeSsoAuthResultPopout() {
+ await BrowserPopupUtils.closeSingleActionPopout(AuthPopoutType.ssoAuthResult);
+}
+
+/**
+ * Opens a popout that facilitates two-factor authentication via WebAuthn.
*
- * @param twoFactorAuthData - The data from the two-factor authentication.
+ * @param twoFactorAuthWebAuthnData - The data to send ot the popout via query param.
+ * It includes the WebAuthn response and whether to save the 2FA remember me token or not.
*/
-async function openTwoFactorAuthPopout(twoFactorAuthData: { data: string; remember: string }) {
- const { data, remember } = twoFactorAuthData;
+async function openTwoFactorAuthWebAuthnPopout(twoFactorAuthWebAuthnData: {
+ data: string;
+ remember: string;
+}) {
+ const { data, remember } = twoFactorAuthWebAuthnData;
const params =
`webAuthnResponse=${encodeURIComponent(data)};` + `remember=${encodeURIComponent(remember)}`;
const twoFactorUrl = `popup/index.html#/2fa;${params}`;
await BrowserPopupUtils.openPopout(twoFactorUrl, {
- singleActionKey: AuthPopoutType.twoFactorAuth,
+ singleActionKey: AuthPopoutType.twoFactorAuthWebAuthn,
});
}
/**
* Closes the two-factor authentication popout window.
*/
-async function closeTwoFactorAuthPopout() {
- await BrowserPopupUtils.closeSingleActionPopout(AuthPopoutType.twoFactorAuth);
+async function closeTwoFactorAuthWebAuthnPopout() {
+ await BrowserPopupUtils.closeSingleActionPopout(AuthPopoutType.twoFactorAuthWebAuthn);
}
export {
@@ -87,6 +98,7 @@ export {
openUnlockPopout,
closeUnlockPopout,
openSsoAuthResultPopout,
- openTwoFactorAuthPopout,
- closeTwoFactorAuthPopout,
+ closeSsoAuthResultPopout,
+ openTwoFactorAuthWebAuthnPopout,
+ closeTwoFactorAuthWebAuthnPopout,
};
diff --git a/apps/browser/src/autofill/popup/settings/autofill.component.html b/apps/browser/src/autofill/popup/settings/autofill.component.html
index eeae0a85e3f..e8299f01166 100644
--- a/apps/browser/src/autofill/popup/settings/autofill.component.html
+++ b/apps/browser/src/autofill/popup/settings/autofill.component.html
@@ -118,7 +118,7 @@
{{ "autofillSuggestionsSectionTitle" | i18n }}
(change)="updateShowCardsCurrentTab()"
[(ngModel)]="showCardsCurrentTab"
/>
- {{ "showCardsInVaultView" | i18n }}
+ {{ "showCardsInVaultViewV2" | i18n }}
{{ "autofillSuggestionsSectionTitle" | i18n }}
[(ngModel)]="showIdentitiesCurrentTab"
/>
- {{ "showIdentitiesInVaultView" | i18n }}
+ {{ "showIdentitiesInVaultViewV2" | i18n }}
diff --git a/apps/browser/src/autofill/services/collect-autofill-content.service.spec.ts b/apps/browser/src/autofill/services/collect-autofill-content.service.spec.ts
index f15c3e4c389..7471c298917 100644
--- a/apps/browser/src/autofill/services/collect-autofill-content.service.spec.ts
+++ b/apps/browser/src/autofill/services/collect-autofill-content.service.spec.ts
@@ -21,7 +21,7 @@ jest.mock("../utils", () => {
const utils = jest.requireActual("../utils");
return {
...utils,
- debounce: jest.fn((fn, wait) => setTimeout(() => fn(), wait)),
+ debounce: jest.fn((fn) => fn),
};
});
diff --git a/apps/browser/src/autofill/services/collect-autofill-content.service.ts b/apps/browser/src/autofill/services/collect-autofill-content.service.ts
index 8ccf726aa69..b858af25fae 100644
--- a/apps/browser/src/autofill/services/collect-autofill-content.service.ts
+++ b/apps/browser/src/autofill/services/collect-autofill-content.service.ts
@@ -947,8 +947,7 @@ export class CollectAutofillContentService implements CollectAutofillContentServ
}
if (!this.mutationsQueue.length) {
- // Collect all mutations and debounce the processing of those mutations by 100ms to ensure we don't process too many mutations at once.
- debounce(this.processMutations, 100);
+ requestIdleCallbackPolyfill(debounce(this.processMutations, 100), { timeout: 500 });
}
this.mutationsQueue.push(mutations);
};
diff --git a/apps/browser/src/autofill/utils/index.ts b/apps/browser/src/autofill/utils/index.ts
index 0e102dcfd99..614a5b014f2 100644
--- a/apps/browser/src/autofill/utils/index.ts
+++ b/apps/browser/src/autofill/utils/index.ts
@@ -37,7 +37,9 @@ export function requestIdleCallbackPolyfill(
return globalThis.requestIdleCallback(() => callback(), options);
}
- return globalThis.setTimeout(() => callback(), 1);
+ const timeoutDelay = options?.timeout || 1;
+
+ return globalThis.setTimeout(() => callback(), timeoutDelay);
}
/**
diff --git a/apps/browser/src/background/main.background.ts b/apps/browser/src/background/main.background.ts
index b26360407e1..192455f9691 100644
--- a/apps/browser/src/background/main.background.ts
+++ b/apps/browser/src/background/main.background.ts
@@ -92,6 +92,7 @@ import { I18nService as I18nServiceAbstraction } from "@bitwarden/common/platfor
import { KeyGenerationService as KeyGenerationServiceAbstraction } from "@bitwarden/common/platform/abstractions/key-generation.service";
import { LogService as LogServiceAbstraction } from "@bitwarden/common/platform/abstractions/log.service";
import { PlatformUtilsService as PlatformUtilsServiceAbstraction } from "@bitwarden/common/platform/abstractions/platform-utils.service";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { SdkService } from "@bitwarden/common/platform/abstractions/sdk/sdk.service";
import { StateService as StateServiceAbstraction } from "@bitwarden/common/platform/abstractions/state.service";
import {
@@ -125,6 +126,7 @@ import { FileUploadService } from "@bitwarden/common/platform/services/file-uplo
import { KeyGenerationService } from "@bitwarden/common/platform/services/key-generation.service";
import { MigrationBuilderService } from "@bitwarden/common/platform/services/migration-builder.service";
import { MigrationRunner } from "@bitwarden/common/platform/services/migration-runner";
+import { DefaultSdkClientFactory } from "@bitwarden/common/platform/services/sdk/default-sdk-client-factory";
import { DefaultSdkService } from "@bitwarden/common/platform/services/sdk/default-sdk.service";
import { NoopSdkClientFactory } from "@bitwarden/common/platform/services/sdk/noop-sdk-client-factory";
import { StateService } from "@bitwarden/common/platform/services/state.service";
@@ -260,7 +262,7 @@ import { LocalBackedSessionStorageService } from "../platform/services/local-bac
import { BackgroundPlatformUtilsService } from "../platform/services/platform-utils/background-platform-utils.service";
import { BrowserPlatformUtilsService } from "../platform/services/platform-utils/browser-platform-utils.service";
import { PopupViewCacheBackgroundService } from "../platform/services/popup-view-cache-background.service";
-import { BrowserSdkClientFactory } from "../platform/services/sdk/browser-sdk-client-factory";
+import { BrowserSdkLoadService } from "../platform/services/sdk/browser-sdk-load.service";
import { BackgroundTaskSchedulerService } from "../platform/services/task-scheduler/background-task-scheduler.service";
import { BackgroundMemoryStorageService } from "../platform/storage/background-memory-storage.service";
import { BrowserStorageServiceProvider } from "../platform/storage/browser-storage-service.provider";
@@ -379,6 +381,7 @@ export default class MainBackground {
themeStateService: DefaultThemeStateService;
autoSubmitLoginBackground: AutoSubmitLoginBackground;
sdkService: SdkService;
+ sdkLoadService: SdkLoadService;
cipherAuthorizationService: CipherAuthorizationService;
inlineMenuFieldQualificationService: InlineMenuFieldQualificationService;
@@ -730,8 +733,9 @@ export default class MainBackground {
);
const sdkClientFactory = flagEnabled("sdk")
- ? new BrowserSdkClientFactory(this.logService)
+ ? new DefaultSdkClientFactory()
: new NoopSdkClientFactory();
+ this.sdkLoadService = new BrowserSdkLoadService(this.logService);
this.sdkService = new DefaultSdkService(
sdkClientFactory,
this.environmentService,
@@ -1257,6 +1261,7 @@ export default class MainBackground {
async bootstrap() {
this.containerService.attachToGlobal(self);
+ await this.sdkLoadService.load();
// Only the "true" background should run migrations
await this.stateService.init({ runMigrations: true });
diff --git a/apps/browser/src/background/runtime.background.ts b/apps/browser/src/background/runtime.background.ts
index 38bb2ec50c9..2f038946bf9 100644
--- a/apps/browser/src/background/runtime.background.ts
+++ b/apps/browser/src/background/runtime.background.ts
@@ -22,7 +22,7 @@ import { BiometricsCommands } from "@bitwarden/key-management";
import {
closeUnlockPopout,
openSsoAuthResultPopout,
- openTwoFactorAuthPopout,
+ openTwoFactorAuthWebAuthnPopout,
} from "../auth/popup/utils/auth-popout-window";
import { LockedVaultPendingNotificationsData } from "../autofill/background/abstractions/notification.background";
import { AutofillService } from "../autofill/services/abstractions/autofill.service";
@@ -333,7 +333,7 @@ export default class RuntimeBackground {
return;
}
- await openTwoFactorAuthPopout(msg);
+ await openTwoFactorAuthWebAuthnPopout(msg);
break;
}
case "reloadPopup":
diff --git a/apps/browser/src/manifest.json b/apps/browser/src/manifest.json
index 016bf6dfe4b..90ae271fd14 100644
--- a/apps/browser/src/manifest.json
+++ b/apps/browser/src/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "__MSG_appName__",
- "version": "2025.1.1",
+ "version": "2025.1.4",
"description": "__MSG_extDesc__",
"default_locale": "en",
"author": "Bitwarden Inc.",
diff --git a/apps/browser/src/manifest.v3.json b/apps/browser/src/manifest.v3.json
index 104036140bd..988b6eeb9c5 100644
--- a/apps/browser/src/manifest.v3.json
+++ b/apps/browser/src/manifest.v3.json
@@ -3,7 +3,7 @@
"minimum_chrome_version": "102.0",
"name": "__MSG_extName__",
"short_name": "__MSG_appName__",
- "version": "2025.1.1",
+ "version": "2025.1.4",
"description": "__MSG_extDesc__",
"default_locale": "en",
"author": "Bitwarden Inc.",
diff --git a/apps/browser/src/platform/services/sdk/browser-sdk-client-factory.ts b/apps/browser/src/platform/services/sdk/browser-sdk-load.service.ts
similarity index 55%
rename from apps/browser/src/platform/services/sdk/browser-sdk-client-factory.ts
rename to apps/browser/src/platform/services/sdk/browser-sdk-load.service.ts
index 0499f34a4ae..ca41127407c 100644
--- a/apps/browser/src/platform/services/sdk/browser-sdk-client-factory.ts
+++ b/apps/browser/src/platform/services/sdk/browser-sdk-load.service.ts
@@ -1,11 +1,12 @@
-// FIXME: Update this file to be type safe and remove this and next line
-// @ts-strict-ignore
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
-import { SdkClientFactory } from "@bitwarden/common/platform/abstractions/sdk/sdk-client-factory";
-import type { BitwardenClient } from "@bitwarden/sdk-internal";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { BrowserApi } from "../../browser/browser-api";
+export type GlobalWithWasmInit = typeof globalThis & {
+ initSdk: () => void;
+};
+
// https://stackoverflow.com/a/47880734
const supported = (() => {
try {
@@ -17,9 +18,7 @@ const supported = (() => {
return new WebAssembly.Instance(module) instanceof WebAssembly.Instance;
}
}
- // FIXME: Remove when updating file. Eslint update
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- } catch (e) {
+ } catch {
// ignore
}
return false;
@@ -33,54 +32,42 @@ let loadingPromise: Promise | undefined;
if (BrowserApi.isManifestVersion(3)) {
if (supported) {
// eslint-disable-next-line no-console
- console.debug("WebAssembly is supported in this environment");
+ console.info("WebAssembly is supported in this environment");
loadingPromise = import("./wasm");
} else {
// eslint-disable-next-line no-console
- console.debug("WebAssembly is not supported in this environment");
+ console.info("WebAssembly is not supported in this environment");
loadingPromise = import("./fallback");
}
}
// Manifest v2 expects dynamic imports to prevent timing issues.
-async function load() {
+async function importModule(): Promise {
if (BrowserApi.isManifestVersion(3)) {
// Ensure we have loaded the module
await loadingPromise;
- return;
- }
-
- if (supported) {
+ } else if (supported) {
// eslint-disable-next-line no-console
- console.debug("WebAssembly is supported in this environment");
+ console.info("WebAssembly is supported in this environment");
await import("./wasm");
} else {
// eslint-disable-next-line no-console
- console.debug("WebAssembly is not supported in this environment");
+ console.info("WebAssembly is not supported in this environment");
await import("./fallback");
}
+
+ // the wasm and fallback imports mutate globalThis to add the initSdk function
+ return (globalThis as GlobalWithWasmInit).initSdk;
}
-/**
- * SDK client factory with a js fallback for when WASM is not supported.
- *
- * Works both in popup and service worker.
- */
-export class BrowserSdkClientFactory implements SdkClientFactory {
- constructor(private logService: LogService) {}
+export class BrowserSdkLoadService implements SdkLoadService {
+ constructor(readonly logService: LogService) {}
- async createSdkClient(
- ...args: ConstructorParameters
- ): Promise {
+ async load(): Promise {
const startTime = performance.now();
- await load();
-
+ await importModule().then((initSdk) => initSdk());
const endTime = performance.now();
- const instance = (globalThis as any).init_sdk(...args);
-
- this.logService.info("WASM SDK loaded in", Math.round(endTime - startTime), "ms");
-
- return instance;
+ this.logService.info(`WASM SDK loaded in ${Math.round(endTime - startTime)}ms`);
}
}
diff --git a/apps/browser/src/platform/services/sdk/fallback.ts b/apps/browser/src/platform/services/sdk/fallback.ts
index 82d292fc9ee..cee3598feda 100644
--- a/apps/browser/src/platform/services/sdk/fallback.ts
+++ b/apps/browser/src/platform/services/sdk/fallback.ts
@@ -1,8 +1,8 @@
import * as sdk from "@bitwarden/sdk-internal";
import * as wasm from "@bitwarden/sdk-internal/bitwarden_wasm_internal_bg.wasm.js";
-(globalThis as any).init_sdk = (...args: ConstructorParameters) => {
- (sdk as any).init(wasm);
+import { GlobalWithWasmInit } from "./browser-sdk-load.service";
- return new sdk.BitwardenClient(...args);
+(globalThis as GlobalWithWasmInit).initSdk = () => {
+ (sdk as any).init(wasm);
};
diff --git a/apps/browser/src/platform/services/sdk/wasm.ts b/apps/browser/src/platform/services/sdk/wasm.ts
index 1977a171e23..de2eeffd294 100644
--- a/apps/browser/src/platform/services/sdk/wasm.ts
+++ b/apps/browser/src/platform/services/sdk/wasm.ts
@@ -1,8 +1,8 @@
import * as sdk from "@bitwarden/sdk-internal";
import * as wasm from "@bitwarden/sdk-internal/bitwarden_wasm_internal_bg.wasm";
-(globalThis as any).init_sdk = (...args: ConstructorParameters) => {
- (sdk as any).init(wasm);
+import { GlobalWithWasmInit } from "./browser-sdk-load.service";
- return new sdk.BitwardenClient(...args);
+(globalThis as GlobalWithWasmInit).initSdk = () => {
+ (sdk as any).init(wasm);
};
diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts
index b831eef0baa..9473dc63bad 100644
--- a/apps/browser/src/popup/app-routing.module.ts
+++ b/apps/browser/src/popup/app-routing.module.ts
@@ -1,21 +1,23 @@
import { Injectable, NgModule } from "@angular/core";
import { ActivatedRouteSnapshot, RouteReuseStrategy, RouterModule, Routes } from "@angular/router";
+import { AuthenticationTimeoutComponent } from "@bitwarden/angular/auth/components/authentication-timeout.component";
import {
EnvironmentSelectorComponent,
EnvironmentSelectorRouteData,
ExtensionDefaultOverlayPosition,
} from "@bitwarden/angular/auth/components/environment-selector.component";
-import { TwoFactorTimeoutComponent } from "@bitwarden/angular/auth/components/two-factor-auth/two-factor-auth-expired.component";
import { unauthUiRefreshRedirect } from "@bitwarden/angular/auth/functions/unauth-ui-refresh-redirect";
import { unauthUiRefreshSwap } from "@bitwarden/angular/auth/functions/unauth-ui-refresh-route-swap";
import {
authGuard,
lockGuard,
+ activeAuthGuard,
redirectGuard,
tdeDecryptionRequiredGuard,
unauthGuardFn,
} from "@bitwarden/angular/auth/guards";
+import { canAccessFeature } from "@bitwarden/angular/platform/guard/feature-flag.guard";
import { twofactorRefactorSwap } from "@bitwarden/angular/utils/two-factor-component-refactor-route-swap";
import { NewDeviceVerificationNoticeGuard } from "@bitwarden/angular/vault/guards";
import {
@@ -39,7 +41,10 @@ import {
DevicesIcon,
SsoComponent,
TwoFactorTimeoutIcon,
+ NewDeviceVerificationComponent,
+ DeviceVerificationIcon,
} from "@bitwarden/auth/angular";
+import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { LockComponent } from "@bitwarden/key-management/angular";
import {
NewDeviceVerificationNoticePageOneComponent,
@@ -172,12 +177,12 @@ const routes: Routes = [
component: ExtensionAnonLayoutWrapperComponent,
children: [
{
- path: "2fa-timeout",
+ path: "authentication-timeout",
canActivate: [unauthGuardFn(unauthRouteOverrides)],
children: [
{
path: "",
- component: TwoFactorTimeoutComponent,
+ component: AuthenticationTimeoutComponent,
},
],
data: {
@@ -230,6 +235,27 @@ const routes: Routes = [
],
},
),
+ {
+ path: "device-verification",
+ component: ExtensionAnonLayoutWrapperComponent,
+ canActivate: [
+ canAccessFeature(FeatureFlag.NewDeviceVerification),
+ unauthGuardFn(),
+ activeAuthGuard(),
+ ],
+ children: [{ path: "", component: NewDeviceVerificationComponent }],
+ data: {
+ pageIcon: DeviceVerificationIcon,
+ pageTitle: {
+ key: "verifyIdentity",
+ },
+ pageSubtitle: {
+ key: "weDontRecognizeThisDevice",
+ },
+ showBackButton: true,
+ elevation: 1,
+ } satisfies RouteDataProperties & ExtensionAnonLayoutWrapperData,
+ },
{
path: "set-password",
component: SetPasswordComponent,
diff --git a/apps/browser/src/popup/services/init.service.ts b/apps/browser/src/popup/services/init.service.ts
index 24661438495..069ebf4020d 100644
--- a/apps/browser/src/popup/services/init.service.ts
+++ b/apps/browser/src/popup/services/init.service.ts
@@ -6,6 +6,7 @@ import { TwoFactorService } from "@bitwarden/common/auth/abstractions/two-factor
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { LogService as LogServiceAbstraction } from "@bitwarden/common/platform/abstractions/log.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
import { BrowserApi } from "../../platform/browser/browser-api";
@@ -22,11 +23,13 @@ export class InitService {
private twoFactorService: TwoFactorService,
private logService: LogServiceAbstraction,
private themingService: AbstractThemingService,
+ private sdkLoadService: SdkLoadService,
@Inject(DOCUMENT) private document: Document,
) {}
init() {
return async () => {
+ await this.sdkLoadService.load();
await this.stateService.init({ runMigrations: false }); // Browser background is responsible for migrations
await this.i18nService.init();
this.twoFactorService.init();
diff --git a/apps/browser/src/popup/services/services.module.ts b/apps/browser/src/popup/services/services.module.ts
index 20cd1d05b05..67ed8391de3 100644
--- a/apps/browser/src/popup/services/services.module.ts
+++ b/apps/browser/src/popup/services/services.module.ts
@@ -70,6 +70,7 @@ import { LogService } from "@bitwarden/common/platform/abstractions/log.service"
import { MessagingService as MessagingServiceAbstraction } from "@bitwarden/common/platform/abstractions/messaging.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { SdkClientFactory } from "@bitwarden/common/platform/abstractions/sdk/sdk-client-factory";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
import {
AbstractStorageService,
@@ -82,6 +83,7 @@ import { flagEnabled } from "@bitwarden/common/platform/misc/flags";
import { TaskSchedulerService } from "@bitwarden/common/platform/scheduling";
import { ConsoleLogService } from "@bitwarden/common/platform/services/console-log.service";
import { ContainerService } from "@bitwarden/common/platform/services/container.service";
+import { DefaultSdkClientFactory } from "@bitwarden/common/platform/services/sdk/default-sdk-client-factory";
import { NoopSdkClientFactory } from "@bitwarden/common/platform/services/sdk/noop-sdk-client-factory";
import { StorageServiceProvider } from "@bitwarden/common/platform/services/storage-service.provider";
import { WebCryptoFunctionService } from "@bitwarden/common/platform/services/web-crypto-function.service";
@@ -144,7 +146,7 @@ import BrowserMemoryStorageService from "../../platform/services/browser-memory-
import { BrowserScriptInjectorService } from "../../platform/services/browser-script-injector.service";
import I18nService from "../../platform/services/i18n.service";
import { ForegroundPlatformUtilsService } from "../../platform/services/platform-utils/foreground-platform-utils.service";
-import { BrowserSdkClientFactory } from "../../platform/services/sdk/browser-sdk-client-factory";
+import { BrowserSdkLoadService } from "../../platform/services/sdk/browser-sdk-load.service";
import { ForegroundTaskSchedulerService } from "../../platform/services/task-scheduler/foreground-task-scheduler.service";
import { BrowserStorageServiceProvider } from "../../platform/storage/browser-storage-service.provider";
import { ForegroundMemoryStorageService } from "../../platform/storage/foreground-memory-storage.service";
@@ -566,11 +568,16 @@ const safeProviders: SafeProvider[] = [
deps: [MessageSender, MessageListener],
}),
safeProvider({
- provide: SdkClientFactory,
- useFactory: (logService: LogService) =>
- flagEnabled("sdk") ? new BrowserSdkClientFactory(logService) : new NoopSdkClientFactory(),
+ provide: SdkLoadService,
+ useClass: BrowserSdkLoadService,
deps: [LogService],
}),
+ safeProvider({
+ provide: SdkClientFactory,
+ useFactory: () =>
+ flagEnabled("sdk") ? new DefaultSdkClientFactory() : new NoopSdkClientFactory(),
+ deps: [],
+ }),
safeProvider({
provide: LoginEmailService,
useClass: LoginEmailService,
diff --git a/apps/browser/src/services/families-policy.service.ts b/apps/browser/src/services/families-policy.service.ts
index 887e8836953..755d3e84591 100644
--- a/apps/browser/src/services/families-policy.service.ts
+++ b/apps/browser/src/services/families-policy.service.ts
@@ -47,7 +47,7 @@ export class FamiliesPolicyService {
map((organizations) => organizations.find((org) => org.canManageSponsorships)?.id),
switchMap((enterpriseOrgId) =>
this.policyService
- .getAll$(PolicyType.FreeFamiliesSponsorshipPolicy)
+ .getAll$(PolicyType.FreeFamiliesSponsorshipPolicy, userId)
.pipe(
map(
(policies) =>
diff --git a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.html b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.html
index a46f5a6955b..152c500d6ca 100644
--- a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.html
+++ b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.html
@@ -26,5 +26,15 @@
+
+
diff --git a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.spec.ts b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.spec.ts
index ebfb1ff765f..3252f030fc3 100644
--- a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.spec.ts
+++ b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.spec.ts
@@ -1,17 +1,19 @@
import { ComponentFixture, fakeAsync, TestBed, tick } from "@angular/core/testing";
import { ActivatedRoute, Router } from "@angular/router";
import { mock, MockProxy } from "jest-mock-extended";
-import { BehaviorSubject } from "rxjs";
+import { BehaviorSubject, Observable } from "rxjs";
import { EventCollectionService } from "@bitwarden/common/abstractions/event/event-collection.service";
import { EventType } from "@bitwarden/common/enums";
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
+import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { CipherType } from "@bitwarden/common/vault/enums";
import { Cipher } from "@bitwarden/common/vault/models/domain/cipher";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherAuthorizationService } from "@bitwarden/common/vault/services/cipher-authorization.service";
import { AddEditCipherInfo } from "@bitwarden/common/vault/types/add-edit-cipher-info";
import {
CipherFormConfig,
@@ -40,7 +42,7 @@ describe("AddEditV2Component", () => {
const buildConfigResponse = { originalCipher: {} } as CipherFormConfig;
const buildConfig = jest.fn((mode: CipherFormMode) =>
- Promise.resolve({ mode, ...buildConfigResponse }),
+ Promise.resolve({ ...buildConfigResponse, mode }),
);
const queryParams$ = new BehaviorSubject({});
const disable = jest.fn();
@@ -55,9 +57,10 @@ describe("AddEditV2Component", () => {
back.mockClear();
collect.mockClear();
- addEditCipherInfo$ = new BehaviorSubject(null);
+ addEditCipherInfo$ = new BehaviorSubject(null);
cipherServiceMock = mock();
- cipherServiceMock.addEditCipherInfo$ = addEditCipherInfo$.asObservable();
+ cipherServiceMock.addEditCipherInfo$ =
+ addEditCipherInfo$.asObservable() as Observable;
await TestBed.configureTestingModule({
imports: [AddEditV2Component],
@@ -71,6 +74,13 @@ describe("AddEditV2Component", () => {
{ provide: I18nService, useValue: { t: (key: string) => key } },
{ provide: CipherService, useValue: cipherServiceMock },
{ provide: EventCollectionService, useValue: { collect } },
+ { provide: LogService, useValue: mock() },
+ {
+ provide: CipherAuthorizationService,
+ useValue: {
+ canDeleteCipher$: jest.fn().mockReturnValue(true),
+ },
+ },
],
})
.overrideProvider(CipherFormConfigService, {
@@ -92,7 +102,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(buildConfig.mock.lastCall[0]).toBe("add");
+ expect(buildConfig.mock.lastCall![0]).toBe("add");
expect(component.config.mode).toBe("add");
}));
@@ -101,7 +111,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(buildConfig.mock.lastCall[0]).toBe("clone");
+ expect(buildConfig.mock.lastCall![0]).toBe("clone");
expect(component.config.mode).toBe("clone");
}));
@@ -111,7 +121,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(buildConfig.mock.lastCall[0]).toBe("edit");
+ expect(buildConfig.mock.lastCall![0]).toBe("edit");
expect(component.config.mode).toBe("edit");
}));
@@ -121,7 +131,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(buildConfig.mock.lastCall[0]).toBe("edit");
+ expect(buildConfig.mock.lastCall![0]).toBe("edit");
expect(component.config.mode).toBe("partial-edit");
}));
});
@@ -218,7 +228,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(component.config.initialValues.username).toBe("identity-username");
+ expect(component.config.initialValues!.username).toBe("identity-username");
}));
it("overrides query params with `addEditCipherInfo` values", fakeAsync(() => {
@@ -231,7 +241,7 @@ describe("AddEditV2Component", () => {
tick();
- expect(component.config.initialValues.name).toBe("AddEditCipherName");
+ expect(component.config.initialValues!.name).toBe("AddEditCipherName");
}));
it("clears `addEditCipherInfo` after initialization", fakeAsync(() => {
@@ -326,4 +336,30 @@ describe("AddEditV2Component", () => {
expect(back).toHaveBeenCalled();
});
});
+
+ describe("delete", () => {
+ it("dialogService openSimpleDialog called when deleteBtn is hit", async () => {
+ const dialogSpy = jest
+ .spyOn(component["dialogService"], "openSimpleDialog")
+ .mockResolvedValue(true);
+
+ await component.delete();
+ expect(dialogSpy).toHaveBeenCalled();
+ });
+
+ it("should call deleteCipher when user confirms deletion", async () => {
+ const deleteCipherSpy = jest.spyOn(component as any, "deleteCipher");
+ jest.spyOn(component["dialogService"], "openSimpleDialog").mockResolvedValue(true);
+
+ await component.delete();
+ expect(deleteCipherSpy).toHaveBeenCalled();
+ });
+
+ it("navigates to vault tab after deletion", async () => {
+ jest.spyOn(component["dialogService"], "openSimpleDialog").mockResolvedValue(true);
+ await component.delete();
+
+ expect(navigate).toHaveBeenCalledWith(["/tabs/vault"]);
+ });
+ });
});
diff --git a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.ts b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.ts
index 2d8c4857c1c..b46b1d61509 100644
--- a/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.ts
+++ b/apps/browser/src/vault/popup/components/vault-v2/add-edit/add-edit-v2.component.ts
@@ -5,18 +5,27 @@ import { Component, OnInit } from "@angular/core";
import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
import { FormsModule } from "@angular/forms";
import { ActivatedRoute, Params, Router } from "@angular/router";
-import { firstValueFrom, map, switchMap } from "rxjs";
+import { firstValueFrom, map, Observable, switchMap } from "rxjs";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { EventCollectionService } from "@bitwarden/common/abstractions/event/event-collection.service";
import { EventType } from "@bitwarden/common/enums";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
+import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
import { CipherId, CollectionId, OrganizationId } from "@bitwarden/common/types/guid";
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { CipherType } from "@bitwarden/common/vault/enums";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherAuthorizationService } from "@bitwarden/common/vault/services/cipher-authorization.service";
import { AddEditCipherInfo } from "@bitwarden/common/vault/types/add-edit-cipher-info";
-import { AsyncActionsModule, ButtonModule, SearchModule } from "@bitwarden/components";
+import {
+ AsyncActionsModule,
+ ButtonModule,
+ SearchModule,
+ IconButtonModule,
+ DialogService,
+ ToastService,
+} from "@bitwarden/components";
import {
CipherFormConfig,
CipherFormConfigService,
@@ -131,11 +140,13 @@ export type AddEditQueryParams = Partial>;
CipherFormModule,
AsyncActionsModule,
PopOutComponent,
+ IconButtonModule,
],
})
export class AddEditV2Component implements OnInit {
headerText: string;
config: CipherFormConfig;
+ canDeleteCipher$: Observable;
get loading() {
return this.config == null;
@@ -165,6 +176,10 @@ export class AddEditV2Component implements OnInit {
private router: Router,
private cipherService: CipherService,
private eventCollectionService: EventCollectionService,
+ private logService: LogService,
+ private toastService: ToastService,
+ private dialogService: DialogService,
+ protected cipherAuthorizationService: CipherAuthorizationService,
) {
this.subscribeToParams();
}
@@ -281,6 +296,10 @@ export class AddEditV2Component implements OnInit {
}
if (["edit", "partial-edit"].includes(config.mode) && config.originalCipher?.id) {
+ this.canDeleteCipher$ = this.cipherAuthorizationService.canDeleteCipher$(
+ config.originalCipher,
+ );
+
await this.eventCollectionService.collect(
EventType.Cipher_ClientViewed,
config.originalCipher.id,
@@ -337,6 +356,43 @@ export class AddEditV2Component implements OnInit {
return this.i18nService.t(partOne, this.i18nService.t("typeSshKey"));
}
}
+
+ delete = async () => {
+ const confirmed = await this.dialogService.openSimpleDialog({
+ title: { key: "deleteItem" },
+ content: {
+ key: "deleteItemConfirmation",
+ },
+ type: "warning",
+ });
+
+ if (!confirmed) {
+ return false;
+ }
+
+ try {
+ await this.deleteCipher();
+ } catch (e) {
+ this.logService.error(e);
+ return false;
+ }
+
+ await this.router.navigate(["/tabs/vault"]);
+
+ this.toastService.showToast({
+ variant: "success",
+ title: null,
+ message: this.i18nService.t("deletedItem"),
+ });
+
+ return true;
+ };
+
+ protected deleteCipher() {
+ return this.config.originalCipher.deletedDate
+ ? this.cipherService.deleteWithServer(this.config.originalCipher.id)
+ : this.cipherService.softDeleteWithServer(this.config.originalCipher.id);
+ }
}
/**
diff --git a/apps/browser/src/vault/popup/components/vault-v2/vault-list-items-container/vault-list-items-container.component.html b/apps/browser/src/vault/popup/components/vault-v2/vault-list-items-container/vault-list-items-container.component.html
index c55e8d9fb26..1593c747f7d 100644
--- a/apps/browser/src/vault/popup/components/vault-v2/vault-list-items-container/vault-list-items-container.component.html
+++ b/apps/browser/src/vault/popup/components/vault-v2/vault-list-items-container/vault-list-items-container.component.html
@@ -91,6 +91,7 @@
{{ cipher.name }} {
- const showCards = showCardsSettingEnabled && nonLoginCipherTypesOnPage[CipherType.Card];
+ const showCards = showCardsSettingEnabled || nonLoginCipherTypesOnPage[CipherType.Card];
const showIdentities =
- showIdentitiesSettingEnabled && nonLoginCipherTypesOnPage[CipherType.Identity];
+ showIdentitiesSettingEnabled || nonLoginCipherTypesOnPage[CipherType.Identity];
return [
...(showCards ? [CipherType.Card] : []),
diff --git a/apps/browser/store/locales/nb/copy.resx b/apps/browser/store/locales/nb/copy.resx
index b496e223cbe..29d612906c7 100644
--- a/apps/browser/store/locales/nb/copy.resx
+++ b/apps/browser/store/locales/nb/copy.resx
@@ -118,58 +118,58 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- Bitwarden passordbehandler
+ Bitwarden Passordbehandler
- At home, at work, or on the go, Bitwarden easily secures all your passwords, passkeys, and sensitive information.
+ Hjemme, på jobben eller på farten sikrer Bitwarden enkelt alle passordene dine, passordene og sensitiv informasjon.
- Recognized as the best password manager by PCMag, WIRED, The Verge, CNET, G2, and more!
+ Anerkjent som den beste passordbehandleren av PCMag, WIRED, The Verge, CNET, G2 og mer!
-SECURE YOUR DIGITAL LIFE
-Secure your digital life and protect against data breaches by generating and saving unique, strong passwords for every account. Maintain everything in an end-to-end encrypted password vault that only you can access.
+SIKRE DIT DIGITALE LIV
+Sikre ditt digitale liv og beskytte mot datainnbrudd ved å generere og lagre unike, sterke passord for hver konto. Oppretthold alt i et ende-til-ende kryptert passordhvelv som bare du har tilgang til.
-ACCESS YOUR DATA, ANYWHERE, ANYTIME, ON ANY DEVICE
-Easily manage, store, secure, and share unlimited passwords across unlimited devices without restrictions.
+FÅ TILGANG TIL DINE DATA, HVOR SOM HELST, NÅR som helst, PÅ ENHVER ENHET
+Administrer, lagre, sikre og del ubegrensede passord på tvers av ubegrensede enheter uten begrensninger.
-EVERYONE SHOULD HAVE THE TOOLS TO STAY SAFE ONLINE
-Utilize Bitwarden for free with no ads or selling data. Bitwarden believes everyone should have the ability to stay safe online. Premium plans offer access to advanced features.
+ALLE BØR HA VERKTØYET FOR Å HOLDE SIKKERHET PÅ PÅ NETT
+Bruk Bitwarden gratis uten annonser eller salgsdata. Bitwarden mener alle bør ha muligheten til å være trygge på nettet. Premium-planer gir tilgang til avanserte funksjoner.
-EMPOWER YOUR TEAMS WITH BITWARDEN
-Plans for Teams and Enterprise come with professional business features. Some examples include SSO integration, self-hosting, directory integration and SCIM provisioning, global policies, API access, event logs, and more.
+STYR LAGEN DINE MED BITWARDEN
+Planer for Teams og Enterprise kommer med profesjonelle forretningsfunksjoner. Noen eksempler inkluderer SSO-integrasjon, selvhosting, katalogintegrering og SCIM-klargjøring, globale retningslinjer, API-tilgang, hendelseslogger og mer.
-Use Bitwarden to secure your workforce and share sensitive information with colleagues.
+Bruk Bitwarden til å sikre arbeidsstyrken din og dele sensitiv informasjon med kolleger.
-More reasons to choose Bitwarden:
+Flere grunner til å velge Bitwarden:
-World-Class Encryption
-Passwords are protected with advanced end-to-end encryption (AES-256 bit, salted hashtag, and PBKDF2 SHA-256) so your data stays secure and private.
+Kryptering i verdensklasse
+Passord er beskyttet med avansert ende-til-ende-kryptering (AES-256 bit, saltet hashtag og PBKDF2 SHA-256) slik at dataene dine forblir sikre og private.
-3rd-party Audits
-Bitwarden regularly conducts comprehensive third-party security audits with notable security firms. These annual audits include source code assessments and penetration testing across Bitwarden IPs, servers, and web applications.
+Tredjepartsrevisjoner
+Bitwarden gjennomfører regelmessig omfattende tredjeparts sikkerhetsrevisjoner med bemerkelsesverdige sikkerhetsfirmaer. Disse årlige revisjonene inkluderer kildekodevurderinger og penetrasjonstesting på tvers av Bitwarden IP-er, servere og webapplikasjoner.
-Advanced 2FA
-Secure your login with a third-party authenticator, emailed codes, or FIDO2 WebAuthn credentials such as a hardware security key or passkey.
+Avansert 2FA
+Sikre påloggingen din med en tredjeparts autentisering, e-postkoder eller FIDO2 WebAuthn-legitimasjon som en maskinvaresikkerhetsnøkkel eller passord.
Bitwarden Send
-Transmit data directly to others while maintaining end-to-end encrypted security and limiting exposure.
+Overfør data direkte til andre mens du opprettholder ende-til-ende kryptert sikkerhet og begrenser eksponeringen.
-Built-in Generator
-Create long, complex, and distinct passwords and unique usernames for every site you visit. Integrate with email alias providers for additional privacy.
+Innebygd generator
+Lag lange, komplekse og distinkte passord og unike brukernavn for hvert nettsted du besøker. Integrer med e-postaliasleverandører for ekstra personvern.
-Global Translations
-Bitwarden translations exist for more than 60 languages, translated by the global community though Crowdin.
+Globale oversettelser
+Bitwarden-oversettelser finnes for mer enn 60 språk, oversatt av det globale samfunnet gjennom Crowdin.
-Cross-Platform Applications
-Secure and share sensitive data within your Bitwarden Vault from any browser, mobile device, or desktop OS, and more.
+Applikasjoner på tvers av plattformer
+Sikre og del sensitive data i Bitwarden Vault fra hvilken som helst nettleser, mobilenhet eller stasjonær OS, og mer.
-Bitwarden secures more than just passwords
-End-to-end encrypted credential management solutions from Bitwarden empower organizations to secure everything, including developer secrets and passkey experiences. Visit Bitwarden.com to learn more about Bitwarden Secrets Manager and Bitwarden Passwordless.dev!
+Bitwarden sikrer mer enn bare passord
+End-to-end krypterte legitimasjonsadministrasjonsløsninger fra Bitwarden gir organisasjoner mulighet til å sikre alt, inkludert utviklerhemmeligheter og passordopplevelser. Besøk Bitwarden.com for å lære mer om Bitwarden Secrets Manager og Bitwarden Passwordless.dev!
- At home, at work, or on the go, Bitwarden easily secures all your passwords, passkeys, and sensitive information.
+ Hjemme, på jobben eller på farten sikrer Bitwarden enkelt alle passordene dine, passordene og sensitiv informasjon.Synkroniser og få tilgang til ditt hvelv fra alle dine enheter
diff --git a/apps/cli/package.json b/apps/cli/package.json
index a7221122225..391c9c80808 100644
--- a/apps/cli/package.json
+++ b/apps/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@bitwarden/cli",
"description": "A secure and free password manager for all of your devices.",
- "version": "2025.1.1",
+ "version": "2025.1.3",
"keywords": [
"bitwarden",
"password",
diff --git a/apps/cli/src/platform/services/cli-sdk-load.service.ts b/apps/cli/src/platform/services/cli-sdk-load.service.ts
new file mode 100644
index 00000000000..ee3b48e34d7
--- /dev/null
+++ b/apps/cli/src/platform/services/cli-sdk-load.service.ts
@@ -0,0 +1,9 @@
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
+import * as sdk from "@bitwarden/sdk-internal";
+
+export class CliSdkLoadService implements SdkLoadService {
+ async load(): Promise {
+ const module = await import("@bitwarden/sdk-internal/bitwarden_wasm_internal_bg.wasm");
+ (sdk as any).init(module);
+ }
+}
diff --git a/apps/cli/src/service-container/service-container.ts b/apps/cli/src/service-container/service-container.ts
index 6c715640613..ef07feb9fab 100644
--- a/apps/cli/src/service-container/service-container.ts
+++ b/apps/cli/src/service-container/service-container.ts
@@ -68,6 +68,7 @@ import {
RegionConfig,
} from "@bitwarden/common/platform/abstractions/environment.service";
import { KeyGenerationService as KeyGenerationServiceAbstraction } from "@bitwarden/common/platform/abstractions/key-generation.service";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { SdkService } from "@bitwarden/common/platform/abstractions/sdk/sdk.service";
import { KeySuffixOptions, LogLevelType } from "@bitwarden/common/platform/enums";
import { StateFactory } from "@bitwarden/common/platform/factories/state-factory";
@@ -171,6 +172,7 @@ import {
import { CliBiometricsService } from "../key-management/cli-biometrics-service";
import { flagEnabled } from "../platform/flags";
import { CliPlatformUtilsService } from "../platform/services/cli-platform-utils.service";
+import { CliSdkLoadService } from "../platform/services/cli-sdk-load.service";
import { ConsoleLogService } from "../platform/services/console-log.service";
import { I18nService } from "../platform/services/i18n.service";
import { LowdbStorageService } from "../platform/services/lowdb-storage.service";
@@ -270,6 +272,7 @@ export class ServiceContainer {
kdfConfigService: KdfConfigService;
taskSchedulerService: TaskSchedulerService;
sdkService: SdkService;
+ sdkLoadService: SdkLoadService;
cipherAuthorizationService: CipherAuthorizationService;
constructor() {
@@ -570,6 +573,7 @@ export class ServiceContainer {
const sdkClientFactory = flagEnabled("sdk")
? new DefaultSdkClientFactory()
: new NoopSdkClientFactory();
+ this.sdkLoadService = new CliSdkLoadService();
this.sdkService = new DefaultSdkService(
sdkClientFactory,
this.environmentService,
@@ -859,6 +863,7 @@ export class ServiceContainer {
return;
}
+ await this.sdkLoadService.load();
await this.storageService.init();
await this.stateService.init();
this.containerService.attachToGlobal(global);
diff --git a/apps/cli/src/tools/import.command.ts b/apps/cli/src/tools/import.command.ts
index f826cb24b7d..d68ef4d043a 100644
--- a/apps/cli/src/tools/import.command.ts
+++ b/apps/cli/src/tools/import.command.ts
@@ -2,10 +2,14 @@
// @ts-strict-ignore
import { OptionValues } from "commander";
import * as inquirer from "inquirer";
-import { firstValueFrom, map } from "rxjs";
+import { firstValueFrom } from "rxjs";
-import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
+import {
+ OrganizationService,
+ getOrganizationById,
+} from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
+import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.service.abstraction";
import { ImportServiceAbstraction, ImportType } from "@bitwarden/importer/core";
@@ -24,16 +28,12 @@ export class ImportCommand {
async run(format: ImportType, filepath: string, options: OptionValues): Promise {
const organizationId = options.organizationid;
if (organizationId != null) {
- const userId = await firstValueFrom(
- this.accountService.activeAccount$.pipe(map((a) => a?.id)),
- );
+ const userId = await firstValueFrom(getUserId(this.accountService.activeAccount$));
if (!userId) {
return Response.badRequest("No user found.");
}
const organization = await firstValueFrom(
- this.organizationService
- .organizations$(userId)
- .pipe(map((organizations) => organizations.find((o) => o.id === organizationId))),
+ this.organizationService.organizations$(userId).pipe(getOrganizationById(organizationId)),
);
if (organization == null) {
diff --git a/apps/desktop/electron-builder.json b/apps/desktop/electron-builder.json
index 4302f302473..2922035a913 100644
--- a/apps/desktop/electron-builder.json
+++ b/apps/desktop/electron-builder.json
@@ -20,7 +20,7 @@
"**/node_modules/@bitwarden/desktop-napi/index.js",
"**/node_modules/@bitwarden/desktop-napi/desktop_napi.${platform}-${arch}*.node"
],
- "electronVersion": "33.3.1",
+ "electronVersion": "34.0.0",
"generateUpdatesFilesForAllChannels": true,
"publish": {
"provider": "generic",
diff --git a/apps/desktop/package.json b/apps/desktop/package.json
index 249145eb3ea..c063f2573d1 100644
--- a/apps/desktop/package.json
+++ b/apps/desktop/package.json
@@ -1,7 +1,7 @@
{
"name": "@bitwarden/desktop",
"description": "A secure and free password manager for all of your devices.",
- "version": "2025.1.4",
+ "version": "2025.1.8",
"keywords": [
"bitwarden",
"password",
diff --git a/apps/desktop/src/app/app-routing.module.ts b/apps/desktop/src/app/app-routing.module.ts
index 66fed8bcf28..6029e9decc2 100644
--- a/apps/desktop/src/app/app-routing.module.ts
+++ b/apps/desktop/src/app/app-routing.module.ts
@@ -1,19 +1,21 @@
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
+import { AuthenticationTimeoutComponent } from "@bitwarden/angular/auth/components/authentication-timeout.component";
import {
DesktopDefaultOverlayPosition,
EnvironmentSelectorComponent,
} from "@bitwarden/angular/auth/components/environment-selector.component";
-import { TwoFactorTimeoutComponent } from "@bitwarden/angular/auth/components/two-factor-auth/two-factor-auth-expired.component";
import { unauthUiRefreshSwap } from "@bitwarden/angular/auth/functions/unauth-ui-refresh-route-swap";
import {
authGuard,
lockGuard,
+ activeAuthGuard,
redirectGuard,
tdeDecryptionRequiredGuard,
unauthGuardFn,
} from "@bitwarden/angular/auth/guards";
+import { canAccessFeature } from "@bitwarden/angular/platform/guard/feature-flag.guard";
import { twofactorRefactorSwap } from "@bitwarden/angular/utils/two-factor-component-refactor-route-swap";
import { NewDeviceVerificationNoticeGuard } from "@bitwarden/angular/vault/guards";
import {
@@ -37,7 +39,10 @@ import {
DevicesIcon,
SsoComponent,
TwoFactorTimeoutIcon,
+ NewDeviceVerificationComponent,
+ DeviceVerificationIcon,
} from "@bitwarden/auth/angular";
+import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { LockComponent } from "@bitwarden/key-management/angular";
import {
NewDeviceVerificationNoticePageOneComponent,
@@ -97,12 +102,12 @@ const routes: Routes = [
},
),
{
- path: "2fa-timeout",
+ path: "authentication-timeout",
component: AnonLayoutWrapperComponent,
children: [
{
path: "",
- component: TwoFactorTimeoutComponent,
+ component: AuthenticationTimeoutComponent,
},
],
data: {
@@ -112,6 +117,25 @@ const routes: Routes = [
},
} satisfies RouteDataProperties & AnonLayoutWrapperData,
},
+ {
+ path: "device-verification",
+ component: AnonLayoutWrapperComponent,
+ canActivate: [
+ canAccessFeature(FeatureFlag.NewDeviceVerification),
+ unauthGuardFn(),
+ activeAuthGuard(),
+ ],
+ children: [{ path: "", component: NewDeviceVerificationComponent }],
+ data: {
+ pageIcon: DeviceVerificationIcon,
+ pageTitle: {
+ key: "verifyIdentity",
+ },
+ pageSubtitle: {
+ key: "weDontRecognizeThisDevice",
+ },
+ } satisfies RouteDataProperties & AnonLayoutWrapperData,
+ },
{ path: "register", component: RegisterComponent },
{
path: "new-device-notice",
diff --git a/apps/desktop/src/app/services/init.service.ts b/apps/desktop/src/app/services/init.service.ts
index de80f95593a..72c2821bf33 100644
--- a/apps/desktop/src/app/services/init.service.ts
+++ b/apps/desktop/src/app/services/init.service.ts
@@ -11,6 +11,7 @@ import { TwoFactorService as TwoFactorServiceAbstraction } from "@bitwarden/comm
import { EncryptService } from "@bitwarden/common/platform/abstractions/encrypt.service";
import { I18nService as I18nServiceAbstraction } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService as PlatformUtilsServiceAbstraction } from "@bitwarden/common/platform/abstractions/platform-utils.service";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { StateService as StateServiceAbstraction } from "@bitwarden/common/platform/abstractions/state.service";
import { ContainerService } from "@bitwarden/common/platform/services/container.service";
import { UserAutoUnlockKeyService } from "@bitwarden/common/platform/services/user-auto-unlock-key.service";
@@ -47,11 +48,13 @@ export class InitService {
private versionService: VersionService,
private sshAgentService: SshAgentService,
private autofillService: DesktopAutofillService,
+ private sdkLoadService: SdkLoadService,
@Inject(DOCUMENT) private document: Document,
) {}
init() {
return async () => {
+ await this.sdkLoadService.load();
await this.sshAgentService.init();
this.nativeMessagingService.init();
await this.stateService.init({ runMigrations: false }); // Desktop will run them in main process
diff --git a/apps/desktop/src/app/services/services.module.ts b/apps/desktop/src/app/services/services.module.ts
index 8b890032443..576d36d0104 100644
--- a/apps/desktop/src/app/services/services.module.ts
+++ b/apps/desktop/src/app/services/services.module.ts
@@ -67,6 +67,7 @@ import {
import { MessagingService as MessagingServiceAbstraction } from "@bitwarden/common/platform/abstractions/messaging.service";
import { PlatformUtilsService as PlatformUtilsServiceAbstraction } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { SdkClientFactory } from "@bitwarden/common/platform/abstractions/sdk/sdk-client-factory";
+import { SdkLoadService } from "@bitwarden/common/platform/abstractions/sdk/sdk-load.service";
import { StateService as StateServiceAbstraction } from "@bitwarden/common/platform/abstractions/state.service";
import { AbstractStorageService } from "@bitwarden/common/platform/abstractions/storage.service";
import { SystemService as SystemServiceAbstraction } from "@bitwarden/common/platform/abstractions/system.service";
@@ -77,7 +78,9 @@ import { TaskSchedulerService } from "@bitwarden/common/platform/scheduling";
import { Fido2AuthenticatorService } from "@bitwarden/common/platform/services/fido2/fido2-authenticator.service";
import { MemoryStorageService } from "@bitwarden/common/platform/services/memory-storage.service";
import { DefaultSdkClientFactory } from "@bitwarden/common/platform/services/sdk/default-sdk-client-factory";
+import { DefaultSdkLoadService } from "@bitwarden/common/platform/services/sdk/default-sdk-load.service";
import { NoopSdkClientFactory } from "@bitwarden/common/platform/services/sdk/noop-sdk-client-factory";
+import { NoopSdkLoadService } from "@bitwarden/common/platform/services/sdk/noop-sdk-load.service";
import { SystemService } from "@bitwarden/common/platform/services/system.service";
import { GlobalStateProvider, StateProvider } from "@bitwarden/common/platform/state";
// eslint-disable-next-line import/no-restricted-paths -- Implementation for memory storage
@@ -393,6 +396,11 @@ const safeProviders: SafeProvider[] = [
useClass: flagEnabled("sdk") ? DefaultSdkClientFactory : NoopSdkClientFactory,
deps: [],
}),
+ safeProvider({
+ provide: SdkLoadService,
+ useClass: flagEnabled("sdk") ? DefaultSdkLoadService : NoopSdkLoadService,
+ deps: [],
+ }),
safeProvider({
provide: LoginEmailService,
useClass: LoginEmailService,
diff --git a/apps/desktop/src/locales/af/messages.json b/apps/desktop/src/locales/af/messages.json
index 1710005ab66..6a5764e4c9f 100644
--- a/apps/desktop/src/locales/af/messages.json
+++ b/apps/desktop/src/locales/af/messages.json
@@ -885,6 +885,15 @@
"message": "Bevestig met Duo Security vir u organisasie d.m.v. die Duo Mobile-toep, SMS, spraakoproep of ’n U2F-beveiligingsleutel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ar/messages.json b/apps/desktop/src/locales/ar/messages.json
index c2ccab5b908..ecbacf95a8d 100644
--- a/apps/desktop/src/locales/ar/messages.json
+++ b/apps/desktop/src/locales/ar/messages.json
@@ -885,6 +885,15 @@
"message": "تحقق من خلال نظام الحماية الثنائي لمؤسستك باستخدام تطبيق Duo Mobile أو الرسائل القصيرة أو المكالمة الهاتفية أو مفتاح الأمان U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/az/messages.json b/apps/desktop/src/locales/az/messages.json
index 68753f204ea..dfd7942e033 100644
--- a/apps/desktop/src/locales/az/messages.json
+++ b/apps/desktop/src/locales/az/messages.json
@@ -885,6 +885,15 @@
"message": "Təşkilatınızını Duo Security ilə doğrulamaq üçün Duo Mobile tətbiqi, SMS, telefon zəngi və ya U2F güvənlik açarını istifadə edin.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Kimliyinizi doğrulayın"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Bu cihazı tanımırıq. Kimliyinizi doğrulamaq üçün e-poçtunuza göndərilən kodu daxil edin."
+ },
+ "continueLoggingIn": {
+ "message": "Giriş etməyə davam"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Bu özəllik, ödənişsiz təşkilatlar üçün əlçatan deyil. Daha çox özəlliyin kilidini açmaq üçün ödənişli plana keçin."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Uzantını güncəlləmək tələb olunur"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "İstifadə etdiyiniz brauzer uzantısı köhnəlib. Lütfən onu güncəlləyin, ya da masaüstü tətbiq ayarlarında brauzer inteqrasiyası üzrə barmaq izi ilə doğrulamanı sıradan çıxardın."
}
}
diff --git a/apps/desktop/src/locales/be/messages.json b/apps/desktop/src/locales/be/messages.json
index 70b30128f9b..7b8cc90d072 100644
--- a/apps/desktop/src/locales/be/messages.json
+++ b/apps/desktop/src/locales/be/messages.json
@@ -885,6 +885,15 @@
"message": "Праверка з дапамогай Duo Security для вашай арганізацыі, выкарыстоўваючы праграму Duo Mobile, SMS, тэлефонны выклік або ключ бяспекі U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/bg/messages.json b/apps/desktop/src/locales/bg/messages.json
index b3052fbc6cf..48dc71a16cd 100644
--- a/apps/desktop/src/locales/bg/messages.json
+++ b/apps/desktop/src/locales/bg/messages.json
@@ -885,6 +885,15 @@
"message": "Удостоверяване чрез Duo Security за организацията ви, с ползване на приложението Duo Mobile, SMS, телефонен разговор или устройство U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Потвърдете самоличността си"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Това устройство е непознато. Въведете кода изпратен на е-пощата Ви, за да потвърдите самоличността си."
+ },
+ "continueLoggingIn": {
+ "message": "Продължаване с вписването"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Безплатните планове нямат достъп до тази функционалност. Преминете към платен план, за да се възползвате от тази и много други възможности."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Необходимо е обновяване на добавката"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Добавката за браузъра, която използвате, е остаряла. Моля, обновете я или изключете интеграцията за проверка на пръстов отпечатък в браузъра от настройките на самостоятелното приложение."
}
}
diff --git a/apps/desktop/src/locales/bn/messages.json b/apps/desktop/src/locales/bn/messages.json
index 7e1994cdeab..e559bf83b22 100644
--- a/apps/desktop/src/locales/bn/messages.json
+++ b/apps/desktop/src/locales/bn/messages.json
@@ -885,6 +885,15 @@
"message": "Duo Mobile app, এসএমএস, ফোন কল, বা U2F সুরক্ষা কী ব্যবহার করে আপনার সংস্থার জন্য Duo Security এর মাধ্যমে যাচাই করুন।",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/bs/messages.json b/apps/desktop/src/locales/bs/messages.json
index 487d98a327f..b4c616cdd01 100644
--- a/apps/desktop/src/locales/bs/messages.json
+++ b/apps/desktop/src/locales/bs/messages.json
@@ -885,6 +885,15 @@
"message": "Potvrdi sa Duo Security za svoju organizaciju pomoću aplikacije Duo Mobile, SMS-om, telefonskim pozivom ili U2F sigurnosnim ključem.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ca/messages.json b/apps/desktop/src/locales/ca/messages.json
index 8b4ee8e276d..8f8ee393b69 100644
--- a/apps/desktop/src/locales/ca/messages.json
+++ b/apps/desktop/src/locales/ca/messages.json
@@ -885,6 +885,15 @@
"message": "Verifiqueu amb Duo Security per a la vostra organització mitjançant l'aplicació Duo Mobile, SMS, trucada telefònica o clau de seguretat U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/cs/messages.json b/apps/desktop/src/locales/cs/messages.json
index 28c20ee5184..a4f1f50ce93 100644
--- a/apps/desktop/src/locales/cs/messages.json
+++ b/apps/desktop/src/locales/cs/messages.json
@@ -885,6 +885,15 @@
"message": "Ověření pomocí Duo Security pro Vaši organizaci prostřednictvím aplikace Duo Mobile, SMS, telefonního hovoru nebo bezpečnostního klíče U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Ověřte svou totožnost"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Toto zařízení nepoznáváme. Zadejte kód zaslaný na Váš e-mail pro ověření Vaší totožnosti."
+ },
+ "continueLoggingIn": {
+ "message": "Pokračovat v přihlášení"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Tato funkce není dostupná pro bezplatné organizace. Přepněte na placenou verzi a odemkněte další funkce."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Je vyžadována aktualiazce rozšíření"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Použité rozšíření prohlížeče je zastaralé. Aktualizujte jej nebo zakažte ověření otisků prstů při integraci prohlížeče v nastavení aplikace."
}
}
diff --git a/apps/desktop/src/locales/cy/messages.json b/apps/desktop/src/locales/cy/messages.json
index 897b5bb5508..22e19c84310 100644
--- a/apps/desktop/src/locales/cy/messages.json
+++ b/apps/desktop/src/locales/cy/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/da/messages.json b/apps/desktop/src/locales/da/messages.json
index 0d1c94527b2..5545e856b64 100644
--- a/apps/desktop/src/locales/da/messages.json
+++ b/apps/desktop/src/locales/da/messages.json
@@ -885,6 +885,15 @@
"message": "Bekræft med Duo Security for din organisation vha. Duo Mobile-app, SMS, telefonopkald eller U2F-sikkerhedsnøgle.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Bekræft identiteten"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Denne enhed er ikke genkendt. Angiv koden i den tilsendte e-mail for at bekræfte identiteten."
+ },
+ "continueLoggingIn": {
+ "message": "Fortsæt med at logge ind"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Denne funktion er utilgængelig for gratis organisationer. Skift til en betalingsabonnementstype for at oplåse flere funktioner."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Udvidelsesopdatering krævet"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Den anvendte webbrowserudvidelse er forældet. Opdatér den venligst eller deaktivér webbrowserintegreret fingeraftryksbekræftelse i computer-app indstillingerne."
}
}
diff --git a/apps/desktop/src/locales/de/messages.json b/apps/desktop/src/locales/de/messages.json
index 5ce63034cb9..4f7740f46c8 100644
--- a/apps/desktop/src/locales/de/messages.json
+++ b/apps/desktop/src/locales/de/messages.json
@@ -256,7 +256,7 @@
"message": "Bitwarden konnte folgende(n) Tresor-Eintrag/Einträge nicht entschlüsseln."
},
"contactCSToAvoidDataLossPart1": {
- "message": "Kundensupport kontaktieren",
+ "message": "Kontaktiere unser Customer Success Team",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
@@ -885,6 +885,15 @@
"message": "Nutze Duo Security, um dich mit der Duo-Mobile-App, SMS, per Anruf oder U2F-Sicherheitsschlüssel bei deiner Organisation zu verifizieren.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verifiziere deine Identität"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Wir erkennen dieses Gerät nicht. Gib den an deine E-Mail-Adresse gesendeten Code ein, um deine Identität zu verifizieren."
+ },
+ "continueLoggingIn": {
+ "message": "Anmeldung fortsetzen"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Diese Funktion ist für kostenlose Organisationen nicht verfügbar. Wechsle zu einem kostenpflichtigen Abonnement, um weitere Funktionen freizuschalten."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Aktualisierung der Erweiterung notwendig"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Die von dir verwendete Browser-Erweiterung ist veraltet. Bitte aktualisiere sie oder deaktiviere die Fingerabdrucküberprüfung der Browser-Integration in den Einstellungen der Desktop-App."
}
}
diff --git a/apps/desktop/src/locales/el/messages.json b/apps/desktop/src/locales/el/messages.json
index 3fed18252fe..8f62ceda6ca 100644
--- a/apps/desktop/src/locales/el/messages.json
+++ b/apps/desktop/src/locales/el/messages.json
@@ -27,7 +27,7 @@
"message": "Ασφαλής σημείωση"
},
"typeSshKey": {
- "message": "SSH key"
+ "message": "Κλειδί SSH"
},
"folders": {
"message": "Φάκελοι"
@@ -64,7 +64,7 @@
}
},
"welcomeBack": {
- "message": "Welcome back"
+ "message": "Καλωσορίσατε και πάλι"
},
"moveToOrgDesc": {
"message": "Επιλέξτε έναν οργανισμό στον οποίο θέλετε να μετακινήσετε αυτό το στοιχείο. Η μετακίνηση σε έναν οργανισμό μεταβιβάζει την ιδιοκτησία του στοιχείου σε αυτό τον οργανισμό. Δεν θα είστε πλέον ο άμεσος ιδιοκτήτης αυτού του στοιχείου μόλις το μετακινήσετε."
@@ -107,7 +107,7 @@
"message": "Επεξεργασία στοιχείου"
},
"emailAddress": {
- "message": "Διεύθυνση ηλ. ταχυδρομείου"
+ "message": "Διεύθυνση Email"
},
"verificationCodeTotp": {
"message": "Κωδικός Επαλήθευσης (TOTP)"
@@ -181,16 +181,16 @@
"message": "Διεύθυνση"
},
"sshPrivateKey": {
- "message": "Private key"
+ "message": "Ιδιωτικό κλειδί"
},
"sshPublicKey": {
- "message": "Public key"
+ "message": "Δημόσιο κλειδί"
},
"sshFingerprint": {
- "message": "Fingerprint"
+ "message": "Αποτύπωμα"
},
"sshKeyAlgorithm": {
- "message": "Key type"
+ "message": "Τύπος κλειδιού"
},
"sshKeyAlgorithmED25519": {
"message": "ED25519"
@@ -205,37 +205,37 @@
"message": "RSA 4096-Bit"
},
"sshKeyGenerated": {
- "message": "A new SSH key was generated"
+ "message": "Δημιουργήθηκε ένα νέο SSH κλειδί"
},
"sshKeyWrongPassword": {
- "message": "The password you entered is incorrect."
+ "message": "Ο κωδικός πρόσβασης που εισάγατε είναι λάθος."
},
"importSshKey": {
- "message": "Import"
+ "message": "Εισαγωγή"
},
"confirmSshKeyPassword": {
- "message": "Confirm password"
+ "message": "Επιβεβαίωση κωδικού πρόσβασης"
},
"enterSshKeyPasswordDesc": {
- "message": "Enter the password for the SSH key."
+ "message": "Εισάγετε τον κωδικό πρόσβασης για το SSH κλειδί."
},
"enterSshKeyPassword": {
- "message": "Enter password"
+ "message": "Εισάγετε κωδικό πρόσβασης"
},
"sshAgentUnlockRequired": {
- "message": "Please unlock your vault to approve the SSH key request."
+ "message": "Παρακαλώ ξεκλειδώστε την κρύπτη σας για να εγκρίνετε το αίτημα κλειδιού SSH."
},
"sshAgentUnlockTimeout": {
- "message": "SSH key request timed out."
+ "message": "Λήξη χρονικού ορίου αιτήματος κλειδιού SSH."
},
"enableSshAgent": {
- "message": "Enable SSH agent"
+ "message": "Ενεργοποίηση πράκτορα SSH"
},
"enableSshAgentDesc": {
- "message": "Enable the SSH agent to sign SSH requests right from your Bitwarden vault."
+ "message": "Ενεργοποιήστε τον πράκτορα SSH για την υπογραφή αιτημάτων SSH απευθείας από την κρύπτη Bitwarden."
},
"enableSshAgentHelp": {
- "message": "The SSH agent is a service targeted at developers that allows you to sign SSH requests directly from your Bitwarden vault."
+ "message": "Ο πράκτορα SSH είναι μια υπηρεσία που απευθύνεται σε προγραμματιστές που σας επιτρέπει να υπογράψετε αιτήματα SSH απευθείας από την κρύπτη Bitwarden σας."
},
"premiumRequired": {
"message": "Απαιτείται Premium"
@@ -250,17 +250,17 @@
"message": "Σφάλμα"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Σφάλμα αποκρυπτογράφησης"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden could not decrypt the vault item(s) listed below."
+ "message": "Το Bitwarden δεν μπόρεσε να αποκρυπτογραφήσει τα αντικείμενα κρύπτης που αναφέρονται παρακάτω."
},
"contactCSToAvoidDataLossPart1": {
- "message": "Contact customer success",
+ "message": "Εποικινωνία επιτυχίας επαφής πελάτη",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
- "message": "to avoid additional data loss.",
+ "message": "για την αποφυγή επιπλέον απώλειας δεδομένων.",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"january": {
@@ -475,10 +475,10 @@
"message": "Αντιγραφή κωδικού πρόσβασης"
},
"regenerateSshKey": {
- "message": "Regenerate SSH key"
+ "message": "Επαναδημιουργία κλειδιού SSH"
},
"copySshPrivateKey": {
- "message": "Copy SSH private key"
+ "message": "Αντιγραφή ιδιωτικού κλειδιού SSH"
},
"copyPassphrase": {
"message": "Αντιγραφή φράσης πρόσβασης",
@@ -638,7 +638,7 @@
"message": "Δημιουργία λογαριασμού"
},
"newToBitwarden": {
- "message": "New to Bitwarden?"
+ "message": "Μόλις ήρθες στο Bitwarden;"
},
"setAStrongPassword": {
"message": "Ορίστε έναν ισχυρό κωδικό πρόσβασης"
@@ -650,16 +650,16 @@
"message": "Είσοδος"
},
"logInToBitwarden": {
- "message": "Log in to Bitwarden"
+ "message": "Σύνδεση στο Bitwarden"
},
"logInWithPasskey": {
- "message": "Log in with passkey"
+ "message": "Σύνδεση με κλειδί πρόσβασης"
},
"loginWithDevice": {
- "message": "Log in with device"
+ "message": "Σύνδεση με χρήση συσκευής"
},
"useSingleSignOn": {
- "message": "Use single sign-on"
+ "message": "Χρήση single sign-on"
},
"submit": {
"message": "Υποβολή"
@@ -885,6 +885,15 @@
"message": "Επαληθεύστε με το Duo Security για τον οργανισμό σας χρησιμοποιώντας την εφαρμογή Duo Mobile, μήνυμα SMS, τηλεφωνική κλήση ή κλειδί ασφαλείας U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -934,10 +943,10 @@
"message": "URL Διακομιστή"
},
"authenticationTimeout": {
- "message": "Authentication timeout"
+ "message": "Χρονικό όριο επαλήθευσης"
},
"authenticationSessionTimedOut": {
- "message": "The authentication session timed out. Please restart the login process."
+ "message": "Λήξη χρονικού ορίου συνεδρίας επαλήθευσης. Παρακαλώ επανεκκινήστε τη διαδικασία σύνδεσης."
},
"selfHostBaseUrl": {
"message": "URL διακομιστή αυτο-φιλοξενίας",
@@ -1407,13 +1416,13 @@
"message": "Ιστορικό κωδικού πρόσβασης"
},
"generatorHistory": {
- "message": "Generator history"
+ "message": "Ιστορικό γεννήτριας"
},
"clearGeneratorHistoryTitle": {
- "message": "Clear generator history"
+ "message": "Εκκαθάριση ιστορικού γεννήτριας"
},
"cleargGeneratorHistoryDescription": {
- "message": "If you continue, all entries will be permanently deleted from generator's history. Are you sure you want to continue?"
+ "message": "Αν συνεχίσετε, όλες οι καταχωρήσεις θα διαγραφούν οριστικά από το ιστορικό της γεννήτριας. Σίγουρα θέλετε να συνεχίσετε;"
},
"clear": {
"message": "Εκκαθάριση",
@@ -1423,13 +1432,13 @@
"message": "Δεν υπάρχουν κωδικοί στη λίστα."
},
"clearHistory": {
- "message": "Clear history"
+ "message": "Διαγραφή ιστορικού"
},
"nothingToShow": {
- "message": "Nothing to show"
+ "message": "Τίποτα για προβολή"
},
"nothingGeneratedRecently": {
- "message": "You haven't generated anything recently"
+ "message": "Δεν έχετε δημιουργήσει τίποτα πρόσφατα"
},
"undo": {
"message": "Αναίρεση"
@@ -1785,10 +1794,10 @@
"message": "Η διαγραφή του λογαριασμού σας είναι μόνιμη. Δεν μπορεί να αναιρεθεί."
},
"cannotDeleteAccount": {
- "message": "Cannot delete account"
+ "message": "Αδυναμία διαγραφής λογαριασμού"
},
"cannotDeleteAccountDesc": {
- "message": "This action cannot be completed because your account is owned by an organization. Contact your organization administrator for additional details."
+ "message": "Αυτή η ενέργεια δεν μπορεί να ολοκληρωθεί επειδή ο λογαριασμός σας ανήκει σε έναν οργανισμό. Επικοινωνήστε με το διαχειριστή του οργανισμού σας για πρόσθετες λεπτομέρειες."
},
"accountDeleted": {
"message": "Ο λογαριασμός διαγράφηκε"
@@ -2495,7 +2504,7 @@
"message": "Δημιουργία διεύθυνσης ηλ. ταχυδρομείου"
},
"spinboxBoundariesHint": {
- "message": "Value must be between $MIN$ and $MAX$.",
+ "message": "Η τιμή πρέπει να είναι μεταξύ $MIN$ και $MAX$.",
"description": "Explains spin box minimum and maximum values to the user",
"placeholders": {
"min": {
@@ -2509,7 +2518,7 @@
}
},
"passwordLengthRecommendationHint": {
- "message": " Use $RECOMMENDED$ characters or more to generate a strong password.",
+ "message": " Χρησιμοποιήστε $RECOMMENDED$ ή περισσότερους χαρακτήρες για να δημιουργήσετε έναν ισχυρό κωδικό πρόσβασης.",
"description": "Appended to `spinboxBoundariesHint` to recommend a length to the user. This must include any language-specific 'sentence' separator characters (e.g. a space in english).",
"placeholders": {
"recommended": {
@@ -2519,7 +2528,7 @@
}
},
"passphraseNumWordsRecommendationHint": {
- "message": " Use $RECOMMENDED$ words or more to generate a strong passphrase.",
+ "message": " Χρησιμοποιήστε $RECOMMENDED$ ή περισσότερες λέξεις για να δημιουργήσετε μια ισχυρή φράση πρόσβασης.",
"description": "Appended to `spinboxBoundariesHint` to recommend a number of words to the user. This must include any language-specific 'sentence' separator characters (e.g. a space in english).",
"placeholders": {
"recommended": {
@@ -2740,13 +2749,13 @@
"message": "Μια ειδοποίηση έχει σταλεί στη συσκευή σας."
},
"aNotificationWasSentToYourDevice": {
- "message": "A notification was sent to your device"
+ "message": "Μια ειδοποίηση στάλθηκε στη συσκευή σας"
},
"makeSureYourAccountIsUnlockedAndTheFingerprintEtc": {
- "message": "Make sure your account is unlocked and the fingerprint phrase matches on the other device"
+ "message": "Βεβαιωθείτε ότι ο λογαριασμός σας είναι ξεκλείδωτος και ότι η φράση δακτυλικού αποτυπώματος ταιριάζει στην άλλη συσκευή"
},
"needAnotherOptionV1": {
- "message": "Need another option?"
+ "message": "Χρειάζεστε μια άλλη επιλογή;"
},
"fingerprintMatchInfo": {
"message": "Παρακαλώ βεβαιωθείτε ότι το θησαυ/κιό σας είναι ξεκλείδωτο και η φράση δακτυλικών αποτυπωμάτων ταιριάζει με την άλλη συσκευή."
@@ -2755,13 +2764,13 @@
"message": "Φράση δακτυλικών αποτυπωμάτων"
},
"youWillBeNotifiedOnceTheRequestIsApproved": {
- "message": "You will be notified once the request is approved"
+ "message": "Θα ειδοποιηθείτε μόλις εγκριθεί η αίτηση"
},
"needAnotherOption": {
"message": "Η σύνδεση με τη χρήση συσκευής πρέπει να οριστεί στις ρυθμίσεις της εφαρμογής Bitwarden. Χρειάζεστε κάποια άλλη επιλογή;"
},
"viewAllLogInOptions": {
- "message": "View all log in options"
+ "message": "Δείτε όλες τις επιλογές σύνδεσης"
},
"viewAllLoginOptions": {
"message": "Δείτε όλες τις επιλογές σύνδεσης"
@@ -2880,16 +2889,16 @@
"message": "Βρέθηκε και ταυτοποιήθηκε αδύναμος κωδικός σε μια διαρροή δεδομένων. Χρησιμοποιήστε ένα ισχυρό και μοναδικό κωδικό πρόσβασης για την προστασία του λογαριασμού σας. Είστε σίγουροι ότι θέλετε να χρησιμοποιήσετε αυτόν τον κωδικό πρόσβασης;"
},
"useThisPassword": {
- "message": "Use this password"
+ "message": "Χρήση αυτού του κωδικού πρόσβασης"
},
"useThisUsername": {
- "message": "Use this username"
+ "message": "Χρήση αυτού του ονόματος χρήστη"
},
"checkForBreaches": {
"message": "Ελέγξτε γνωστές διαρροές δεδομένων για αυτόν τον κωδικό"
},
"loggedInExclamation": {
- "message": "Logged in!"
+ "message": "Έχετε συνδεθεί!"
},
"important": {
"message": "Σημαντικό:"
@@ -2922,16 +2931,16 @@
"message": "Ενημέρωση Προτεινόμενων Ρυθμίσεων"
},
"rememberThisDeviceToMakeFutureLoginsSeamless": {
- "message": "Remember this device to make future logins seamless"
+ "message": "Απομνημόνευση αυτής της συσκευής για απρόσκοπτη σύνδεση στο μέλλον"
},
"deviceApprovalRequired": {
"message": "Απαιτείται έγκριση συσκευής. Επιλέξτε μια επιλογή έγκρισης παρακάτω:"
},
"deviceApprovalRequiredV2": {
- "message": "Device approval required"
+ "message": "Απαιτείται έγκριση συσκευής"
},
"selectAnApprovalOptionBelow": {
- "message": "Select an approval option below"
+ "message": "Επιλέξτε μια επιλογή έγκρισης παρακάτω"
},
"rememberThisDevice": {
"message": "Απομνημόνευση αυτής της συσκευής"
@@ -2986,7 +2995,7 @@
"message": "Η διεύθυνση ηλ. ταχυδρομείου του χρήστη λείπει"
},
"activeUserEmailNotFoundLoggingYouOut": {
- "message": "Active user email not found. Logging you out."
+ "message": "Το email χρήστη δεν βρέθηκε. Αποσυνδεθήκατε."
},
"deviceTrusted": {
"message": "Αξιόπιστη συσκευή"
@@ -3383,19 +3392,19 @@
"message": "Δεν βρέθηκαν ελεύθερες θύρες για τη σύνδεση sso."
},
"biometricsStatusHelptextUnlockNeeded": {
- "message": "Biometric unlock is unavailable because PIN or password unlock is required first."
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο επειδή απαιτείται πρώτα το ξεκλείδωμα με PIN ή κωδικό πρόσβασης."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο προς το παρόν."
},
"biometricsStatusHelptextAutoSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο λόγω εσφαλμένων ρυθμίσεων αρχείων συστήματος."
},
"biometricsStatusHelptextManualSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο λόγω εσφαλμένων ρυθμίσεων αρχείων συστήματος."
},
"biometricsStatusHelptextNotEnabledLocally": {
- "message": "Biometric unlock is unavailable because it is not enabled for $EMAIL$ in the Bitwarden desktop app.",
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο επειδή δεν είναι ενεργοποιημένο για το $EMAIL$ στην εφαρμογή Bitwarden για υπολογιστές.",
"placeholders": {
"email": {
"content": "$1",
@@ -3404,58 +3413,58 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "Το βιομετρικό ξεκλείδωμα δεν είναι διαθέσιμο για άγνωστο λόγο."
},
"authorize": {
- "message": "Authorize"
+ "message": "Εξουσιοδότηση"
},
"deny": {
- "message": "Deny"
+ "message": "Απόρριψη"
},
"sshkeyApprovalTitle": {
- "message": "Confirm SSH key usage"
+ "message": "Επιβεβαίωση χρήσης κλειδιού SSH"
},
"sshkeyApprovalMessageInfix": {
- "message": "is requesting access to"
+ "message": "ζητά πρόσβαση σε"
},
"unknownApplication": {
- "message": "An application"
+ "message": "Μια εφαρμογή"
},
"sshKeyPasswordUnsupported": {
- "message": "Importing password protected SSH keys is not yet supported"
+ "message": "Η εισαγωγή κλειδιών SSH που προστατεύονται με κωδικό πρόσβασης δεν υποστηρίζεται ακόμη"
},
"invalidSshKey": {
- "message": "The SSH key is invalid"
+ "message": "Το SSH κλειδί δεν είναι έγκυρο"
},
"sshKeyTypeUnsupported": {
- "message": "The SSH key type is not supported"
+ "message": "Ο τύπος κλειδιού SSH δεν υποστηρίζεται"
},
"importSshKeyFromClipboard": {
- "message": "Import key from clipboard"
+ "message": "Εισαγωγή κλειδιού από το πρόχειρο"
},
"sshKeyPasted": {
- "message": "SSH key imported successfully"
+ "message": "Το SSH κλειδί εισήχθη με επιτυχία"
},
"fileSavedToDevice": {
"message": "Το αρχείο αποθηκεύτηκε στη συσκευή. Διαχείριση από τις λήψεις της συσκευής σας."
},
"importantNotice": {
- "message": "Important notice"
+ "message": "Σημαντική ειδοποίηση"
},
"setupTwoStepLogin": {
- "message": "Set up two-step login"
+ "message": "Ρύθμιση σύνδεσης δύο βημάτων"
},
"newDeviceVerificationNoticeContentPage1": {
- "message": "Bitwarden will send a code to your account email to verify logins from new devices starting in February 2025."
+ "message": "Το Bitwarden θα στείλει έναν κωδικό στο email του λογαριασμού σας για να επαληθεύσει τις συνδέσεις από νέες συσκευές ξεκινώντας από τον Φεβρουάριο του 2025."
},
"newDeviceVerificationNoticeContentPage2": {
- "message": "You can set up two-step login as an alternative way to protect your account or change your email to one you can access."
+ "message": "Μπορείτε να ορίσετε σύνδεση δύο βημάτων ως εναλλακτικό τρόπο προστασίας του λογαριασμού σας ή να αλλάξετε το email σας σε ένα που μπορείτε να έχετε πρόσβαση."
},
"remindMeLater": {
- "message": "Remind me later"
+ "message": "Υπενθύμιση αργότερα"
},
"newDeviceVerificationNoticePageOneFormContent": {
- "message": "Do you have reliable access to your email, $EMAIL$?",
+ "message": "Έχετε αξιόπιστη πρόσβαση στο email σας, $EMAIL$;",
"placeholders": {
"email": {
"content": "$1",
@@ -3464,24 +3473,30 @@
}
},
"newDeviceVerificationNoticePageOneEmailAccessNo": {
- "message": "No, I do not"
+ "message": "Όχι, δεν έχω"
},
"newDeviceVerificationNoticePageOneEmailAccessYes": {
- "message": "Yes, I can reliably access my email"
+ "message": "Ναι, μπορώ να συνδεθώ αξιόπιστα στο ηλ. ταχυδρομείο email μου"
},
"turnOnTwoStepLogin": {
- "message": "Turn on two-step login"
+ "message": "Ενεργοποίηση σύνδεσης δύο βημάτων"
},
"changeAcctEmail": {
- "message": "Change account email"
+ "message": "Αλλαγή email λογαριασμού"
},
"organizationUpgradeRequired": {
- "message": "Organization upgrade required"
+ "message": "Απαιτείται αναβάθμιση οργανισμού"
},
"upgradeOrganization": {
- "message": "Upgrade organization"
+ "message": "Αναβάθμιση οργανισμού"
},
"upgradeOrganizationDesc": {
- "message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ "message": "Αυτή η λειτουργία, δεν είναι διαθέσιμη στους δωρεάν οργανισμούς. Μεταβείτε σε ένα πακέτο επί πληρωμής για να ξεκλειδώσετε περισσότερες λειτουργίες."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Απαιτείται ενημέρωση επέκτασης"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Η επέκταση περιηγητή που χρησιμοποιείτε είναι ξεπερασμένη. Παρακαλούμε ενημερώστε την ή απενεργοποιήστε την επικύρωση δακτυλικών αποτυπωμάτων του προγράμματος περιήγησης στις ρυθμίσεις της εφαρμογής για την επιφάνεια εργασίας."
}
}
diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json
index 8ae2cdc3ef6..4f18a88d994 100644
--- a/apps/desktop/src/locales/en/messages.json
+++ b/apps/desktop/src/locales/en/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
diff --git a/apps/desktop/src/locales/en_GB/messages.json b/apps/desktop/src/locales/en_GB/messages.json
index b33f2644403..986a6ad2e3a 100644
--- a/apps/desktop/src/locales/en_GB/messages.json
+++ b/apps/desktop/src/locales/en_GB/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organisation using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognise this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organisations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/en_IN/messages.json b/apps/desktop/src/locales/en_IN/messages.json
index e3780c16984..9afd76f697a 100644
--- a/apps/desktop/src/locales/en_IN/messages.json
+++ b/apps/desktop/src/locales/en_IN/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organisation using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognise this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organisations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/eo/messages.json b/apps/desktop/src/locales/eo/messages.json
index 4ba31aa743b..ce5be3b8c63 100644
--- a/apps/desktop/src/locales/eo/messages.json
+++ b/apps/desktop/src/locales/eo/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/es/messages.json b/apps/desktop/src/locales/es/messages.json
index 00e17cadc40..df6dded0477 100644
--- a/apps/desktop/src/locales/es/messages.json
+++ b/apps/desktop/src/locales/es/messages.json
@@ -885,6 +885,15 @@
"message": "Verificar con Duo Security para tu organización usando la aplicación Duo Mobile, SMS, llamada telefónica o llave de seguridad U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/et/messages.json b/apps/desktop/src/locales/et/messages.json
index a34820dc5a8..e7c33c432ba 100644
--- a/apps/desktop/src/locales/et/messages.json
+++ b/apps/desktop/src/locales/et/messages.json
@@ -885,6 +885,15 @@
"message": "Kinnita organisatsiooni jaoks Duo Security abil, kasutades selleks Duo Mobile rakendust, SMS-i, telefonikõnet või U2F turvavõtit.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/eu/messages.json b/apps/desktop/src/locales/eu/messages.json
index ff7faec50b1..d0e62383468 100644
--- a/apps/desktop/src/locales/eu/messages.json
+++ b/apps/desktop/src/locales/eu/messages.json
@@ -885,6 +885,15 @@
"message": "Egiaztatu zure erakunderako Duo Securityrekin Duo Mobile aplikazioa, SMS, telefono deia edo U2F segurtasun-gakoa erabiliz.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/fa/messages.json b/apps/desktop/src/locales/fa/messages.json
index 710e7ec3460..ea25d5057e9 100644
--- a/apps/desktop/src/locales/fa/messages.json
+++ b/apps/desktop/src/locales/fa/messages.json
@@ -885,6 +885,15 @@
"message": "از Duo Security با استفاده از برنامه تلفن همراه، پیامک، تماس تلفنی یا کلید امنیتی U2F برای تأیید سازمان خود استفاده کنید.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/fi/messages.json b/apps/desktop/src/locales/fi/messages.json
index fd3d9a8a3df..d05cf0e156c 100644
--- a/apps/desktop/src/locales/fi/messages.json
+++ b/apps/desktop/src/locales/fi/messages.json
@@ -250,10 +250,10 @@
"message": "Virhe"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Salauksen purkuvirhe"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden could not decrypt the vault item(s) listed below."
+ "message": "Bitwarden ei voinut purkaa alla olevia holvin kohteita."
},
"contactCSToAvoidDataLossPart1": {
"message": "Contact customer success",
@@ -885,6 +885,15 @@
"message": "Vahvista organisaatiollesi Duo Securityn avulla käyttäen Duo Mobile ‑sovellusta, tekstiviestiä, puhelua tai U2F-suojausavainta.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -2880,10 +2889,10 @@
"message": "Havaittiin heikko ja tietovuodosta löytynyt salasana. Sinun tulisi suojata tilisi vahvalla ja ainutlaatuisella salasanalla. Haluatko varmasti käyttää tätä salasanaa?"
},
"useThisPassword": {
- "message": "Use this password"
+ "message": "Käytä tätä salasanaa"
},
"useThisUsername": {
- "message": "Use this username"
+ "message": "Käytä tätä käyttäjätunnusta"
},
"checkForBreaches": {
"message": "Tarkasta esiintyykö salasanaa tunnetuissa tietovuodoissa"
@@ -3386,7 +3395,7 @@
"message": "Biometric unlock is unavailable because PIN or password unlock is required first."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "Biometrinen lukituksen avaus ei ole tällä hetkellä käytettävissä."
},
"biometricsStatusHelptextAutoSetupNeeded": {
"message": "Biometric unlock is unavailable due to misconfigured system files."
@@ -3476,12 +3485,18 @@
"message": "Muuta tilin sähköpostiosoitetta"
},
"organizationUpgradeRequired": {
- "message": "Organization upgrade required"
+ "message": "Organisaation päivitys vaaditaan"
},
"upgradeOrganization": {
- "message": "Upgrade organization"
+ "message": "Päivitä organisaatio"
},
"upgradeOrganizationDesc": {
- "message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ "message": "Ominaisuus ei ole ilmaisorganisaatioiden käytettävissä. Avaa lisää ominaisuuksia vaihtamalla maksulliseen tilaukseen."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/fil/messages.json b/apps/desktop/src/locales/fil/messages.json
index 179cc7a2a55..684c57b3c84 100644
--- a/apps/desktop/src/locales/fil/messages.json
+++ b/apps/desktop/src/locales/fil/messages.json
@@ -885,6 +885,15 @@
"message": "Patunayan sa Duo Security para sa iyong samahan gamit ang Duo Mobile app, SMS, tawag sa telepono, o U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/fr/messages.json b/apps/desktop/src/locales/fr/messages.json
index 5e6c9ed71a0..476799e97d1 100644
--- a/apps/desktop/src/locales/fr/messages.json
+++ b/apps/desktop/src/locales/fr/messages.json
@@ -885,6 +885,15 @@
"message": "Sécurisez votre organisation avec Duo Security à l'aide de l'application Duo Mobile, l'envoi d'un SMS, un appel vocal ou une clé de sécurité U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "WebAuthn FIDO2"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/gl/messages.json b/apps/desktop/src/locales/gl/messages.json
index bca12f16a7d..4f18a88d994 100644
--- a/apps/desktop/src/locales/gl/messages.json
+++ b/apps/desktop/src/locales/gl/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/he/messages.json b/apps/desktop/src/locales/he/messages.json
index 853e950dc0e..a8c34bd61e7 100644
--- a/apps/desktop/src/locales/he/messages.json
+++ b/apps/desktop/src/locales/he/messages.json
@@ -885,6 +885,15 @@
"message": "בצע אימות מול Duo Security עבור הארגון שלך באמצעות אפליקצית Duo לפלאפון, SMS, שיחת טלפון, או מפתח אבטחה U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/hi/messages.json b/apps/desktop/src/locales/hi/messages.json
index 59c0f3df59f..4a608e89d54 100644
--- a/apps/desktop/src/locales/hi/messages.json
+++ b/apps/desktop/src/locales/hi/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/hr/messages.json b/apps/desktop/src/locales/hr/messages.json
index 5fd7fae86a8..2eceeddde07 100644
--- a/apps/desktop/src/locales/hr/messages.json
+++ b/apps/desktop/src/locales/hr/messages.json
@@ -885,6 +885,15 @@
"message": "Potvrdi s Duo Security za svoju organizaciju pomoću aplikacije Duo Mobile, SMS-om, telefonskim pozivom ili U2F sigurnosnim ključem.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/hu/messages.json b/apps/desktop/src/locales/hu/messages.json
index 19fd8a7fe49..809f56c4892 100644
--- a/apps/desktop/src/locales/hu/messages.json
+++ b/apps/desktop/src/locales/hu/messages.json
@@ -885,6 +885,15 @@
"message": "Ellenőrzés szervezeti Duo Security segítségével a Duo Mobile alkalmazás, SMS, telefonhívás vagy U2F biztonsági kulcs használatával.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Személyazonosság ellenőrzése"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Nem ismerhető fel ez az eszköz. Írjuk be az email címünkre küldött kódot a személyazonosság igazolásához."
+ },
+ "continueLoggingIn": {
+ "message": "A bejelentkezés folytatása"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Ez a szolgáltatás nem elérhető ingyenes szervezeteknek. Váltás fizetős díjcsomagra a további funkciók feloldásához."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Kiterjesztés frissítés szükséges"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Al használt böngésző bővítmény elavult. Frissítsük vagy tiltsuk le a böngésző integráció ujjlenyomat ellenőrzését az asztali alkalmazás beállításainál."
}
}
diff --git a/apps/desktop/src/locales/id/messages.json b/apps/desktop/src/locales/id/messages.json
index 328200858e9..4e5abd62f75 100644
--- a/apps/desktop/src/locales/id/messages.json
+++ b/apps/desktop/src/locales/id/messages.json
@@ -885,6 +885,15 @@
"message": "Verifikasi dengan Duo Security untuk organisasi anda dengan menggunakan Aplikasi Duo Mobile, SMS, panggilan telepon atau kunci keamanan U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/it/messages.json b/apps/desktop/src/locales/it/messages.json
index e58d2fd665d..ee7da5c3582 100644
--- a/apps/desktop/src/locales/it/messages.json
+++ b/apps/desktop/src/locales/it/messages.json
@@ -885,6 +885,15 @@
"message": "Verifica con Duo Security per la tua organizzazione usando l'app Duo Mobile, SMS, chiamata telefonica, o chiave di sicurezza U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verifica la tua identità"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Non riconosciamo questo dispositivo. Inserisci il codice inviato alla tua e-mail per verificare la tua identità."
+ },
+ "continueLoggingIn": {
+ "message": "Continua l'accesso"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Questa funzione non è disponibile per le organizzazioni gratuite. Passa a un piano a pagamento per sbloccare più funzioni."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Aggiornamento estensione richiesto"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "L'estensione del browser che stai usando non è aggiornata. Aggiornala o disabilita la convalida dell'impronta digitale per l'integrazione del browser nelle impostazioni dell'app desktop."
}
}
diff --git a/apps/desktop/src/locales/ja/messages.json b/apps/desktop/src/locales/ja/messages.json
index 671ab6c830e..6f6dfaee2f6 100644
--- a/apps/desktop/src/locales/ja/messages.json
+++ b/apps/desktop/src/locales/ja/messages.json
@@ -885,6 +885,15 @@
"message": "組織の Duo Security を Duo Mobile アプリや SMS、電話、U2F セキュリティーキーを使用して認証します。",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ka/messages.json b/apps/desktop/src/locales/ka/messages.json
index a1951c542ad..e7bb32055b7 100644
--- a/apps/desktop/src/locales/ka/messages.json
+++ b/apps/desktop/src/locales/ka/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/km/messages.json b/apps/desktop/src/locales/km/messages.json
index bca12f16a7d..4f18a88d994 100644
--- a/apps/desktop/src/locales/km/messages.json
+++ b/apps/desktop/src/locales/km/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/kn/messages.json b/apps/desktop/src/locales/kn/messages.json
index 840b73558c6..23f4cd3464e 100644
--- a/apps/desktop/src/locales/kn/messages.json
+++ b/apps/desktop/src/locales/kn/messages.json
@@ -885,6 +885,15 @@
"message": "ಡ್ಯುಯೊ ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್, ಎಸ್ಎಂಎಸ್, ಫೋನ್ ಕರೆ ಅಥವಾ ಯು 2 ಎಫ್ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಸಂಸ್ಥೆಗಾಗಿ ಡ್ಯುಯೊ ಸೆಕ್ಯುರಿಟಿಯೊಂದಿಗೆ ಪರಿಶೀಲಿಸಿ.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ko/messages.json b/apps/desktop/src/locales/ko/messages.json
index 092cdf08afc..82b41979c09 100644
--- a/apps/desktop/src/locales/ko/messages.json
+++ b/apps/desktop/src/locales/ko/messages.json
@@ -885,6 +885,15 @@
"message": "Duo Mobile 앱, SMS, 전화 통화를 사용한 조직용 Duo Security 또는 U2F 보안 키를 사용하여 인증하세요.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/lt/messages.json b/apps/desktop/src/locales/lt/messages.json
index 1f010d33300..708393624fc 100644
--- a/apps/desktop/src/locales/lt/messages.json
+++ b/apps/desktop/src/locales/lt/messages.json
@@ -885,6 +885,15 @@
"message": "Patikrinkite su Duo Security savo organizacijai naudodami Duo Mobile programą, SMS žinutę, telefono skambutį arba U2F saugumo raktą.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/lv/messages.json b/apps/desktop/src/locales/lv/messages.json
index 292cff77fba..e26669f30ab 100644
--- a/apps/desktop/src/locales/lv/messages.json
+++ b/apps/desktop/src/locales/lv/messages.json
@@ -256,7 +256,7 @@
"message": "Bitwarden nevarēja atšifrēt zemāk uzskaitītos glabātavas vienumus."
},
"contactCSToAvoidDataLossPart1": {
- "message": "Contact customer success",
+ "message": "Sazināties ar klientu atbalstu",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
@@ -885,6 +885,15 @@
"message": "Apliecināšana ar savas apvienības Duo Security, izmantojot Duo Mobile lietotni, īsziņu, tālruņa zvanu vai U2F drošības atslēgu.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Apliecināt savu identitāti"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Mēs neatpazīstam šo ierīci. Jāievada kods, kas tika nosūtīts e-pastā, lai apliecinātu savu identitāti."
+ },
+ "continueLoggingIn": {
+ "message": "Turpināt pieteikšanos"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Šī iespēja nav pieejama bezmaksas apvienībām. Maksas plāna izvēle sniedz plašākas iespējas."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Nepieciešama paplašinājuma atjaunināšana"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Izmantotais pārlūka paplašinājums ir novecojis. Lūgums atjaunināt to vai atspējot pārlūka sasaistīšanas pirkstu nospieduma pārbaudi darbvirsmas lietotnes iestatījumos."
}
}
diff --git a/apps/desktop/src/locales/me/messages.json b/apps/desktop/src/locales/me/messages.json
index a03a80d01cd..46d8cfe8cb7 100644
--- a/apps/desktop/src/locales/me/messages.json
+++ b/apps/desktop/src/locales/me/messages.json
@@ -885,6 +885,15 @@
"message": "Potvrdite sa Duo Security za svoju organizaciju pomoću aplikacije Duo Mobile, SMS-a, telefonskog poziva ili U2F sigurnosnog ključa.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ml/messages.json b/apps/desktop/src/locales/ml/messages.json
index 41e4225c2df..1d27bc2182c 100644
--- a/apps/desktop/src/locales/ml/messages.json
+++ b/apps/desktop/src/locales/ml/messages.json
@@ -885,6 +885,15 @@
"message": "Duo Mobile, SMS, ഫോൺ കോൾ അല്ലെങ്കിൽ U2F സുരക്ഷാ കീ ഉപയോഗിച്ച് നിങ്ങളുടെ ഓർഗനൈസേഷനെ Duo Security ഉപയോഗിച്ച് പരിശോധിക്കുക.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/mr/messages.json b/apps/desktop/src/locales/mr/messages.json
index bca12f16a7d..4f18a88d994 100644
--- a/apps/desktop/src/locales/mr/messages.json
+++ b/apps/desktop/src/locales/mr/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/my/messages.json b/apps/desktop/src/locales/my/messages.json
index 2c16b832f33..46bfc5b7ee3 100644
--- a/apps/desktop/src/locales/my/messages.json
+++ b/apps/desktop/src/locales/my/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/nb/messages.json b/apps/desktop/src/locales/nb/messages.json
index f6fe08a8979..8c181361b45 100644
--- a/apps/desktop/src/locales/nb/messages.json
+++ b/apps/desktop/src/locales/nb/messages.json
@@ -885,6 +885,15 @@
"message": "Verifiser med Duo Security for din organisasjon gjennom Duo Mobile-appen, SMS, telefonsamtale, eller en U2F-sikkerhetsnøkkel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ne/messages.json b/apps/desktop/src/locales/ne/messages.json
index 7be28d2ced5..5aefc2febf4 100644
--- a/apps/desktop/src/locales/ne/messages.json
+++ b/apps/desktop/src/locales/ne/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/nl/messages.json b/apps/desktop/src/locales/nl/messages.json
index 877acb0d0dc..e0f5a27a5c6 100644
--- a/apps/desktop/src/locales/nl/messages.json
+++ b/apps/desktop/src/locales/nl/messages.json
@@ -885,6 +885,15 @@
"message": "Verificatie met Duo Security middels de Duo Mobile-app, sms, spraakoproep of een U2F-beveiligingssleutel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Controleer je identiteit"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We herkennen dit apparaat niet. Voer de code in die naar je e-mail is verzonden om je identiteit te verifiëren."
+ },
+ "continueLoggingIn": {
+ "message": "Doorgaan met inloggen"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Deze mogelijkheid is niet beschikbaar voor gratis organisaties. Schakel over naar een betaald abonnement om meer mogelijkheden te ontgrendelen."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extensie-uupdate vereist"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "De browserextensie die je gebruikt is verouderd. Werk deze bij of schakel de vingerafdruk validatie van de browserintegratie uit in instellingen van de desktop-app."
}
}
diff --git a/apps/desktop/src/locales/nn/messages.json b/apps/desktop/src/locales/nn/messages.json
index ef5a0603761..74eabeefa2e 100644
--- a/apps/desktop/src/locales/nn/messages.json
+++ b/apps/desktop/src/locales/nn/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/or/messages.json b/apps/desktop/src/locales/or/messages.json
index 374cbf1bc95..82404647e27 100644
--- a/apps/desktop/src/locales/or/messages.json
+++ b/apps/desktop/src/locales/or/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/pl/messages.json b/apps/desktop/src/locales/pl/messages.json
index 9cc63555545..c40ef452d49 100644
--- a/apps/desktop/src/locales/pl/messages.json
+++ b/apps/desktop/src/locales/pl/messages.json
@@ -885,6 +885,15 @@
"message": "Weryfikacja dostępu do Twojej organizacji z użyciem Duo Security poprzez aplikację Duo Mobile, SMS, połączenie telefoniczne lub klucz bezpieczeństwa U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/pt_BR/messages.json b/apps/desktop/src/locales/pt_BR/messages.json
index 33bceb61667..71818b81b4b 100644
--- a/apps/desktop/src/locales/pt_BR/messages.json
+++ b/apps/desktop/src/locales/pt_BR/messages.json
@@ -885,6 +885,15 @@
"message": "Verifique com o Duo Security utilizando o aplicativo Duo Mobile, SMS, chamada telefônica, ou chave de segurança U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "WebAuthn FIDO2"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/pt_PT/messages.json b/apps/desktop/src/locales/pt_PT/messages.json
index 61aa40e3307..86d8d33144f 100644
--- a/apps/desktop/src/locales/pt_PT/messages.json
+++ b/apps/desktop/src/locales/pt_PT/messages.json
@@ -885,6 +885,15 @@
"message": "Proteja a sua organização com a Duo Security utilizando a aplicação Duo Mobile, SMS, chamada telefónica ou uma chave de segurança U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verifique a sua identidade"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Não reconhecemos este dispositivo. Introduza o código enviado para o seu e-mail para verificar a sua identidade."
+ },
+ "continueLoggingIn": {
+ "message": "Continuar a iniciar sessão"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Esta funcionalidade não está disponível para organizações gratuitas. Mude para um plano pago para desbloquear mais funcionalidades."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Atualização da extensão necessária"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "A extensão do navegador que está a utilizar está desatualizada. Atualize-a ou desative a validação de impressões digitais da integração do navegador nas definições da aplicação para computador."
}
}
diff --git a/apps/desktop/src/locales/ro/messages.json b/apps/desktop/src/locales/ro/messages.json
index 17b9d050f03..a9d3f1d6109 100644
--- a/apps/desktop/src/locales/ro/messages.json
+++ b/apps/desktop/src/locales/ro/messages.json
@@ -885,6 +885,15 @@
"message": "Verificați cu Duo Security pentru organizația dvs. utilizând aplicația Duo Mobile, SMS, apel telefonic sau cheia de securitate U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/ru/messages.json b/apps/desktop/src/locales/ru/messages.json
index 408bc373178..d8b741d4cd4 100644
--- a/apps/desktop/src/locales/ru/messages.json
+++ b/apps/desktop/src/locales/ru/messages.json
@@ -885,6 +885,15 @@
"message": "Подтвердите с помощью Duo Security для вашей организации, используя приложение Duo Mobile, SMS, телефонный звонок или ключ безопасности U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Подтвердите вашу личность"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Мы не распознали это устройство. Введите код, отправленный на ваш email, чтобы подтвердить вашу личность."
+ },
+ "continueLoggingIn": {
+ "message": "Продолжить вход"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Эта функция недоступна для бесплатных организаций. Переключитесь на платный план, чтобы разблокировать дополнительные возможности."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Необходимо обновить расширение"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Используемое вами расширение браузера устарело. Пожалуйста, обновите его или отключите проверку интеграции браузера с помощью отпечатка пальца в настройках приложения для компьютера."
}
}
diff --git a/apps/desktop/src/locales/si/messages.json b/apps/desktop/src/locales/si/messages.json
index caec95368e5..eca0b7b9eb7 100644
--- a/apps/desktop/src/locales/si/messages.json
+++ b/apps/desktop/src/locales/si/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/sk/messages.json b/apps/desktop/src/locales/sk/messages.json
index 1c253151ab1..d02bd35546d 100644
--- a/apps/desktop/src/locales/sk/messages.json
+++ b/apps/desktop/src/locales/sk/messages.json
@@ -885,6 +885,15 @@
"message": "Overiť sa prostredníctvom Duo Security vašej organizácie použitím Duo Mobile aplikácie, SMS, telefonátu alebo U2F bezpečnostným kľúčom.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Overte svoju totožnosť"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Toto zariadenie nepoznáme. Na overenie vašej totožnosti zadajte kód, ktorý bol zaslaný na váš e-mail."
+ },
+ "continueLoggingIn": {
+ "message": "Pokračovať v prihlasovaní"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "Táto funkcia nie je k dispozícii pre bezplatné organizácie. Ak chcete odomknúť ďalšie funkcie, prejdite na platený plán."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Rozšírenie musíte aktualizovať"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Rozšírenie prehliadača, ktoré používate, je zastarané. Aktualizujte ho alebo zakážte overenie odtlačkov integrácie prehliadača v nastaveniach desktopovej aplikácie."
}
}
diff --git a/apps/desktop/src/locales/sl/messages.json b/apps/desktop/src/locales/sl/messages.json
index cd36695335b..d5c26aa266f 100644
--- a/apps/desktop/src/locales/sl/messages.json
+++ b/apps/desktop/src/locales/sl/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/sr/messages.json b/apps/desktop/src/locales/sr/messages.json
index d4109a70bf5..a647521a096 100644
--- a/apps/desktop/src/locales/sr/messages.json
+++ b/apps/desktop/src/locales/sr/messages.json
@@ -885,6 +885,15 @@
"message": "Провери са Duo Security за вашу организацију користећи Duo Mobile апликацију, СМС, телефонски позив, или U2F кључ.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/sv/messages.json b/apps/desktop/src/locales/sv/messages.json
index e26e44c6923..2db2418aae0 100644
--- a/apps/desktop/src/locales/sv/messages.json
+++ b/apps/desktop/src/locales/sv/messages.json
@@ -885,6 +885,15 @@
"message": "Verifiera med Duo Security för din organisation genom att använda Duo Mobile-appen, SMS, telefonsamtal eller en U2F-säkerhetsnyckel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/te/messages.json b/apps/desktop/src/locales/te/messages.json
index bca12f16a7d..4f18a88d994 100644
--- a/apps/desktop/src/locales/te/messages.json
+++ b/apps/desktop/src/locales/te/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/th/messages.json b/apps/desktop/src/locales/th/messages.json
index 3298ed16682..a2b93eb4086 100644
--- a/apps/desktop/src/locales/th/messages.json
+++ b/apps/desktop/src/locales/th/messages.json
@@ -885,6 +885,15 @@
"message": "Verify with Duo Security for your organization using the Duo Mobile app, SMS, phone call, or U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/tr/messages.json b/apps/desktop/src/locales/tr/messages.json
index 76ba6cb9d2d..b5ec934712d 100644
--- a/apps/desktop/src/locales/tr/messages.json
+++ b/apps/desktop/src/locales/tr/messages.json
@@ -885,6 +885,15 @@
"message": "Kuruluşunuzun Duo Security doğrulaması için Duo Mobile uygulaması, SMS, telefon görüşmesi veya U2F güvenlik anahtarını kullanın.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Kimliğinizi doğrulayın"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Bu cihazı tanıyamadık. Kimliğinizi doğrulamak için e-postanıza gönderilen kodu girin."
+ },
+ "continueLoggingIn": {
+ "message": "Giriş yapmaya devam et"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Uzantıyı güncellemeniz gerekiyor"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Kullandığınız tarayı uzantısı eskimiş. Lütfen uzantıyı güncelleyin veya masaüstü uygulamasının ayarlarından parmak izi doğrulaması için tarayıcı entegrasyonunu kapatın."
}
}
diff --git a/apps/desktop/src/locales/uk/messages.json b/apps/desktop/src/locales/uk/messages.json
index 4d9e8512421..de8fd8664ca 100644
--- a/apps/desktop/src/locales/uk/messages.json
+++ b/apps/desktop/src/locales/uk/messages.json
@@ -250,17 +250,17 @@
"message": "Помилка"
},
"decryptionError": {
- "message": "Decryption error"
+ "message": "Помилка розшифрування"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden could not decrypt the vault item(s) listed below."
+ "message": "Bitwarden не зміг розшифрувати вказані нижче елементи сховища."
},
"contactCSToAvoidDataLossPart1": {
- "message": "Contact customer success",
+ "message": "Зверніться до служби підтримки клієнтів,",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
- "message": "to avoid additional data loss.",
+ "message": "щоб уникнути втрати даних.",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"january": {
@@ -885,6 +885,15 @@
"message": "Авторизуйтесь за допомогою Duo Security для вашої організації з використанням програми Duo Mobile, SMS, телефонного виклику, або ключа безпеки U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Підтвердьте свою особу"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "Ми не розпізнаємо цей пристрій. Введіть код, надісланий на вашу електронну пошту, щоб підтвердити вашу особу."
+ },
+ "continueLoggingIn": {
+ "message": "Продовжити вхід"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -2880,10 +2889,10 @@
"message": "Виявлено слабкий пароль, який знайдено у витоку даних. Використовуйте надійний та унікальний пароль для захисту свого облікового запису. Ви дійсно хочете використати цей пароль?"
},
"useThisPassword": {
- "message": "Use this password"
+ "message": "Використати цей пароль"
},
"useThisUsername": {
- "message": "Use this username"
+ "message": "Використати це ім'я користувача"
},
"checkForBreaches": {
"message": "Перевірити відомі витоки даних для цього пароля"
@@ -3383,19 +3392,19 @@
"message": "Не знайдено вільних портів для цього входу SSO."
},
"biometricsStatusHelptextUnlockNeeded": {
- "message": "Biometric unlock is unavailable because PIN or password unlock is required first."
+ "message": "Біометричне розблокування недоступне, оскільки спочатку потрібно ввести PIN-код або пароль."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "Біометричне розблокування наразі недоступне."
},
"biometricsStatusHelptextAutoSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Біометричне розблокування недоступне через неправильно налаштовані системні файли."
},
"biometricsStatusHelptextManualSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "Біометричне розблокування недоступне через неправильно налаштовані системні файли."
},
"biometricsStatusHelptextNotEnabledLocally": {
- "message": "Biometric unlock is unavailable because it is not enabled for $EMAIL$ in the Bitwarden desktop app.",
+ "message": "Біометричне розблокування недоступне, оскільки воно не увімкнене для $EMAIL$ у програмі Bitwarden для комп'ютера.",
"placeholders": {
"email": {
"content": "$1",
@@ -3404,7 +3413,7 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "Біометричне розблокування зараз недоступне з невідомої причини."
},
"authorize": {
"message": "Авторизувати"
@@ -3476,12 +3485,18 @@
"message": "Змінити адресу е-пошти"
},
"organizationUpgradeRequired": {
- "message": "Organization upgrade required"
+ "message": "Необхідне оновлення організації"
},
"upgradeOrganization": {
- "message": "Upgrade organization"
+ "message": "Підвищити рівень організації"
},
"upgradeOrganizationDesc": {
- "message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ "message": "Ця функція недоступна для безплатних організацій. Передплатіть тарифний план, щоб розблокувати додаткові можливості."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Необхідно оновити розширення"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "Ви використовуєте застарілу версію розширення браузера. Оновіть його або вимкніть перевірку цифрового відбитка інтеграції з браузером у налаштуваннях комп'ютерної програми."
}
}
diff --git a/apps/desktop/src/locales/vi/messages.json b/apps/desktop/src/locales/vi/messages.json
index c0e79109ad8..4f996404b8a 100644
--- a/apps/desktop/src/locales/vi/messages.json
+++ b/apps/desktop/src/locales/vi/messages.json
@@ -885,6 +885,15 @@
"message": "Xác minh với Duo Security cho tổ chức của bạn sử dụng ứng dụng Duo Mobile, SMS, cuộc gọi điện thoại, hoặc khoá bảo mật U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/locales/zh_CN/messages.json b/apps/desktop/src/locales/zh_CN/messages.json
index 54b51259a8b..45ece148eeb 100644
--- a/apps/desktop/src/locales/zh_CN/messages.json
+++ b/apps/desktop/src/locales/zh_CN/messages.json
@@ -885,6 +885,15 @@
"message": "为您的组织使用 Duo Security 的 Duo 移动 App、短信、电话或 U2F 安全钥匙来进行验证。",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "验证您的身份"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "我们无法识别这个设备。请输入发送到您电子邮箱中的代码以验证您的身份。"
+ },
+ "continueLoggingIn": {
+ "message": "继续登录"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -2125,11 +2134,11 @@
"message": "当前访问次数"
},
"disableSend": {
- "message": "停用此 Send 则任何人无法访问它。",
+ "message": "停用此 Send 确保无人能访问它。",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendPasswordDesc": {
- "message": "可选,用户需要提供密码才能访问此 Send。",
+ "message": "可选。用户需要提供密码才能访问此 Send。",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNotesDesc": {
@@ -2172,10 +2181,10 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTextDesc": {
- "message": "您想要发送的文本。"
+ "message": "您想在此 Send 中附加的文本。"
},
"sendFileDesc": {
- "message": "您想要发送的文件。"
+ "message": "您想在此 Send 中附加的文件。"
},
"days": {
"message": "$DAYS$ 天",
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "此功能不适用于免费组织。请切换到付费计划以解锁更多功能。"
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "扩展需要更新"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "您正在使用的浏览器扩展已过时。请更新它或在桌面 App 的设置中禁用浏览器集成指纹验证。"
}
}
diff --git a/apps/desktop/src/locales/zh_TW/messages.json b/apps/desktop/src/locales/zh_TW/messages.json
index c59d3f8ddfb..ecbdf0cbf96 100644
--- a/apps/desktop/src/locales/zh_TW/messages.json
+++ b/apps/desktop/src/locales/zh_TW/messages.json
@@ -885,6 +885,15 @@
"message": "爲您的組織使用 Duo Security 的 Duo Mobile 程式、SMS、致電或 U2F 安全鑰匙進行驗證。",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
+ "verifyIdentity": {
+ "message": "Verify your Identity"
+ },
+ "weDontRecognizeThisDevice": {
+ "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ },
+ "continueLoggingIn": {
+ "message": "Continue logging in"
+ },
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
@@ -2740,13 +2749,13 @@
"message": "已傳送通知至您的裝置。"
},
"aNotificationWasSentToYourDevice": {
- "message": "A notification was sent to your device"
+ "message": "已傳送通知至您的裝置"
},
"makeSureYourAccountIsUnlockedAndTheFingerprintEtc": {
"message": "Make sure your account is unlocked and the fingerprint phrase matches on the other device"
},
"needAnotherOptionV1": {
- "message": "Need another option?"
+ "message": "需要另一個選項嗎?"
},
"fingerprintMatchInfo": {
"message": "請確保您的密碼庫已解鎖,並且指紋短語與其他裝置的一致。"
@@ -2761,7 +2770,7 @@
"message": "必須先在 Bitwarden 應用程式設定中開啟,才可以使用裝置登入。要改用其他選項嗎?"
},
"viewAllLogInOptions": {
- "message": "View all log in options"
+ "message": "檢視所有登入選項"
},
"viewAllLoginOptions": {
"message": "檢視所有登入選項"
@@ -2862,7 +2871,7 @@
"message": "No email?"
},
"goBack": {
- "message": "Go back"
+ "message": "返回"
},
"toEditYourEmailAddress": {
"message": "to edit your email address."
@@ -2880,16 +2889,16 @@
"message": "密碼強度不足,且該密碼已洩露。請使用一個強度足夠和獨特的密碼來保護您的帳戶。您確定要使用這個密碼嗎?"
},
"useThisPassword": {
- "message": "Use this password"
+ "message": "使用此密碼"
},
"useThisUsername": {
- "message": "Use this username"
+ "message": "使用此使用者名稱"
},
"checkForBreaches": {
"message": "檢查外洩的密碼資料庫中是否包含此密碼"
},
"loggedInExclamation": {
- "message": "Logged in!"
+ "message": "已登入!"
},
"important": {
"message": "重要:"
@@ -3483,5 +3492,11 @@
},
"upgradeOrganizationDesc": {
"message": "This feature is not available for free organizations. Switch to a paid plan to unlock more features."
+ },
+ "updateBrowserOrDisableFingerprintDialogTitle": {
+ "message": "Extension update required"
+ },
+ "updateBrowserOrDisableFingerprintDialogMessage": {
+ "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
}
}
diff --git a/apps/desktop/src/package-lock.json b/apps/desktop/src/package-lock.json
index f3dc98b8d9b..459785f59d3 100644
--- a/apps/desktop/src/package-lock.json
+++ b/apps/desktop/src/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@bitwarden/desktop",
- "version": "2025.1.4",
+ "version": "2025.1.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@bitwarden/desktop",
- "version": "2025.1.4",
+ "version": "2025.1.8",
"license": "GPL-3.0",
"dependencies": {
"@bitwarden/desktop-napi": "file:../desktop_native/napi"
diff --git a/apps/desktop/src/package.json b/apps/desktop/src/package.json
index 7497d31d621..db546590ba5 100644
--- a/apps/desktop/src/package.json
+++ b/apps/desktop/src/package.json
@@ -2,7 +2,7 @@
"name": "@bitwarden/desktop",
"productName": "Bitwarden",
"description": "A secure and free password manager for all of your devices.",
- "version": "2025.1.4",
+ "version": "2025.1.8",
"author": "Bitwarden Inc. (https://bitwarden.com)",
"homepage": "https://bitwarden.com",
"license": "GPL-3.0",
diff --git a/apps/web/package.json b/apps/web/package.json
index 73ecd8c3cb7..7047b0fb137 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -1,6 +1,6 @@
{
"name": "@bitwarden/web-vault",
- "version": "2025.1.1",
+ "version": "2025.1.2",
"scripts": {
"build:oss": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
"build:bit": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" webpack -c ../../bitwarden_license/bit-web/webpack.config.js",
diff --git a/apps/web/src/app/admin-console/common/base.people.component.ts b/apps/web/src/app/admin-console/common/base.people.component.ts
index 10632582e99..07ae67ac33b 100644
--- a/apps/web/src/app/admin-console/common/base.people.component.ts
+++ b/apps/web/src/app/admin-console/common/base.people.component.ts
@@ -6,7 +6,6 @@ import { firstValueFrom, concatMap, map, lastValueFrom, startWith, debounceTime
import { SearchPipe } from "@bitwarden/angular/pipes/search.pipe";
import { UserNamePipe } from "@bitwarden/angular/pipes/user-name.pipe";
-import { ModalService } from "@bitwarden/angular/services/modal.service";
import { ApiService } from "@bitwarden/common/abstractions/api.service";
import { SearchService } from "@bitwarden/common/abstractions/search.service";
import { OrganizationManagementPreferencesService } from "@bitwarden/common/admin-console/abstractions/organization-management-preferences/organization-management-preferences.service";
@@ -123,7 +122,6 @@ export abstract class BasePeopleComponent<
protected platformUtilsService: PlatformUtilsService,
protected keyService: KeyService,
protected validationService: ValidationService,
- protected modalService: ModalService,
private logService: LogService,
private searchPipe: SearchPipe,
protected userNamePipe: UserNamePipe,
diff --git a/apps/web/src/app/admin-console/organizations/members/components/member-dialog/member-dialog.component.html b/apps/web/src/app/admin-console/organizations/members/components/member-dialog/member-dialog.component.html
index 5e81e4ee711..bef479c231b 100644
--- a/apps/web/src/app/admin-console/organizations/members/components/member-dialog/member-dialog.component.html
+++ b/apps/web/src/app/admin-console/organizations/members/components/member-dialog/member-dialog.component.html
@@ -2,9 +2,11 @@
{{ title }}
- {{
- params.name
- }}
+ {{ (editParams$ | async)?.name }}{{ "revoked" | i18n }}