diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 081fecf1310..38a1597848e 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -94,7 +94,6 @@ apps/web/src/app/core @bitwarden/team-platform-dev
apps/web/src/app/shared @bitwarden/team-platform-dev
apps/web/src/translation-constants.ts @bitwarden/team-platform-dev
# Workflows
-# Any changes here should also be reflected in Renovate configuration
.github/workflows/automatic-issue-responses.yml @bitwarden/team-platform-dev
.github/workflows/automatic-pull-request-responses.yml @bitwarden/team-platform-dev
.github/workflows/build-browser-target.yml @bitwarden/team-platform-dev
@@ -164,7 +163,6 @@ apps/desktop/src/locales/en/messages.json
apps/web/src/locales/en/messages.json
## BRE team owns these workflows ##
-# Any changes here should also be reflected in Renovate configuration ##
.github/workflows/brew-bump-desktop.yml @bitwarden/dept-bre
.github/workflows/deploy-web.yml @bitwarden/dept-bre
.github/workflows/publish-cli.yml @bitwarden/dept-bre
diff --git a/.github/renovate.json5 b/.github/renovate.json5
index d0066ddd7ba..f30bc06e4a2 100644
--- a/.github/renovate.json5
+++ b/.github/renovate.json5
@@ -4,57 +4,22 @@
enabledManagers: ["cargo", "github-actions", "npm"],
packageRules: [
{
- // Group all build/test/lint workflows for GitHub Actions together for Platform.
- // Since they are code owners we don't need to assign a review team in Renovate.
- // Any changes here should also be reflected in CODEOWNERS.
- groupName: "github-action",
+ // Group all Github Action minor updates together to reduce PR noise.
+ groupName: "Minor github-actions updates",
matchManagers: ["github-actions"],
- matchFileNames: [
- "./github/workflows/automatic-issue-responses.yml",
- "./github/workflows/automatic-pull-request-responses.yml",
- "./github/workflows/build-browser.yml",
- "./github/workflows/build-cli.yml",
- "./github/workflows/build-desktop.yml",
- "./github/workflows/build-web.yml",
- "./github/workflows/chromatic.yml",
- "./github/workflows/crowdin-pull.yml",
- "./github/workflows/enforce-labels.yml",
- "./github/workflows/lint.yml",
- "./github/workflows/locales-lint.yml",
- "./github/workflows/repository-management.yml",
- "./github/workflows/scan.yml",
- "./github/workflows/stale-bot.yml",
- "./github/workflows/test.yml",
- "./github/workflows/version-auto-bump.yml",
- ],
- commitMessagePrefix: "[deps] Platform:",
+ matchUpdateTypes: ["minor"],
+ addLabels: ["hold"],
},
{
- // Group all release-related workflows for GitHub Actions together for BRE.
- // Since they are code owners we don't need to assign a review team in Renovate.
- // Any changes here should also be reflected in CODEOWNERS.
- groupName: "github-action",
- matchManagers: ["github-actions"],
- matchFileNames: [
- "./github/workflows/brew-bump-desktop.yml",
- "./github/workflows/deploy-web.yml",
- "./github/workflows/publish-cli.yml",
- "./github/workflows/publish-desktop.yml",
- "./github/workflows/publish-web.yml",
- "./github/workflows/retrieve-current-desktop-rollout.yml",
- "./github/workflows/staged-rollout-desktop.yml",
- "./github/workflows/release-cli.yml",
- "./github/workflows/release-desktop-beta.yml",
- "./github/workflows/release-desktop.yml",
- "./github/workflows/release-web.yml",
- ],
- commitMessagePrefix: "[deps] BRE:",
- addLabels: ["hold"],
+ // Enable support for Rust toolchain updates.
+ matchManagers: ["custom.regex"],
+ matchDepNames: ["rust"],
+ commitMessageTopic: "Rust",
},
{
// By default, we send patch updates to the Dependency Dashboard and do not generate a PR.
// We want to generate PRs for a select number of dependencies to ensure we stay up to date on these.
- matchPackageNames: ["browserslist", "electron", "rxjs", "typescript", "webpack"],
+ matchPackageNames: ["browserslist", "electron", "rxjs", "typescript", "webpack", "zone.js"],
matchUpdateTypes: ["patch"],
dependencyDashboardApproval: false,
},
@@ -80,49 +45,7 @@
enabled: false,
},
{
- // Renovate should manage patch updates for TypeScript and Zone.js, despite ignoring major and minor.
- matchPackageNames: ["typescript", "zone.js"],
- matchUpdateTypes: "patch",
- },
- {
- // We want to update all the Jest-related packages together, to reduce PR noise.
- groupName: "jest",
- matchPackageNames: ["@types/jest", "jest", "ts-jest", "jest-preset-angular"],
- },
- {
- // We need to group all napi-related packages together to avoid build errors caused by version incompatibilities.
- groupName: "napi",
- matchPackageNames: ["napi", "napi-build", "napi-derive"],
- },
- {
- // We need to group all macOS/iOS binding-related packages together to avoid build errors caused by version incompatibilities.
- groupName: "macOS/iOS bindings",
- matchPackageNames: ["core-foundation", "security-framework", "security-framework-sys"],
- },
- {
- // We need to group all zbus-related packages together to avoid build errors caused by version incompatibilities.
- groupName: "zbus",
- matchPackageNames: ["zbus", "zbus_polkit"],
- },
- {
- matchPackageNames: [
- "base64-loader",
- "buffer",
- "bufferutil",
- "core-js",
- "css-loader",
- "html-loader",
- "mini-css-extract-plugin",
- "postcss",
- "postcss-loader",
- "process",
- "sass",
- "sass-loader",
- "style-loader",
- "ts-loader",
- "url",
- "util",
- ],
+ matchPackageNames: ["buffer", "bufferutil", "core-js", "process", "url", "util"],
description: "Admin Console owned dependencies",
commitMessagePrefix: "[deps] AC:",
reviewers: ["team:team-admin-console-dev"],
@@ -136,6 +59,7 @@
{
matchPackageNames: [
"@angular-eslint/schematics",
+ "@eslint/compat",
"@typescript-eslint/rule-tester",
"@typescript-eslint/utils",
"angular-eslint",
@@ -158,6 +82,7 @@
{
matchPackageNames: [
"@angular-eslint/schematics",
+ "@eslint/compat",
"@typescript-eslint/rule-tester",
"@typescript-eslint/utils",
"angular-eslint",
@@ -173,7 +98,7 @@
"lint-staged",
"typescript-eslint",
],
- groupName: "Linting minor-patch",
+ groupName: "Minor and patch linting updates",
matchUpdateTypes: ["minor", "patch"],
},
{
@@ -230,6 +155,7 @@
"anyhow",
"arboard",
"babel-loader",
+ "base64-loader",
"base64",
"bindgen",
"browserslist",
@@ -237,6 +163,7 @@
"bytes",
"core-foundation",
"copy-webpack-plugin",
+ "css-loader",
"dirs",
"electron",
"electron-builder",
@@ -248,6 +175,7 @@
"futures",
"hex",
"homedir",
+ "html-loader",
"html-webpack-injector",
"html-webpack-plugin",
"interprocess",
@@ -256,6 +184,7 @@
"libc",
"log",
"lowdb",
+ "mini-css-extract-plugin",
"napi",
"napi-build",
"napi-derive",
@@ -266,15 +195,21 @@
"oslog",
"pin-project",
"pkg",
+ "postcss",
+ "postcss-loader",
"rand",
"rxjs",
+ "sass",
+ "sass-loader",
"scopeguard",
"security-framework",
"security-framework-sys",
"serde",
"serde_json",
"simplelog",
+ "style-loader",
"sysinfo",
+ "ts-loader",
"tsconfig-paths-webpack-plugin",
"type-fest",
"typenum",
@@ -296,6 +231,52 @@
commitMessagePrefix: "[deps] Platform:",
reviewers: ["team:team-platform-dev"],
},
+ {
+ // We need to group all napi-related packages together to avoid build errors caused by version incompatibilities.
+ groupName: "napi",
+ matchPackageNames: ["napi", "napi-build", "napi-derive"],
+ },
+ {
+ // We need to group all macOS/iOS binding-related packages together to avoid build errors caused by version incompatibilities.
+ groupName: "macOS/iOS bindings",
+ matchPackageNames: ["core-foundation", "security-framework", "security-framework-sys"],
+ },
+ {
+ // We need to group all zbus-related packages together to avoid build errors caused by version incompatibilities.
+ groupName: "zbus",
+ matchPackageNames: ["zbus", "zbus_polkit"],
+ },
+ {
+ // We group all webpack build-related minor and patch updates together to reduce PR noise.
+ // We include patch updates here because we want PRs for webpack patch updates and it's in this group.
+ matchPackageNames: [
+ "@babel/core",
+ "@babel/preset-env",
+ "babel-loader",
+ "base64-loader",
+ "browserslist",
+ "copy-webpack-plugin",
+ "css-loader",
+ "html-loader",
+ "html-webpack-injector",
+ "html-webpack-plugin",
+ "mini-css-extract-plugin",
+ "postcss-loader",
+ "postcss",
+ "sass-loader",
+ "sass",
+ "style-loader",
+ "ts-loader",
+ "tsconfig-paths-webpack-plugin",
+ "webpack-cli",
+ "webpack-dev-server",
+ "webpack-node-externals",
+ "webpack",
+ ],
+ description: "webpack-related build dependencies",
+ groupName: "Minor and patch webpack updates",
+ matchUpdateTypes: ["minor", "patch"],
+ },
{
matchPackageNames: [
"@angular-devkit/build-angular",
@@ -354,6 +335,11 @@
commitMessagePrefix: "[deps] SM:",
reviewers: ["team:team-secrets-manager-dev"],
},
+ {
+ // We need to update several Jest-related packages together, for version compatibility.
+ groupName: "jest",
+ matchPackageNames: ["@types/jest", "jest", "ts-jest", "jest-preset-angular"],
+ },
{
matchPackageNames: [
"@microsoft/signalr-protocol-msgpack",
@@ -421,6 +407,12 @@
commitMessagePrefix: "[deps] KM:",
reviewers: ["team:team-key-management-dev"],
},
+ {
+ // Any versions of lowdb above 1.0.0 are not compatible with CommonJS.
+ matchPackageNames: ["lowdb"],
+ allowedVersions: "1.0.0",
+ description: "Higher versions of lowdb are not compatible with CommonJS",
+ },
],
- ignoreDeps: ["@types/koa-bodyparser", "bootstrap", "node-ipc", "node", "npm"],
+ ignoreDeps: ["@types/koa-bodyparser", "bootstrap", "node-ipc", "@bitwarden/sdk-internal"],
}
diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml
index 86dc74f7351..fab0df693cb 100644
--- a/.github/workflows/build-desktop.yml
+++ b/.github/workflows/build-desktop.yml
@@ -428,12 +428,6 @@ jobs:
- name: Set up environmentF
run: choco install checksum --no-progress
- - name: Rust
- shell: pwsh
- run: |
- rustup target install i686-pc-windows-msvc
- rustup target install aarch64-pc-windows-msvc
-
- name: Print environment
run: |
node --version
@@ -681,10 +675,6 @@ jobs:
- name: Set up Node-gyp
run: python3 -m pip install setuptools
- - name: Rust
- shell: pwsh
- run: rustup target install aarch64-apple-darwin
-
- name: Print environment
run: |
node --version
@@ -890,10 +880,6 @@ jobs:
- name: Set up Node-gyp
run: python3 -m pip install setuptools
- - name: Rust
- shell: pwsh
- run: rustup target install aarch64-apple-darwin
-
- name: Print environment
run: |
node --version
@@ -1040,9 +1026,7 @@ jobs:
- name: Build Native Module
if: steps.cache.outputs.cache-hit != 'true'
working-directory: apps/desktop/desktop_native
- run: |
- rustup target add aarch64-apple-darwin
- node build.js cross-platform
+ run: node build.js cross-platform
- name: Build
if: steps.build-cache.outputs.cache-hit != 'true'
@@ -1139,10 +1123,6 @@ jobs:
- name: Set up Node-gyp
run: python3 -m pip install setuptools
- - name: Rust
- shell: pwsh
- run: rustup target install aarch64-apple-darwin
-
- name: Print environment
run: |
node --version
@@ -1296,9 +1276,7 @@ jobs:
- name: Build Native Module
if: steps.cache.outputs.cache-hit != 'true'
working-directory: apps/desktop/desktop_native
- run: |
- rustup target add aarch64-apple-darwin
- node build.js cross-platform
+ run: node build.js cross-platform
- name: Build
if: steps.build-cache.outputs.cache-hit != 'true'
diff --git a/.storybook/main.ts b/.storybook/main.ts
index 9583d1fc6f2..d5d116e99be 100644
--- a/.storybook/main.ts
+++ b/.storybook/main.ts
@@ -22,6 +22,7 @@ const config: StorybookConfig = {
"../bitwarden_license/bit-web/src/**/*.stories.@(js|jsx|ts|tsx)",
"../libs/tools/card/src/**/*.mdx",
"../libs/tools/card/src/**/*.stories.@(js|jsx|ts|tsx)",
+ "../libs/angular/src/**/*.stories.@(js|jsx|ts|tsx)",
],
addons: [
getAbsolutePath("@storybook/addon-links"),
diff --git a/apps/browser/package.json b/apps/browser/package.json
index 6237d91d4db..c44743add7c 100644
--- a/apps/browser/package.json
+++ b/apps/browser/package.json
@@ -1,6 +1,6 @@
{
"name": "@bitwarden/browser",
- "version": "2025.5.0",
+ "version": "2025.5.1",
"scripts": {
"build": "npm run build:chrome",
"build:chrome": "cross-env BROWSER=chrome MANIFEST_VERSION=3 NODE_OPTIONS=\"--max-old-space-size=8192\" webpack",
diff --git a/apps/browser/src/_locales/ar/messages.json b/apps/browser/src/_locales/ar/messages.json
index cfea18c24d2..48ae14fc1ce 100644
--- a/apps/browser/src/_locales/ar/messages.json
+++ b/apps/browser/src/_locales/ar/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "حفظ كتسجيل دخول جديد",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "تحديث تسجيل الدخول",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "اقتراحات التعبئة التلقائية"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "إظهار اقتراحات التعبئة التلقائية في حقول النموذج"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "إجراء المهلة"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "خيارات التخصيص الجديدة"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "تخصيص تجربة المخزن الخاص بك مع إجراءات النسخ السريعة، والوضع المدمج، والمزيد!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "عرض جميع إعدادات المظهر"
- },
"lock": {
"message": "قفل",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "لم يتم العثور على معرف فريد."
},
- "convertOrganizationEncryptionDesc": {
- "message": "يستخدم $ORGANIZATION$ SSO مع خادم مفتاح الاستضافة الذاتية. لم تعد هناك حاجة إلى كلمة مرور رئيسية لتسجيل الدخول لأعضاء هذه المنظمة.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "مغادرة المؤسسة"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/az/messages.json b/apps/browser/src/_locales/az/messages.json
index 20b7ae11103..c9096bce0d6 100644
--- a/apps/browser/src/_locales/az/messages.json
+++ b/apps/browser/src/_locales/az/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Yeni element, yeni bir pəncərədə açılır",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Saxlamazdan əvvəl düzəliş et",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ Bitwarden-də saxlanıldı.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "\"Bitwarden\"də saxlanıldı.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ Bitwarden-də güncəlləndi.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "\"Bitwarden\"də güncəlləndi.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "$ITEMTYPE$, $ITEMNAME$ seç",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Yeni giriş kimi saxla",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Giriş məlumatlarını güncəllə",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Bu girişi saxlamaq üçün kilidi açın",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Girişi saxla",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Avto-doldurma təklifləri"
},
+ "autofillSpotlightTitle": {
+ "message": "Avto-doldurma təkliflərini asanlıqla tap"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Bitwarden ilə ziddiyyət yaranmaması üçün brauzerinizin avto-doldurma ayarlarını söndürün."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "$BROWSER$ avto-doldurma ayarını söndür",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Avto-doldurmanı söndür"
+ },
"showInlineMenuLabel": {
"message": "Avto-doldurma təkliflərini form xanalarında göstər"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Vaxt bitmə əməliyyatı"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Yeni özəlləşdirmə seçimləri"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Cəld kopyalama fəaliyyəti, yığcam rejim və daha çoxu ilə seyf təcrübənizi özəlləşdirin!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Bütün Görünüş ayarlarına bax"
- },
"lock": {
"message": "Kilidlə",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Unikal identifikator tapılmadı."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$, self-hosted açar serveri ilə SSO istifadə edir. Bu təşkilatın üzvlərinin giriş etməsi üçün artıq ana parol tələb edilməyəcək.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Aşağıdakı təşkilatların üzvləri üçün artıq ana parol tələb olunmur. Lütfən aşağıdakı domeni təşkilatınızın inzibatçısı ilə təsdiqləyin."
+ },
+ "organizationName": {
+ "message": "Təşkilat adı"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domeni"
},
"leaveOrganization": {
"message": "Təşkilatı tərk et"
@@ -3596,6 +3615,14 @@
"message": "Şifrələnmiş məlumatları hər kəslə güvənli şəkildə paylaşmaq üçün \"Send\"i istifadə edin.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send, həssas məlumatlar təhlükəsizdir",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "İstənilən platformada faylları və dataları hər kəslə paylaşın. İfşa olunmağı məhdudlaşdıraraq məlumatlarınız ucdan-uca şifrələnmiş qalacaq.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Giriş lazımdır."
},
@@ -4513,25 +4540,31 @@
}
},
"downloadBitwarden": {
- "message": "Download Bitwarden"
+ "message": "Bitwarden-i endir"
},
"downloadBitwardenOnAllDevices": {
- "message": "Download Bitwarden on all devices"
+ "message": "Bitwarden-i bütün cihazlarda endir"
},
"getTheMobileApp": {
- "message": "Get the mobile app"
+ "message": "Mobil tətbiqi əldə et"
},
"getTheMobileAppDesc": {
- "message": "Access your passwords on the go with the Bitwarden mobile app."
+ "message": "Bitwarden mobil tətbiqi ilə parollarınıza hər yerdən müraciət edin."
},
"getTheDesktopApp": {
- "message": "Get the desktop app"
+ "message": "Masaüstü tətbiqi əldə et"
},
"getTheDesktopAppDesc": {
- "message": "Access your vault without a browser, then set up unlock with biometrics to expedite unlocking in both the desktop app and browser extension."
+ "message": "Seyfinizə brauzer olmadan müraciət edin, sonra həm masaüstü tətbiqində, həm də brauzer uzantısında kilid açma prosesini sürətləndirmək üçün biometrik ilə kilid açma prosesini qurun."
},
"downloadFromBitwardenNow": {
- "message": "Download from bitwarden.com now"
+ "message": "İndi bitwarden.com saytından endir"
+ },
+ "getItOnGooglePlay": {
+ "message": "Google Play-dən endir"
+ },
+ "downloadOnTheAppStore": {
+ "message": "App Store-dan endir"
},
"permanentlyDeleteAttachmentConfirmation": {
"message": "Bu qoşmanı birdəfəlik silmək istədiyinizə əminsiniz?"
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Bilinməyən bilinməyən bir səbəbə görə biometrik kilid açma əlçatmazdır."
},
+ "unlockVault": {
+ "message": "Seyfinizin kilidini saniyələr ərzində açın"
+ },
+ "unlockVaultDesc": {
+ "message": "Seyfinizə daha cəld müraciət etmək üçün kilid açma və bitmə vaxtı ayarlarını özəlləşdirə bilərsiniz."
+ },
+ "unlockPinSet": {
+ "message": "PIN ilə kilid açma təyini"
+ },
"authenticating": {
"message": "Kimlik doğrulama"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Bitwarden mobil, brauzer və masaüstü tətbiqləri ilə limitsiz cihaz arasında limitsiz parol saxlayın."
},
+ "nudgeBadgeAria": {
+ "message": "1 bildiriş"
+ },
"emptyVaultNudgeTitle": {
"message": "Mövcud parolları daxilə köçür"
},
@@ -5255,24 +5300,30 @@
"hasItemsVaultNudgeTitle": {
"message": "Seyfinizə xoş gəlmisiniz!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Hazırkı səhifə üçün elementləri avto-doldurun\nAsan müraciət üçün sevimli elementlər\nSeyfinizdə başqa elementləri axtarın"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Hazırkı səhifə üçün elementləri avto-doldur"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Asan müraciət üçün elementləri sevimlilərə əlavə et"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Seyfinizdə başqa bir şey axtarın"
},
"newLoginNudgeTitle": {
"message": "Avto-doldurma ilə vaxta qənaət edin"
},
"newLoginNudgeBodyOne": {
- "message": "Include a",
+ "message": "Bir veb sayt",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "daxil edin ki,",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyTwo": {
- "message": "so this login appears as an autofill suggestion.",
+ "message": "bu giriş məlumatları avto-doldurma təklifi kimi görünsün.",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
@@ -5298,13 +5349,33 @@
"message": "Gəlişdirici dostu SSH müraciəti"
},
"newSshNudgeBodyOne": {
- "message": "Store your keys and connect with the SSH agent for fast, encrypted authentication.",
+ "message": "Açarlarınızı saxlayın və sürətli, şifrələnmiş kimlik doğrulama üçün SSH agentinə bağlayın.",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
"newSshNudgeBodyTwo": {
- "message": "Learn more about SSH agent",
+ "message": "SSH agenti barədə daha ətraflı",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Cəld parol yaradın"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Klikləyərək güclü və unikal parolları asanlıqla yaradın",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "və girişlərinizi güvənli şəkildə saxlayın.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Girişlərinizi güvənli şəkildə saxlamağınıza kömək etməsi üçün Parol yarat düyməsinə klikləyərək güclü və unikal parolları asanlıqla yaradın.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Bu səhifəyə baxmaq icazəniz yoxdur. Fərqli hesabla giriş etməyə çalışın."
}
}
diff --git a/apps/browser/src/_locales/be/messages.json b/apps/browser/src/_locales/be/messages.json
index cfe2f54b6a7..0dd5ff4163f 100644
--- a/apps/browser/src/_locales/be/messages.json
+++ b/apps/browser/src/_locales/be/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Прапановы аўтазапаўнення"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Заблакіраваць",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Не знойдзены ўнікальны ідэнтыфікатар."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ выкарыстоўвае SSO з уласным серверам ключоў. Асноўны пароль для ўдзельнікаў гэтай арганізацыі больш не патрабуецца.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Выйсці з арганізацыі"
@@ -3596,6 +3615,14 @@
"message": "Выкарыстоўвайце Send'ы, каб бяспечна абагуляць зашыфраваную інфармацыю з іншымі.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Неабходны ўвод даных."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/bg/messages.json b/apps/browser/src/_locales/bg/messages.json
index cd6ff6dbbc8..0bf8dbce2b0 100644
--- a/apps/browser/src/_locales/bg/messages.json
+++ b/apps/browser/src/_locales/bg/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Нов елемент, отваря се в нов прозорец",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Редактиране преди запазване",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "Запазено в Битуорден: $ITEMNAME$.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "запазено в Битуорден.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "Обновено в Битуорден: $ITEMNAME$.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "обновено в Битуорден.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Избиране на $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Запазване като нов елемент за вписване",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Обновяване на данните за вписване",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Отключете, за да запазите тези данни за вписване",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Запазване на данните за вписване",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Предложения за авт. попълване"
},
+ "autofillSpotlightTitle": {
+ "message": "Намирайте лесно предложения за авт. попълване"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Изключете настройките за автоматично попълване на браузъра си, за да не си пречат с Битуорден."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Изключете автоматичното попълване на $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Изключване на автоматичното попълване"
+ },
"showInlineMenuLabel": {
"message": "Показване на предложения за авт. попълване на полетата във формуляри"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Действие при изтичането на времето за достъп"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Нови възможности за персонализиране"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Персонализирайте трезора си с бързи действия за копиране, компактен режим и още!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Преглед на всички настройки за външния вид"
- },
"lock": {
"message": "Заключване",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Няма намерен уникален идентификатор."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ използва еднократно удостоверяване със собствен сървър за ключове. Членовете на тази организация вече нямат нужда от главна парола за вписване.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "За членовете на следната организация вече не се изисква главна парола. Потвърдете домейна по-долу с администратора на организацията си."
+ },
+ "organizationName": {
+ "message": "Име на организацията"
+ },
+ "keyConnectorDomain": {
+ "message": "Домейн на конектора за ключове"
},
"leaveOrganization": {
"message": "Напускане на организацията"
@@ -3596,6 +3615,14 @@
"message": "Използвайте Изпращане, за да споделите безопасно шифрована информация с някого.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Изпращайте чувствителна информация сигурно",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Споделяйте сигурно файлове и данни с всекиго, през всяка система. Информацията Ви ще бъде защитена с шифроване от край до край, а видимостта ѝ ще бъде ограничена.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Полето е задължително да бъде попълнено."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Свалете от bitwarden.com сега"
},
+ "getItOnGooglePlay": {
+ "message": "Вземете го от Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Свалете от App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Наистина ли искате да изтриете завинаги този прикачен файл?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Отключването с биометрични данни не е налично по неизвестна причина."
},
+ "unlockVault": {
+ "message": "Отключвайте трезора си за секунди"
+ },
+ "unlockVaultDesc": {
+ "message": "Можете да персонализирате настройките си за отключване и време на активност, за да получавате достъп до трезора си по-бързо."
+ },
+ "unlockPinSet": {
+ "message": "Зададен е ПИН код за отключване"
+ },
"authenticating": {
"message": "Удостоверяване"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Съхранявайте неограничен брой пароли на множество устройства – с приложенията на Битуорден за мобилни телефони, браузър и компютър."
},
+ "nudgeBadgeAria": {
+ "message": "1 известие"
+ },
"emptyVaultNudgeTitle": {
"message": "Внасяне на съществуващи пароли"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Добре дошли в трезора си!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Елементи за авт. попълване в текущата страница\nЛюбими елементи за лесен достъп\nПотърсете в трезора си за нещо друго"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Попълвайте автоматично елементи в текущата страница"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Добавете любими елементи за бърз достъп"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Потърсете нещо друго в трезора си"
},
"newLoginNudgeTitle": {
"message": "Спестете време с автоматично попълване"
@@ -5306,5 +5357,25 @@
"message": "Научете повече относно SSH-агента",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Създавайте пароли бързо"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Създавайте лесно сложни и уникални пароли като щракнете върху",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "за да защитите данните си за вписване.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Създавайте лесно сложни и уникални пароли като щракнете върху бутона за генериране на парола, за да защитите данните си за вписване.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Нямате права за преглед на тази страница. Опитайте да се впишете с друг акаунт."
}
}
diff --git a/apps/browser/src/_locales/bn/messages.json b/apps/browser/src/_locales/bn/messages.json
index 5ec63e71809..f7f28115faa 100644
--- a/apps/browser/src/_locales/bn/messages.json
+++ b/apps/browser/src/_locales/bn/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "লক",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/bs/messages.json b/apps/browser/src/_locales/bs/messages.json
index 66f8e5db4ae..1dc35addd8e 100644
--- a/apps/browser/src/_locales/bs/messages.json
+++ b/apps/browser/src/_locales/bs/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Zaključaj",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ca/messages.json b/apps/browser/src/_locales/ca/messages.json
index 840304621ea..9517257ac3a 100644
--- a/apps/browser/src/_locales/ca/messages.json
+++ b/apps/browser/src/_locales/ca/messages.json
@@ -1057,7 +1057,7 @@
"description": "Clipboard is the operating system thing where you copy/paste data to on your device."
},
"notificationAddDesc": {
- "message": "Bitwarden ha de recordar aquesta contrasenya per a vosaltres?"
+ "message": "Ha de recordar Bitwarden aquesta contrasenya per a vosaltres?"
},
"notificationAddSave": {
"message": "Guarda"
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Suggeriments d'emplenament automàtic"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Mostra suggeriments d'emplenament automàtic als camps del formulari"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Acció després del temps d'espera"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Bloqueja",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No s'ha trobat cap identificador únic."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ està utilitzant SSO amb un servidor autoallotjat de claus. Ja no es requereix una contrasenya mestra d'inici de sessió per als membres d'aquesta organització.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Abandona l'organització"
@@ -3596,6 +3615,14 @@
"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."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "L'entrada és obligatòria."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Esteu segur que voleu suprimir definitivament aquest adjunt?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "S'està autenticant"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/cs/messages.json b/apps/browser/src/_locales/cs/messages.json
index 51c592b00b0..b213e0aee7d 100644
--- a/apps/browser/src/_locales/cs/messages.json
+++ b/apps/browser/src/_locales/cs/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Nová položka, otevře se v novém okně",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Upravit před uložením",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ - uloženo do Bitwardenu.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "uloženo do Bitwardenu.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ - aktualizováno v Bitwardenu.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "aktualizováno v Bitwardenu.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Vybrat $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Uložit jako nové přihlašovací údaje",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Aktualizovat přihlašovací údaje",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Odemknout pro uložení tohoto přihlášení",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Uložit přihlašovací údaje",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Návrhy automatického vyplňování"
},
+ "autofillSpotlightTitle": {
+ "message": "Snadné hledání návrhů automatického vyplňování"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Vypněte nastavení automatického vyplňování prohlížeče, takže nebude v rozporu s Bitwardenem."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Vypnout automatické vyplňování $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Vypnout automatické vyplňování"
+ },
"showInlineMenuLabel": {
"message": "Zobrazit návrhy automatického vyplňování v polích formuláře"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Akce vypršení časového limitu"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nové volby přizpůsobení"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Přizpůsobte si svůj trezor s rychlými kopírovacími akcemi, kompaktním režimem a dalším!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Zobrazit všechna nastavení vzhledu"
- },
"lock": {
"message": "Zamknout",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nenalezen žádný jedinečný identifikátor."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ používá SSO s vlastním serverem s klíči. Hlavní heslo pro členy této organizace již není vyžadováno.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Hlavní heslo již není vyžadováno pro členy následující organizace. Potvrďte níže uvedenou doménu u správce Vaší organizace."
+ },
+ "organizationName": {
+ "message": "Název organizace"
+ },
+ "keyConnectorDomain": {
+ "message": "Doména Key Connectoru"
},
"leaveOrganization": {
"message": "Opustit organizaci"
@@ -3444,7 +3463,7 @@
"message": "Nastavení automatického vyplňování"
},
"autofillKeyboardShortcutSectionTitle": {
- "message": "Zkrátka automatického vyplňování"
+ "message": "Zkratka automatického vyplňování"
},
"autofillKeyboardShortcutUpdateLabel": {
"message": "Změnit zkratku"
@@ -3596,6 +3615,14 @@
"message": "Použijte Send pro bezpečné sdílení šifrovaných informací s kýmkoliv.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Posílejte citlivé informace bezpečně",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Sdílejte bezpečně soubory a data s kýmkoli na libovolné platformě. Vaše informace zůstanou šifrovány a zároveň omezují expozici.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Je vyžadován vstup."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Stáhnout z bitwarden.com nyní"
},
+ "getItOnGooglePlay": {
+ "message": "Získejte ji na Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Stáhnout v App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Opravdu chcete tuto přílohu navždy smazat?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrické odemknutí je momentálně z neznámého důvodu nedostupné."
},
+ "unlockVault": {
+ "message": "Rychlé odemknutí trezoru"
+ },
+ "unlockVaultDesc": {
+ "message": "Pro rychlejší přístup k trezoru můžete upravit nastavení odemknutí a vypršení časového limitu."
+ },
+ "unlockPinSet": {
+ "message": "PIN pro odemknutí byl nastaven"
+ },
"authenticating": {
"message": "Ověřování"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Uložte neomezená hesla na neomezených zařízeních s Bitwardenem na mobilu, prohlížeči a desktopové aplikaci."
},
+ "nudgeBadgeAria": {
+ "message": "1 oznámení"
+ },
"emptyVaultNudgeTitle": {
"message": "Importovat existující hesla"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Vítejte ve Vašem trezoru!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Položky automatického vyplňování pro aktuální stránku\nOblíbené položky pro snadný přístup\nNajděte v trezoru něco jiného"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Položky automatického vyplňování aktuální stránky"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Oblíbené položky pro snadný přístup"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Najít v trezoru něco jiného"
},
"newLoginNudgeTitle": {
"message": "Ušetřete čas s automatickým vyplňováním"
@@ -5306,5 +5357,25 @@
"message": "Další informace o SSH agentovi",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Rychlé vytvoření hesla"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Jednoduše vytvořte silná a unikátní hesla klepnutím na",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "aby Vám pomohlo udržet Vaše přihlašovací údaje v bezpečí.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Jednoduše vytvořte silná a unikátní hesla klepnutím na tlačítko Generovat heslo, které Vám pomůže udržet Vaše přihlašovací údaje v bezpečí.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Nemáte oprávnění k zobrazení této stránky. Zkuste se přihlásit jiným účtem."
}
}
diff --git a/apps/browser/src/_locales/cy/messages.json b/apps/browser/src/_locales/cy/messages.json
index 8c0b1d97f60..ee74d1e45e2 100644
--- a/apps/browser/src/_locales/cy/messages.json
+++ b/apps/browser/src/_locales/cy/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Cadw fel manylion mewngofnodi newydd",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Cloi",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/da/messages.json b/apps/browser/src/_locales/da/messages.json
index 3887e291334..da24e1bcfb9 100644
--- a/apps/browser/src/_locales/da/messages.json
+++ b/apps/browser/src/_locales/da/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autoudfyldningsforslag"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Vis autoudfyld-menu i formularfelter"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeouthandling"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lås",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Ingen entydig identifikator fundet."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ bruger SSO med en selv-hostet nøgleserver. En hovedadgangskode er ikke længere påkrævet for at logge ind for medlemmer af denne organisation.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Forlad organisation"
@@ -3596,6 +3615,14 @@
"message": "Brug Send til at dele krypterede oplysninger sikkert med nogen.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input obligatorisk."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Sikker på, at denne vedhæftning skal slettes permanent?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrisk oplåsning er p.t. utilgængelig grundet en ukendt årsag."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Godkender"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/de/messages.json b/apps/browser/src/_locales/de/messages.json
index a7871f6ebca..f7303885551 100644
--- a/apps/browser/src/_locales/de/messages.json
+++ b/apps/browser/src/_locales/de/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Neuer Eintrag, öffnet sich in neuem Fenster",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Vor dem Speichern bearbeiten",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ in Bitwarden gespeichert.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "in Bitwarden gespeichert.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ in Bitwarden aktualisiert.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "in Bitwarden aktualisiert.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "$ITEMTYPE$, $ITEMNAME$ auswählen",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Als neue Zugangsdaten speichern",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Zugangsdaten aktualisieren",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Entsperren, um diese Zugangsdaten zu speichern",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Zugangsdaten speichern",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Vorschläge zum Auto-Ausfüllen"
},
+ "autofillSpotlightTitle": {
+ "message": "Auto-Ausfüllen-Vorschläge einfach finden"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Deaktiviere die Auto-Ausfüllen-Einstellungen deines Browsers, damit sie nicht mit Bitwarden in Konflikt geraten."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "$BROWSER$ Auto-Ausfüllen deaktivieren",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Auto-Ausfüllen deaktivieren"
+ },
"showInlineMenuLabel": {
"message": "Vorschläge zum Auto-Ausfüllen in Formularfeldern anzeigen"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout-Aktion"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Neue Personalisierungs-Optionen"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Personalisiere deinen Tresor mit Schnellkopier-Aktionen, Kompaktmodus und mehr!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Alle Aussehen-Einstellungen anzeigen"
- },
"lock": {
"message": "Sperren",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Keine eindeutige Kennung gefunden."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ verwendet SSO mit einem selbst gehosteten Schlüsselserver. Ein Master-Passwort ist nicht mehr erforderlich, damit sich Mitglieder dieser Organisation anmelden können.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Für Mitglieder der folgenden Organisation ist kein Master-Passwort mehr erforderlich. Bitte bestätige die folgende Domain bei deinem Organisations-Administrator."
+ },
+ "organizationName": {
+ "message": "Name der Organisation"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector-Domain"
},
"leaveOrganization": {
"message": "Organisation verlassen"
@@ -3596,6 +3615,14 @@
"message": "Verwende Send, um verschlüsselte Informationen sicher mit anderen zu teilen.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Sensible Informationen sicher versenden",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Teile Dateien und Daten sicher mit jedem auf jeder Plattform. Deine Informationen bleiben Ende-zu-Ende-Verschlüsselt, während die Verbreitung begrenzt wird.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Eingabe ist erforderlich."
},
@@ -4519,19 +4546,25 @@
"message": "Bitwarden auf allen Geräten herunterladen"
},
"getTheMobileApp": {
- "message": "Get the mobile app"
+ "message": "Smartphone-App herunterladen"
},
"getTheMobileAppDesc": {
- "message": "Access your passwords on the go with the Bitwarden mobile app."
+ "message": "Greife von unterwegs mit der Bitwarden Smartphone-App auf deine Passwörter zu."
},
"getTheDesktopApp": {
- "message": "Get the desktop app"
+ "message": "Desktop-App herunterladen"
},
"getTheDesktopAppDesc": {
- "message": "Access your vault without a browser, then set up unlock with biometrics to expedite unlocking in both the desktop app and browser extension."
+ "message": "Greife ohne Browser auf deinen Tresor zu und richte dann das Entsperren mit Biometrie ein, um die Entsperrung sowohl in der Desktop-App als auch in der Browser-Erweiterung zu beschleunigen."
},
"downloadFromBitwardenNow": {
- "message": "Download from bitwarden.com now"
+ "message": "Jetzt von bitwarden.com herunterladen"
+ },
+ "getItOnGooglePlay": {
+ "message": "Verfügbar bei Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Im App Store herunterladen"
},
"permanentlyDeleteAttachmentConfirmation": {
"message": "Bist du sicher, dass du diesen Anhang dauerhaft löschen möchtest?"
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrisches Entsperren ist derzeit aus einem unbekannten Grund nicht verfügbar."
},
+ "unlockVault": {
+ "message": "Entsperre deinen Tresor in Sekunden"
+ },
+ "unlockVaultDesc": {
+ "message": "Du kannst deine Entsperr- und Timeout-Einstellungen anpassen, um schneller auf deinen Tresor zuzugreifen."
+ },
+ "unlockPinSet": {
+ "message": "Entsperr-PIN festgelegt"
+ },
"authenticating": {
"message": "Authentifizierung"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Speicher eine unbegrenzte Anzahl von Passwörtern auf unbegrenzt vielen Geräten mit Bitwarden-Apps für Smartphones, Browser und Desktop."
},
+ "nudgeBadgeAria": {
+ "message": "1 Benachrichtigung"
+ },
"emptyVaultNudgeTitle": {
"message": "Vorhandene Passwörter importieren"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Willkommen in deinem Tresor!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Auto-Ausfüllen-Einträge für die aktuelle Seite\nFavoriten-Einträge für einfachen Zugriff\nDurchsuche deinen Tresor nach etwas anderem"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Einträge für die aktuelle Seite automatisch ausfüllen"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favoriten-Einträge für einfachen Zugriff"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Deinen Tresor nach etwas anderem durchsuchen"
},
"newLoginNudgeTitle": {
"message": "Spare Zeit mit Auto-Ausfüllen"
@@ -5306,5 +5357,25 @@
"message": "Erfahre mehr über den SSH-Agenten",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Passwörter schnell erstellen"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Generiere ganz einfach starke und einzigartige Passwörter, indem du auf den",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": ", um deine Zugangsdaten sicher aufzubewahren.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Generiere ganz einfach starke und einzigartige Passwörter, indem du auf den \"Passwort generieren\"-Button klickst, um deine Zugangsdaten sicher aufzubewahren.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Du hast keine Berechtigung, diese Seite anzuzeigen. Versuche dich mit einem anderen Konto anzumelden."
}
}
diff --git a/apps/browser/src/_locales/el/messages.json b/apps/browser/src/_locales/el/messages.json
index 122af181349..ed81dfa744e 100644
--- a/apps/browser/src/_locales/el/messages.json
+++ b/apps/browser/src/_locales/el/messages.json
@@ -3,7 +3,7 @@
"message": "Bitwarden"
},
"appLogoLabel": {
- "message": "Bitwarden logo"
+ "message": "Λογότυπο του Bitwarden"
},
"extName": {
"message": "Διαχειριστής Κωδικών Πρόσβασης Bitwarden",
@@ -911,7 +911,7 @@
"message": "Όχι"
},
"location": {
- "message": "Location"
+ "message": "Τοποθεσία"
},
"unexpectedError": {
"message": "Παρουσιάστηκε ένα μη αναμενόμενο σφάλμα."
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Πρόταση αυτόματης συμπλήρωσης"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Απενεργοποίηση αυτόματης συμπλήρωσης"
+ },
"showInlineMenuLabel": {
"message": "Εμφάνιση μενού αυτόματης συμπλήρωσης στα πεδία της φόρμας"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Ενέργεια κατά τη λήξη χρονικού ορίου"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Κλείδωμα",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Δε βρέθηκε μοναδικό αναγνωριστικό."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ χρησιμοποιεί SSO με έναν αυτοεξυπηρετητή κλειδιών. Ένας κύριος κωδικός πρόσβασης δεν απαιτείται πλέον για να συνδεθείτε για τα μέλη αυτού του οργανισμού.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Αποχώρηση από τον οργανισμό"
@@ -3596,6 +3615,14 @@
"message": "Χρήση Send για ασφαλή κοινοποίηση κρυπτογραφημένων πληροφοριών με οποιονδήποτε.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Απαιτείται εισαγωγή."
},
@@ -4137,7 +4164,7 @@
"message": "Ενεργός λογαριασμός"
},
"bitwardenAccount": {
- "message": "Bitwarden account"
+ "message": "Λογαριασμός Bitwarden"
},
"availableAccounts": {
"message": "Διαθέσιμοι λογαριασμοί"
@@ -4328,7 +4355,7 @@
}
},
"viewItemTitleWithField": {
- "message": "View item - $ITEMNAME$ - $FIELD$",
+ "message": "Προβολή στοιχείου - $ITEMNAME$ - $FIELD$",
"description": "Title for a link that opens a view for an item.",
"placeholders": {
"itemname": {
@@ -4352,7 +4379,7 @@
}
},
"autofillTitleWithField": {
- "message": "Autofill - $ITEMNAME$ - $FIELD$",
+ "message": "Αυτόματη συμπλήρωση - $ITEMNAME$ - $FIELD$",
"description": "Title for a button that autofills a login item.",
"placeholders": {
"itemname": {
@@ -4513,7 +4540,7 @@
}
},
"downloadBitwarden": {
- "message": "Download Bitwarden"
+ "message": "Λήψη του Bitwarden"
},
"downloadBitwardenOnAllDevices": {
"message": "Download Bitwarden on all devices"
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Είστε σίγουροι ότι θέλετε να διαγράψετε οριστικά αυτό το συνημμένο;"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Ταυτοποίηση"
},
@@ -5006,7 +5048,7 @@
"description": "Notification message for when a password has been regenerated"
},
"saveToBitwarden": {
- "message": "Save to Bitwarden",
+ "message": "Αποθήκευση στο Bitwarden",
"description": "Confirmation message for saving a login to Bitwarden"
},
"spaceCharacterDescriptor": {
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5250,13 +5295,19 @@
"message": "Use the importer to quickly transfer logins to Bitwarden without manually adding them."
},
"emptyVaultNudgeButton": {
- "message": "Import now"
+ "message": "Εισαγωγή τώρα"
},
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5267,7 +5318,7 @@
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "Ιστότοπος",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 4a3f3a08d5f..7e03a822b6d 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -1098,6 +1098,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -2227,6 +2231,9 @@
"useThisPassword": {
"message": "Use this password"
},
+ "useThisPassphrase": {
+ "message": "Use this passphrase"
+ },
"useThisUsername": {
"message": "Use this username"
},
@@ -3037,14 +3044,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3638,6 +3645,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -5042,6 +5057,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5364,6 +5388,23 @@
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
"noPermissionsViewPage": {
"message": "You do not have permissions to view this page. Try logging in with a different account."
}
diff --git a/apps/browser/src/_locales/en_GB/messages.json b/apps/browser/src/_locales/en_GB/messages.json
index e91c653721c..5eecf989894 100644
--- a/apps/browser/src/_locales/en_GB/messages.json
+++ b/apps/browser/src/_locales/en_GB/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customisation options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customise your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organisation.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organisation. Please confirm the domain below with your organisation administrator."
+ },
+ "organizationName": {
+ "message": "Organisation name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organisation"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customise your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavourite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favourite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/en_IN/messages.json b/apps/browser/src/_locales/en_IN/messages.json
index 94c929c6999..adb3cf6ec32 100644
--- a/apps/browser/src/_locales/en_IN/messages.json
+++ b/apps/browser/src/_locales/en_IN/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customisation options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customise your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organisation. Please confirm the domain below with your organisation administrator."
+ },
+ "organizationName": {
+ "message": "Organisation name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave Organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customise your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavourite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favourite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/es/messages.json b/apps/browser/src/_locales/es/messages.json
index 2950f838c9c..94d02848b5f 100644
--- a/apps/browser/src/_locales/es/messages.json
+++ b/apps/browser/src/_locales/es/messages.json
@@ -3,7 +3,7 @@
"message": "Bitwarden"
},
"appLogoLabel": {
- "message": "Bitwarden logo"
+ "message": "Logo de Bitwarden"
},
"extName": {
"message": "Bitwarden - Administrador de contraseñas",
@@ -656,7 +656,7 @@
"message": "Tu navegador web no soporta copiar al portapapeles facilmente. Cópialo manualmente."
},
"verifyYourIdentity": {
- "message": "Verify your identity"
+ "message": "Verifica tu identidad"
},
"weDontRecognizeThisDevice": {
"message": "No reconocemos este dispositivo. Introduce el código enviado a tu correo electrónico para verificar tu identidad."
@@ -872,16 +872,16 @@
"message": "Iniciar sesión en Bitwarden"
},
"enterTheCodeSentToYourEmail": {
- "message": "Enter the code sent to your email"
+ "message": "Introduce el código enviado a tu correo electrónico"
},
"enterTheCodeFromYourAuthenticatorApp": {
"message": "Introduce el código de tu aplicación de autenticación"
},
"pressYourYubiKeyToAuthenticate": {
- "message": "Press your YubiKey to authenticate"
+ "message": "Pulsa tu YubiKey para identificarte"
},
"duoTwoFactorRequiredPageSubtitle": {
- "message": "Duo two-step login is required for your account. Follow the steps below to finish logging in."
+ "message": "Se requiere inicio de sesión en dos pasos para tu cuenta. Sigue los pasos siguientes para terminar de iniciar sesión."
},
"followTheStepsBelowToFinishLoggingIn": {
"message": "Follow the steps below to finish logging in."
@@ -911,7 +911,7 @@
"message": "No"
},
"location": {
- "message": "Location"
+ "message": "Ubicación"
},
"unexpectedError": {
"message": "Ha ocurrido un error inesperado."
@@ -1063,7 +1063,7 @@
"message": "Guardar"
},
"notificationViewAria": {
- "message": "View $ITEMNAME$, opens in new window",
+ "message": "Ver $ITEMNAME$, se abre en una nueva ventana",
"placeholders": {
"itemName": {
"content": "$1"
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Nuevo Elemento, se abre en una nueva ventana",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Sugerencias de autocompletar"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Acción de tiempo agotado"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Bloquear",
"description": "Verb form: to make secure or inaccessible by"
@@ -2575,7 +2594,7 @@
"message": "Illustration of the Bitwarden autofill menu displaying a generated password."
},
"updateInBitwarden": {
- "message": "Update in Bitwarden"
+ "message": "Actualizar en Bitwarden"
},
"updateInBitwardenSlideDesc": {
"message": "Bitwarden will then prompt you to update the password in the password manager.",
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Identificador único no encontrado."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ está usando SSO con un servidor de claves autoalojado. Los miembros de esta organización ya no necesitarán una contraseña maestra para iniciar sesión.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Ya no es necesaria una contraseña maestra para los miembros de la siguiente organización. Confirma el dominio que aparece a continuación con el administrador de tu organización."
+ },
+ "organizationName": {
+ "message": "Nombre de la organización"
+ },
+ "keyConnectorDomain": {
+ "message": "Dominio del conector de clave"
},
"leaveOrganization": {
"message": "Abandonar organización"
@@ -3387,7 +3406,7 @@
"message": "Inicio de sesión en proceso"
},
"logInRequestSent": {
- "message": "Request sent"
+ "message": "Solicitud enviada"
},
"exposedMasterPassword": {
"message": "Contraseña maestra comprometida"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Entrada requerida."
},
@@ -3798,7 +3825,7 @@
"description": "Screen reader text (aria-label) for new login button within inline menu"
},
"newCard": {
- "message": "New card",
+ "message": "Nueva tarjeta",
"description": "Button text to display within inline menu when there are no matching items on a credit card field"
},
"addNewCardItemAria": {
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Consíguela en Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Descarga en la App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "¿Estás seguro de que deseas eliminar permanentemente este adjunto?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autenticando"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Guarda contraseñas ilimitadas a través de dispositivos ilimitados con aplicaciones móviles, de navegador y de escritorio de Bitwarden."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/et/messages.json b/apps/browser/src/_locales/et/messages.json
index 5a51598a4f8..26b4bf69fb4 100644
--- a/apps/browser/src/_locales/et/messages.json
+++ b/apps/browser/src/_locales/et/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lukusta",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Unikaalset identifikaatorit ei leitud."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ kasutab SSO-d koos enda majutatud võtmeserveriga. Selle organisatsiooni liikmed ei pea sisselogimisel enam ülemparooli kasutama.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Lahku organisatsioonist"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Sisestus on nõutav."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/eu/messages.json b/apps/browser/src/_locales/eu/messages.json
index 73053b8597b..b3f525d7be5 100644
--- a/apps/browser/src/_locales/eu/messages.json
+++ b/apps/browser/src/_locales/eu/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Blokeatu",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Ez da identifikatzaile bakarrik aurkitu."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ SSO erabiltzen ari da ostatatze propioa duen gako-zerbitzari batekin. Dagoeneko ez da pasahitz nagusirik behar erakunde honetako kideentzat saioa hasteko.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Utzi erakundea"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/fa/messages.json b/apps/browser/src/_locales/fa/messages.json
index 6f6ccecdd34..33a779a7909 100644
--- a/apps/browser/src/_locales/fa/messages.json
+++ b/apps/browser/src/_locales/fa/messages.json
@@ -3,10 +3,10 @@
"message": "Bitwarden"
},
"appLogoLabel": {
- "message": "Bitwarden logo"
+ "message": "لوگو Bitwarden"
},
"extName": {
- "message": "مدیریت رمز عبور Bitwarden",
+ "message": "مدیریت کلمه عبور Bitwarden",
"description": "Extension name, MUST be less than 40 characters (Safari restriction)"
},
"extDesc": {
@@ -17,28 +17,28 @@
"message": "وارد شوید یا یک حساب کاربری بسازید تا به گاوصندوق امنتان دسترسی یابید."
},
"inviteAccepted": {
- "message": "Invitation accepted"
+ "message": "دعوتنامه پذیرفته شد"
},
"createAccount": {
"message": "ایجاد حساب کاربری"
},
"newToBitwarden": {
- "message": "New to Bitwarden?"
+ "message": "در Bitwarden تازه وارد هستید؟"
},
"logInWithPasskey": {
- "message": "Log in with passkey"
+ "message": "با کلید عبور وارد شوید"
},
"useSingleSignOn": {
- "message": "Use single sign-on"
+ "message": "استفاده از ورود تک مرحلهای"
},
"welcomeBack": {
- "message": "Welcome back"
+ "message": "خوش آمدید"
},
"setAStrongPassword": {
- "message": "تنظیم رمز عبور قوی"
+ "message": "تنظیم کلمه عبور قوی"
},
"finishCreatingYourAccountBySettingAPassword": {
- "message": "ایجاد حساب خود را با تنظیم رمز عبور تکمیل کنید"
+ "message": "ایجاد حساب کاربری خود را با تنظیم کلمه عبور تکمیل کنید"
},
"enterpriseSingleSignOn": {
"message": "ورود به سیستم پروژه"
@@ -65,7 +65,7 @@
"message": "یادآور کلمه عبور اصلی کمک میکند در صورت فراموشی آن را به یاد بیارید."
},
"masterPassHintText": {
- "message": "If you forget your password, the password hint can be sent to your email. $CURRENT$/$MAXIMUM$ character maximum.",
+ "message": "اگر کلمه عبور خود را فراموش کنید، یادآور کلمه عبور میتواند به ایمیل شما ارسال شود. حداکثر $CURRENT$/$MAXIMUM$ کاراکتر.",
"placeholders": {
"current": {
"content": "$1",
@@ -84,7 +84,7 @@
"message": "یادآور کلمه عبور اصلی (اختیاری)"
},
"passwordStrengthScore": {
- "message": "Password strength score $SCORE$",
+ "message": "امتیاز قدرت کلمه عبور $SCORE$",
"placeholders": {
"score": {
"content": "$1",
@@ -93,10 +93,10 @@
}
},
"joinOrganization": {
- "message": "Join organization"
+ "message": "به سازمان بپیوندید"
},
"joinOrganizationName": {
- "message": "Join $ORGANIZATIONNAME$",
+ "message": "به $ORGANIZATIONNAME$ بپیوندید",
"placeholders": {
"organizationName": {
"content": "$1",
@@ -105,7 +105,7 @@
}
},
"finishJoiningThisOrganizationBySettingAMasterPassword": {
- "message": "Finish joining this organization by setting a master password."
+ "message": "با تعیین یک کلمه عبور اصلی، عضویت خود در این سازمان را کامل کنید."
},
"tab": {
"message": "زبانه"
@@ -132,7 +132,7 @@
"message": "کپی کلمه عبور"
},
"copyPassphrase": {
- "message": "Copy passphrase"
+ "message": "کپی عبارت عبور"
},
"copyNote": {
"message": "کپی یادداشت"
@@ -150,31 +150,31 @@
"message": "کپی کد امنیتی"
},
"copyName": {
- "message": "Copy name"
+ "message": "کپی نام"
},
"copyCompany": {
- "message": "Copy company"
+ "message": "کپی شرکت"
},
"copySSN": {
- "message": "Copy Social Security number"
+ "message": "کپی شماره کد ملی"
},
"copyPassportNumber": {
- "message": "Copy passport number"
+ "message": "کپی شماره گذرنامه"
},
"copyLicenseNumber": {
- "message": "Copy license number"
+ "message": "کپی شماره گواهینامه"
},
"copyPrivateKey": {
- "message": "Copy private key"
+ "message": "کپی کلید خصوصی"
},
"copyPublicKey": {
- "message": "Copy public key"
+ "message": "کپی کلید عمومی"
},
"copyFingerprint": {
- "message": "Copy fingerprint"
+ "message": "کپی اثر انگشت"
},
"copyCustomField": {
- "message": "Copy $FIELD$",
+ "message": "کپی $FIELD$",
"placeholders": {
"field": {
"content": "$1",
@@ -183,17 +183,17 @@
}
},
"copyWebsite": {
- "message": "Copy website"
+ "message": "کپی وبسایت"
},
"copyNotes": {
- "message": "Copy notes"
+ "message": "کپی یادداشتها"
},
"copy": {
- "message": "Copy",
+ "message": "کپی",
"description": "Copy to clipboard"
},
"fill": {
- "message": "Fill",
+ "message": "پر کردن",
"description": "This string is used on the vault page to indicate autofilling. Horizontal space is limited in the interface here so try and keep translations as concise as possible."
},
"autoFill": {
@@ -209,10 +209,10 @@
"message": "پر کردن خودکار هویت"
},
"fillVerificationCode": {
- "message": "Fill verification code"
+ "message": "پر کردن کد تأیید"
},
"fillVerificationCodeAria": {
- "message": "Fill Verification Code",
+ "message": "پر کردن کد تأیید",
"description": "Aria label for the heading displayed the inline menu for totp code autofill"
},
"generatePasswordCopied": {
@@ -255,16 +255,16 @@
"message": "افزودن مورد"
},
"accountEmail": {
- "message": "Account email"
+ "message": "حساب ایمیل"
},
"requestHint": {
- "message": "Request hint"
+ "message": "درخواست راهنمایی"
},
"requestPasswordHint": {
- "message": "Request password hint"
+ "message": "درخواست یادآور کلمه عبور"
},
"enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou": {
- "message": "Enter your account email address and your password hint will be sent to you"
+ "message": "نشانی ایمیل حساب کاربری خود را وارد کنید تا راهنمای کلمه عبور برای شما ارسال شود"
},
"getMasterPasswordHint": {
"message": "دریافت یادآور کلمه عبور اصلی"
@@ -291,25 +291,25 @@
"message": "تغییر کلمه عبور اصلی"
},
"continueToWebApp": {
- "message": "Continue to web app?"
+ "message": "با برنامه وب ادامه میدهید؟"
},
"continueToWebAppDesc": {
"message": "ویژگیهای بیشتر حساب Bitwarden خود را در برنامه وب کاوش کنید."
},
"continueToHelpCenter": {
- "message": "Continue to Help Center?"
+ "message": "به مرکز راهنمایی ادامه میدهید؟"
},
"continueToHelpCenterDesc": {
"message": "درباره استفاده از Bitwarden در مرکز راهنما بیشتر بیاموزید."
},
"continueToBrowserExtensionStore": {
- "message": "آیا میخواهید به فروشگاه افزونه مرورگر ادامه دهید?"
+ "message": "آیا میخواهید به فروشگاه افزونه مرورگر ادامه دهید؟"
},
"continueToBrowserExtensionStoreDesc": {
"message": "به دیگران کمک کنید تا بفهمند آیا Bitwarden برایشان مناسب است یا نه. به فروشگاه افزونه مرورگر خود بروید و نظر خود را به اشتراک بگذارید."
},
"changeMasterPasswordOnWebConfirmation": {
- "message": "You can change your master password on the Bitwarden web app."
+ "message": "میتوانید کلمه عبور اصلی خود را در برنامه وب Bitwarden تغییر دهید."
},
"fingerprintPhrase": {
"message": "عبارت اثر انگشت",
@@ -332,37 +332,37 @@
"message": "درباره"
},
"moreFromBitwarden": {
- "message": "More from Bitwarden"
+ "message": "موارد بیشتر از Bitwarden"
},
"continueToBitwardenDotCom": {
- "message": "Continue to bitwarden.com?"
+ "message": "به bitwarden.com ادامه میدهید؟"
},
"bitwardenForBusiness": {
"message": "Bitwarden برای کسب و کارها"
},
"bitwardenAuthenticator": {
- "message": "تاییدکننده هویت Bitwarden"
+ "message": "تأییدکننده هویت Bitwarden"
},
"continueToAuthenticatorPageDesc": {
- "message": "Bitwarden Authenticator allows you to store authenticator keys and generate TOTP codes for 2-step verification flows. Learn more on the bitwarden.com website"
+ "message": "احراز هویت کننده Bitwarden به شما امکان میدهد کلیدهای احراز هویت را ذخیره کرده و کدهای TOTP را برای فرآیندهای تأیید دومرحلهای تولید کنید. برای اطلاعات بیشتر به وبسایت bitwarden.com مراجعه کنید"
},
"bitwardenSecretsManager": {
- "message": "Bitwarden Secrets Manager"
+ "message": "مدیر اسرار Bitwarden"
},
"continueToSecretsManagerPageDesc": {
- "message": "Securely store, manage, and share developer secrets with Bitwarden Secrets Manager. Learn more on the bitwarden.com website."
+ "message": "اسرار توسعه دهنده را با مدیر اسرا Bitwarden بهصورت ایمن ذخیره، مدیریت و به اشتراک بگذارید. برای اطلاعات بیشتر به وبسایت bitwarden.com مراجعه کنید."
},
"passwordlessDotDev": {
"message": "Passwordless.dev"
},
"continueToPasswordlessDotDevPageDesc": {
- "message": "Create smooth and secure login experiences free from traditional passwords with Passwordless.dev. Learn more on the bitwarden.com website."
+ "message": "با استفاده از Passwordless.dev تجربههای ورود روان و ایمنی را بدون نیاز به کلمات عبور سنتی ایجاد کنید. برای اطلاعات بیشتر به وبسایت bitwarden.com مراجعه کنید."
},
"freeBitwardenFamilies": {
"message": "خانوادههای رایگان Bitwarden"
},
"freeBitwardenFamiliesPageDesc": {
- "message": "You are eligible for Free Bitwarden Families. Redeem this offer today in the web app."
+ "message": "شما واجد شرایط استفاده رایگان از Bitwarden Families هستید. این پیشنهاد را امروز در نسخه وب دریافت کنید."
},
"version": {
"message": "نسخه"
@@ -383,7 +383,7 @@
"message": "ويرايش پوشه"
},
"editFolderWithName": {
- "message": "Edit folder: $FOLDERNAME$",
+ "message": "ویرایش پوشه: $FOLDERNAME$",
"placeholders": {
"foldername": {
"content": "$1",
@@ -392,22 +392,22 @@
}
},
"newFolder": {
- "message": "New folder"
+ "message": "پوشه جدید"
},
"folderName": {
- "message": "Folder name"
+ "message": "نام پوشه"
},
"folderHintText": {
- "message": "Nest a folder by adding the parent folder's name followed by a “/”. Example: Social/Forums"
+ "message": "برای تو در تو کردن یک پوشه، نام پوشه والد را وارد کرده و سپس یک “/” اضافه کنید. مثال: Social/Forums"
},
"noFoldersAdded": {
- "message": "No folders added"
+ "message": "هیچ پوشهای اضافه نشد"
},
"createFoldersToOrganize": {
- "message": "Create folders to organize your vault items"
+ "message": "برای ساماندهی موردهای گاوصندوق خود پوشه ایجاد کنید"
},
"deleteFolderPermanently": {
- "message": "Are you sure you want to permanently delete this folder?"
+ "message": "مطمئنید میخواهید این پوشه را برای همیشه پاک کنید؟"
},
"deleteFolder": {
"message": "حذف پوشه"
@@ -450,7 +450,7 @@
"message": "به طور خودکار کلمههای عبور قوی و منحصر به فرد برای ورود به سیستم خود ایجاد کنید."
},
"bitWebVaultApp": {
- "message": "Bitwarden web app"
+ "message": "برنامه وب Bitwarden"
},
"importItems": {
"message": "درون ریزی موارد"
@@ -462,19 +462,19 @@
"message": "تولید کلمه عبور"
},
"generatePassphrase": {
- "message": "Generate passphrase"
+ "message": "تولید عبارت عبور"
},
"passwordGenerated": {
- "message": "Password generated"
+ "message": "کلمه عبور تولید شد"
},
"passphraseGenerated": {
- "message": "Passphrase generated"
+ "message": "عبارت عبور تولید شد"
},
"usernameGenerated": {
- "message": "Username generated"
+ "message": "نام کاربری تولید شد"
},
"emailGenerated": {
- "message": "Email generated"
+ "message": "ایمیل تولید شد"
},
"regeneratePassword": {
"message": "تولید مجدد کلمه عبور"
@@ -486,11 +486,11 @@
"message": "طول"
},
"include": {
- "message": "Include",
+ "message": "شامل",
"description": "Card header for password generator include block"
},
"uppercaseDescription": {
- "message": "Include uppercase characters",
+ "message": "شامل حروف بزرگ باشد",
"description": "Tooltip for the password generator uppercase character checkbox"
},
"uppercaseLabel": {
@@ -498,7 +498,7 @@
"description": "Label for the password generator uppercase character checkbox"
},
"lowercaseDescription": {
- "message": "Include lowercase characters",
+ "message": "شامل حروف کوچک باشد",
"description": "Full description for the password generator lowercase character checkbox"
},
"lowercaseLabel": {
@@ -506,7 +506,7 @@
"description": "Label for the password generator lowercase character checkbox"
},
"numbersDescription": {
- "message": "Include numbers",
+ "message": "شامل اعداد",
"description": "Full description for the password generator numbers checkbox"
},
"numbersLabel": {
@@ -514,7 +514,7 @@
"description": "Label for the password generator numbers checkbox"
},
"specialCharactersDescription": {
- "message": "Include special characters",
+ "message": "افزودن کاراکترهای خاص",
"description": "Full description for the password generator special characters checkbox"
},
"numWords": {
@@ -537,11 +537,11 @@
"message": "حداقل حرف خاص"
},
"avoidAmbiguous": {
- "message": "Avoid ambiguous characters",
+ "message": "از کاراکترهای مبهم خودداری کن",
"description": "Label for the avoid ambiguous characters checkbox."
},
"generatorPolicyInEffect": {
- "message": "Enterprise policy requirements have been applied to your generator options.",
+ "message": "نیازمندیهای سیاست سازمانی بر گزینههای تولید کننده شما اعمال شدهاند.",
"description": "Indicates that a policy limits the credential generator screen."
},
"searchVault": {
@@ -566,7 +566,7 @@
"message": "کلمه عبور"
},
"totp": {
- "message": "Authenticator secret"
+ "message": "کلید مخفی احراز کننده هویت"
},
"passphrase": {
"message": "عبارت عبور"
@@ -587,7 +587,7 @@
"message": "یادداشتها"
},
"privateNote": {
- "message": "Private note"
+ "message": "یادداشت خصوصی"
},
"note": {
"message": "یادداشت"
@@ -608,10 +608,10 @@
"message": "راه اندازی"
},
"launchWebsite": {
- "message": "Launch website"
+ "message": "باز کردن وبسایت"
},
"launchWebsiteName": {
- "message": "Launch website $ITEMNAME$",
+ "message": "باز کردن وبسایت $ITEMNAME$",
"placeholders": {
"itemname": {
"content": "$1",
@@ -632,19 +632,19 @@
"message": "ساير"
},
"unlockMethods": {
- "message": "Unlock options"
+ "message": "باز کردن امکانات"
},
"unlockMethodNeededToChangeTimeoutActionDesc": {
"message": "یک روش بازگشایی برای پایان زمان مجاز تنظیم کنید."
},
"unlockMethodNeeded": {
- "message": "Set up an unlock method in Settings"
+ "message": "یک روش باز کردن قفل را در تنظیمات راهاندازی کنید"
},
"sessionTimeoutHeader": {
- "message": "Session timeout"
+ "message": "پایان زمان نشست"
},
"vaultTimeoutHeader": {
- "message": "Vault timeout"
+ "message": "متوقف شدن گاوصندوق"
},
"otherOptions": {
"message": "سایر گزینهها"
@@ -656,25 +656,25 @@
"message": "مرورگر شما از کپی کلیپ بورد آسان پشتیبانی نمیکند. به جای آن به صورت دستی کپی کنید."
},
"verifyYourIdentity": {
- "message": "Verify your identity"
+ "message": "هویت خود را تأیید کنید"
},
"weDontRecognizeThisDevice": {
- "message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
+ "message": "ما این دستگاه را نمیشناسیم. برای تأیید هویت خود، کدی را که به ایمیلتان ارسال شده وارد کنید."
},
"continueLoggingIn": {
- "message": "Continue logging in"
+ "message": "ادامه ورود"
},
"yourVaultIsLocked": {
"message": "گاوصندوق شما قفل شده است. برای ادامه هویت خود را تأیید کنید."
},
"yourVaultIsLockedV2": {
- "message": "Your vault is locked"
+ "message": "گاوصندوقتان قفل شد"
},
"yourAccountIsLocked": {
- "message": "Your account is locked"
+ "message": "حساب شما قفل شده است"
},
"or": {
- "message": "or"
+ "message": "یا"
},
"unlock": {
"message": "باز کردن قفل"
@@ -699,13 +699,13 @@
"message": "متوقف شدن گاوصندوق"
},
"vaultTimeout1": {
- "message": "Timeout"
+ "message": "پایان زمان"
},
"lockNow": {
"message": "الان قفل شود"
},
"lockAll": {
- "message": "Lock all"
+ "message": "قفل کردن همه"
},
"immediately": {
"message": "بلافاصله"
@@ -753,16 +753,16 @@
"message": "امنیت"
},
"confirmMasterPassword": {
- "message": "Confirm master password"
+ "message": "تأیید کلمه عبور اصلی"
},
"masterPassword": {
- "message": "Master password"
+ "message": "کلمه عبور اصلی"
},
"masterPassImportant": {
- "message": "Your master password cannot be recovered if you forget it!"
+ "message": "کلمههای عبور اصلی در صورت فراموشی قابل بازیابی نیستند!"
},
"masterPassHintLabel": {
- "message": "Master password hint"
+ "message": "یادآور کلمه عبور اصلی"
},
"errorOccurred": {
"message": "خطایی رخ داده است"
@@ -796,10 +796,10 @@
"message": "حساب کاربری جدید شما ساخته شد! حالا میتوانید وارد شوید."
},
"newAccountCreated2": {
- "message": "Your new account has been created!"
+ "message": "حساب کاربری جدید شما ایجاد شده است!"
},
"youHaveBeenLoggedIn": {
- "message": "You have been logged in!"
+ "message": "شما با موفقیت وارد شدید!"
},
"youSuccessfullyLoggedIn": {
"message": "شما با موفقیت وارد شدید"
@@ -814,7 +814,7 @@
"message": "کد تأیید مورد نیاز است."
},
"webauthnCancelOrTimeout": {
- "message": "The authentication was cancelled or took too long. Please try again."
+ "message": "احراز هویت لغو شد یا بیش از حد طول کشید. لطفاً دوباره تلاش کنید."
},
"invalidVerificationCode": {
"message": "کد تأیید نامعتبر است"
@@ -833,73 +833,73 @@
"message": "ناتوان در پر کردن خودکار مورد انتخاب شده در این صفحه. اطلاعات را کپی و جایگذاری کنید."
},
"totpCaptureError": {
- "message": "Unable to scan QR code from the current webpage"
+ "message": "امکان اسکن کد QR از صفحه وب فعلی وجود ندارد"
},
"totpCaptureSuccess": {
"message": "کلید احراز هویت اضافه شد"
},
"totpCapture": {
- "message": "Scan authenticator QR code from current webpage"
+ "message": "اسکن کد QR احراز هویت کننده از صفحه وب فعلی"
},
"totpHelperTitle": {
- "message": "Make 2-step verification seamless"
+ "message": "تأیید دو مرحلهای را بدون دردسر کنید"
},
"totpHelper": {
- "message": "Bitwarden can store and fill 2-step verification codes. Copy and paste the key into this field."
+ "message": "Bitwarden میتواند کدهای تأیید دو مرحلهای را ذخیره و پر کند. کلید را کپی کرده و در این فیلد قرار دهید."
},
"totpHelperWithCapture": {
- "message": "Bitwarden can store and fill 2-step verification codes. Select the camera icon to take a screenshot of this website's authenticator QR code, or copy and paste the key into this field."
+ "message": "Bitwarden میتواند کدهای تأیید دو مرحلهای را ذخیره و پر کند. برای اسکن کد QR احراز هویت کننده این وبسایت، روی آیکون دوربین کلیک کنید یا کلید را کپی کرده و در این فیلد قرار دهید."
},
"learnMoreAboutAuthenticators": {
- "message": "Learn more about authenticators"
+ "message": "درباره احراز هویت کنندهها بیشتر بدانید"
},
"copyTOTP": {
- "message": "Copy Authenticator key (TOTP)"
+ "message": "کپی کلید احراز هویت (TOTP)"
},
"loggedOut": {
"message": "خارج شد"
},
"loggedOutDesc": {
- "message": "You have been logged out of your account."
+ "message": "شما از حساب خود خارج شدهاید."
},
"loginExpired": {
"message": "نشست ورود شما منقضی شده است."
},
"logIn": {
- "message": "Log in"
+ "message": "ورود"
},
"logInToBitwarden": {
- "message": "Log in to Bitwarden"
+ "message": "وارد Bitwarden شوید"
},
"enterTheCodeSentToYourEmail": {
- "message": "Enter the code sent to your email"
+ "message": "کدی را که به ایمیل شما ارسال شده وارد کنید"
},
"enterTheCodeFromYourAuthenticatorApp": {
- "message": "Enter the code from your authenticator app"
+ "message": "کد سامانه تأیید کننده را وارد نمایید"
},
"pressYourYubiKeyToAuthenticate": {
- "message": "Press your YubiKey to authenticate"
+ "message": "برای احراز هویت، کلید YubiKey خود را فشار دهید"
},
"duoTwoFactorRequiredPageSubtitle": {
- "message": "Duo two-step login is required for your account. Follow the steps below to finish logging in."
+ "message": "برای حساب کاربری شما ورود دو مرحلهای Duo لازم است. مراحل زیر را دنبال کنید تا ورود خود را کامل کنید."
},
"followTheStepsBelowToFinishLoggingIn": {
- "message": "Follow the steps below to finish logging in."
+ "message": "مراحل زیر را دنبال کنید تا وارد سیستم شوید."
},
"followTheStepsBelowToFinishLoggingInWithSecurityKey": {
- "message": "Follow the steps below to finish logging in with your security key."
+ "message": "مراحل زیر را برای کامل کردن ورود با کلید امنیتی خود دنبال کنید."
},
"restartRegistration": {
- "message": "Restart registration"
+ "message": "ثبتنام را دوباره آغاز کنید"
},
"expiredLink": {
- "message": "Expired link"
+ "message": "پیوند منقضی شد"
},
"pleaseRestartRegistrationOrTryLoggingIn": {
- "message": "Please restart registration or try logging in."
+ "message": "لطفاً ثبت نام را مجدداً شروع کنید یا دوباره وارد شوید."
},
"youMayAlreadyHaveAnAccount": {
- "message": "You may already have an account"
+ "message": "ممکن است قبلاً حساب کاربری داشته باشید"
},
"logOutConfirmation": {
"message": "آیا مطمئنید که میخواهید خارج شوید؟"
@@ -911,7 +911,7 @@
"message": "خیر"
},
"location": {
- "message": "Location"
+ "message": "موقعیت"
},
"unexpectedError": {
"message": "یک خطای غیر منتظره رخ داده است."
@@ -926,10 +926,10 @@
"message": "ورود دو مرحله ای باعث میشود که حساب کاربری شما با استفاده از یک دستگاه دیگر مانند کلید امنیتی، برنامه احراز هویت، پیامک، تماس تلفنی و یا ایمیل، اعتبار خود را با ایمنی بیشتر اثبات کند. ورود دو مرحله ای می تواند در bitwarden.com فعال شود. آیا میخواهید از سایت بازدید کنید؟"
},
"twoStepLoginConfirmationContent": {
- "message": "Make your account more secure by setting up two-step login in the Bitwarden web app."
+ "message": "با راهاندازی ورود دو مرحلهای در برنامه وب Bitwarden، حساب کاربری خود را ایمنتر کنید."
},
"twoStepLoginConfirmationTitle": {
- "message": "Continue to web app?"
+ "message": "با برنامه وب ادامه میدهید؟"
},
"editedFolder": {
"message": "پوشه ذخیره شد"
@@ -1016,16 +1016,16 @@
"message": "درخواست افزودن ورود به سیستم"
},
"vaultSaveOptionsTitle": {
- "message": "Save to vault options"
+ "message": "گزینههای ذخیره در گاوصندوق"
},
"addLoginNotificationDesc": {
"message": "در صورتی که موردی در گاوصندوق شما یافت نشد، درخواست افزودن کنید."
},
"addLoginNotificationDescAlt": {
- "message": "Ask to add an item if one isn't found in your vault. Applies to all logged in accounts."
+ "message": "اگر موردی در گاوصندوق شما یافت نشد، درخواست افزودن آن را بدهید. این مورد برای همه حسابهای وارد شده اعمال میشود."
},
"showCardsInVaultViewV2": {
- "message": "Always show cards as Autofill suggestions on Vault view"
+ "message": "همیشه کارتها را بهعنوان پیشنهادهای پر کردن خودکار در نمای گاوصندوق نمایش بده"
},
"showCardsCurrentTab": {
"message": "نمایش کارتها در صفحه برگه"
@@ -1034,7 +1034,7 @@
"message": "برای پر کردن خودکار آسان، موارد کارت را در صفحه برگه فهرست کن."
},
"showIdentitiesInVaultViewV2": {
- "message": "Always show identities as Autofill suggestions on Vault view"
+ "message": "همیشه هویتها را بهعنوان پیشنهادهای پر کردن خودکار در نمای گاوصندوق نمایش بده"
},
"showIdentitiesCurrentTab": {
"message": "نشان دادن هویت در صفحه برگه"
@@ -1043,10 +1043,10 @@
"message": "موارد هویتی را در صفحه برگه برای پر کردن خودکار آسان فهرست کن."
},
"clickToAutofillOnVault": {
- "message": "Click items to autofill on Vault view"
+ "message": "برای پر کردن خودکار، روی موردها در نمای گاوصندوق کلیک کنید"
},
"clickToAutofill": {
- "message": "Click items in autofill suggestion to fill"
+ "message": "برای پر کردن، روی موردها در پیشنهادهای پرکردن خودکار کلیک کنید"
},
"clearClipboard": {
"message": "پاکسازی کلیپ بورد",
@@ -1063,7 +1063,7 @@
"message": "ذخیره"
},
"notificationViewAria": {
- "message": "View $ITEMNAME$, opens in new window",
+ "message": "مشاهده $ITEMNAME$، در پنجره جدید باز میشود",
"placeholders": {
"itemName": {
"content": "$1"
@@ -1071,15 +1071,19 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "مورد جدید، در پنجره جدید باز میشود",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
- "message": "Edit before saving",
+ "message": "ویرایش قبل ذخیره کردن",
"description": "Tooltip and Aria label for edit button on cipher item"
},
"newNotification": {
- "message": "New notification"
+ "message": "اعلان جدید"
},
"labelWithNotification": {
- "message": "$LABEL$: New notification",
+ "message": "$LABEL$: اعلان جدید",
"description": "Label for the notification with a new login suggestion.",
"placeholders": {
"label": {
@@ -1088,50 +1092,56 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "در Bitwarden ذخیره شد.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "در Bitwarden بهروزرسانی شد.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "انتخاب $ITEMTYPE$، $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
- "message": "Save as new login",
+ "message": "ذخیره به عنوان ورود جدید",
"description": "Button text for saving login details as a new entry."
},
"updateLoginAction": {
- "message": "Update login",
+ "message": "بهروزرسانی ورود",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "برای ذخیره این ورود، قفل را باز کنید",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
- "message": "Save login",
+ "message": "ذخیره ورود",
"description": "Prompt asking the user if they want to save their login details."
},
"updateLogin": {
- "message": "Update existing login",
+ "message": "بهروزرسانی ورود به سیستم موجود",
"description": "Prompt asking the user if they want to update an existing login entry."
},
"loginSaveSuccess": {
- "message": "Login saved",
+ "message": "ورود ذخیره شد",
"description": "Message displayed when login details are successfully saved."
},
"loginUpdateSuccess": {
- "message": "Login updated",
+ "message": "ورود بهروزرسانی شد",
"description": "Message displayed when login details are successfully updated."
},
"loginUpdateTaskSuccess": {
- "message": "Great job! You took the steps to make you and $ORGANIZATION$ more secure.",
+ "message": "آفرین! شما اقداماتی را انجام دادید تا خودتان و $ORGANIZATION$ را ایمنتر کنید.",
"placeholders": {
"organization": {
"content": "$1"
@@ -1140,7 +1150,7 @@
"description": "Shown to user after login is updated."
},
"loginUpdateTaskSuccessAdditional": {
- "message": "Thank you for making $ORGANIZATION$ more secure. You have $TASK_COUNT$ more passwords to update.",
+ "message": "ممنون که $ORGANIZATION$ را ایمنتر کردید. شما $TASK_COUNT$ کلمات عبور دیگر برای بهروزرسانی دارید.",
"placeholders": {
"organization": {
"content": "$1"
@@ -1152,15 +1162,15 @@
"description": "Shown to user after login is updated."
},
"nextSecurityTaskAction": {
- "message": "Change next password",
+ "message": "تغییر کلمه عبور بعدی",
"description": "Message prompting user to undertake completion of another security task."
},
"saveFailure": {
- "message": "Error saving",
+ "message": "خطای ذخیره",
"description": "Error message shown when the system fails to save login details."
},
"saveFailureDetails": {
- "message": "Oh no! We couldn't save this. Try entering the details manually.",
+ "message": "اوه نه! نتوانستیم این را ذخیره کنیم. لطفاً جزئیات را بهصورت دستی وارد کنید.",
"description": "Detailed error message shown when saving login details fails."
},
"enableChangedPasswordNotification": {
@@ -1170,13 +1180,13 @@
"message": "هنگامی که تغییری در یک وبسایت شناسایی شد، درخواست بهروزرسانی کلمه عبور ورود کن."
},
"changedPasswordNotificationDescAlt": {
- "message": "Ask to update a login's password when a change is detected on a website. Applies to all logged in accounts."
+ "message": "هنگامی که تغییری در کلمه عبور یک ورود در وبسایت شناسایی شود، درخواست بهروزرسانی آن را بده. این مورد برای همه حسابهای وارد شده اعمال میشود."
},
"enableUsePasskeys": {
"message": "برای ذخیره و استفاده از passkey اجازه بگیر"
},
"usePasskeysDesc": {
- "message": "Ask to save new passkeys or log in with passkeys stored in your vault. Applies to all logged in accounts."
+ "message": "درخواست ذخیره کلیدهای عبور جدید یا ورود با کلیدهای عبوری که در گاوصندوق شما ذخیره شدهاند. این مورد برای همه حسابهای وارد شده اعمال میشود."
},
"notificationChangeDesc": {
"message": "آیا مایل به بهروزرسانی این کلمه عبور در Bitwarden هستید؟"
@@ -1200,7 +1210,7 @@
"message": "از یک کلیک ثانویه برای دسترسی به تولید کلمه عبور و ورودهای منطبق برای وب سایت استفاده کن."
},
"contextMenuItemDescAlt": {
- "message": "Use a secondary click to access password generation and matching logins for the website. Applies to all logged in accounts."
+ "message": "برای دسترسی به تولید کلمه عبور و ورودهای منطبق با وبسایت، از کلیک ثانویه استفاده کنید. این مورد برای همه حسابهای کاربری وارد شده اعمال میشود."
},
"defaultUriMatchDetection": {
"message": "بررسی مطابقت نشانی اینترنتی پیشفرض",
@@ -1216,7 +1226,7 @@
"message": "تغییر رنگ پوسته برنامه."
},
"themeDescAlt": {
- "message": "Change the application's color theme. Applies to all logged in accounts."
+ "message": "تغییر تم رنگی برنامه. این مورد برای همه حسابهای کاربری وارد شده اعمال میشود."
},
"dark": {
"message": "تاریک",
@@ -1227,7 +1237,7 @@
"description": "Light color"
},
"exportFrom": {
- "message": "صادرات از"
+ "message": "برون ریزی از"
},
"exportVault": {
"message": "برون ریزی گاوصندوق"
@@ -1236,35 +1246,35 @@
"message": "فرمت پرونده"
},
"fileEncryptedExportWarningDesc": {
- "message": "This file export will be password protected and require the file password to decrypt."
+ "message": "این پرونده برون ریزی با کلمه عبور محافظت میشود و برای رمزگشایی به کلمه عبور پرونده نیاز دارد."
},
"filePassword": {
- "message": "رمز فایل"
+ "message": "کلمه عبور پرونده"
},
"exportPasswordDescription": {
- "message": "This password will be used to export and import this file"
+ "message": "این کلمه عبور برای برون ریزی و درون ریزی این پرونده استفاده میشود"
},
"accountRestrictedOptionDescription": {
- "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ "message": "برای رمزگذاری برون ریزی و محدود کردن درون ریزی فقط به حساب کاربری فعلی Bitwarden، از کلید رمزگذاری حساب خود که از نام کاربری و کلمه عبور اصلی حساب شما مشتق شده است استفاده کنید."
},
"passwordProtectedOptionDescription": {
- "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ "message": "یک کلمه عبور برای پرونده بهمنظور رمزگذاری تنظیم کنید تا برون ریزی و درون ریزی آن به هر حساب Bitwarden با استفاده از کلمه عبور رمزگشایی شود."
},
"exportTypeHeading": {
- "message": "نوع صادرات"
+ "message": "نوع برون ریزی"
},
"accountRestricted": {
"message": "حساب کاربری محدود شده است"
},
"filePasswordAndConfirmFilePasswordDoNotMatch": {
- "message": "عدم تطابق \"رمز فایل\" و \"تایید رمز فایل\" با یکدیگر."
+ "message": "عدم تطابق \"کلمه عبور پرونده\" و \"تأیید کلمه عبور پرونده\" با یکدیگر."
},
"warning": {
"message": "اخطار",
"description": "WARNING (should stay in capitalized letters if the language permits)"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "هشدار",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"confirmVaultExport": {
@@ -1286,7 +1296,7 @@
"message": "اشتراک گذاری شد"
},
"bitwardenForBusinessPageDesc": {
- "message": "Bitwarden for Business allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website."
+ "message": "Bitwarden for Business به شما اجازه میدهد تا با استفاده از یک سازمان، موارد گاوصندوق خود را با دیگران به اشتراک بگذارید. در وب سایت bitwarden.com بیشتر بیاموزید."
},
"moveToOrganization": {
"message": "انتقال به سازمان"
@@ -1344,7 +1354,7 @@
"message": "پرونده"
},
"fileToShare": {
- "message": "File to share"
+ "message": "پروندهای برای اشتراکگذاری"
},
"selectFile": {
"message": "ﺍﻧﺘﺨﺎﺏ یک ﭘﺮﻭﻧﺪﻩ"
@@ -1380,13 +1390,13 @@
"message": "۱ گیگابایت فضای ذخیره سازی رمزگذاری شده برای پیوست های پرونده."
},
"premiumSignUpEmergency": {
- "message": "Emergency access."
+ "message": "دسترسی اضطراری."
},
"premiumSignUpTwoStepOptions": {
"message": "گزینه های ورود اضافی دو مرحله ای مانند YubiKey و Duo."
},
"ppremiumSignUpReports": {
- "message": "گزارشهای بهداشت رمز عبور، سلامت حساب و نقض دادهها برای ایمن نگهداشتن گاوصندوق شما."
+ "message": "گزارشهای بهداشت کلمه عبور، سلامت حساب و نقض دادهها برای ایمن نگهداشتن گاوصندوق شما."
},
"ppremiumSignUpTotp": {
"message": "تولید کننده کد تأیید (2FA) از نوع TOTP برای ورودهای در گاوصندوقتان."
@@ -1401,7 +1411,7 @@
"message": "خرید پرمیوم"
},
"premiumPurchaseAlertV2": {
- "message": "You can purchase Premium from your account settings on the Bitwarden web app."
+ "message": "میتوانید نسخه پرمیوم را از تنظیمات حساب کاربری خود در اپلیکیشن وب Bitwarden خریداری کنید."
},
"premiumCurrentMember": {
"message": "شما یک عضو پرمیوم هستید!"
@@ -1410,7 +1420,7 @@
"message": "برای حمایتتان از Bitwarden سپاسگزاریم."
},
"premiumFeatures": {
- "message": "Upgrade to Premium and receive:"
+ "message": "ارتقا به نسخه پرمیوم و دریافت:"
},
"premiumPrice": {
"message": "تمامش فقط $PRICE$ در سال!",
@@ -1422,7 +1432,7 @@
}
},
"premiumPriceV2": {
- "message": "All for just $PRICE$ per year!",
+ "message": "تمامش فقط $PRICE$ در سال!",
"placeholders": {
"price": {
"content": "$1",
@@ -1449,10 +1459,10 @@
"message": "برای استفاده از این ویژگی عضویت پرمیوم لازم است."
},
"authenticationTimeout": {
- "message": "Authentication timeout"
+ "message": "پایان زمان احراز هویت"
},
"authenticationSessionTimedOut": {
- "message": "The authentication session timed out. Please restart the login process."
+ "message": "نشست احراز هویت منقضی شد. لطفاً فرایند ورود را دوباره شروع کنید."
},
"verificationCodeEmailSent": {
"message": "ایمیل تأیید به $EMAIL$ ارسال شد.",
@@ -1464,29 +1474,29 @@
}
},
"dontAskAgainOnThisDeviceFor30Days": {
- "message": "Don't ask again on this device for 30 days"
+ "message": "در این دستگاه به مدت ۳۰ روز دوباره نپرس"
},
"selectAnotherMethod": {
- "message": "Select another method",
+ "message": "انتخاب روش دیگر",
"description": "Select another two-step login method"
},
"useYourRecoveryCode": {
- "message": "Use your recovery code"
+ "message": "از کد بازیابیتان استفاده کنید"
},
"insertU2f": {
"message": "کلید امنیتی خود را وارد پورت USB رایانه کنید، اگر دکمه ای دارد آن را بفشارید."
},
"openInNewTab": {
- "message": "Open in new tab"
+ "message": "گشودن در زبانهٔ جدید"
},
"webAuthnAuthenticate": {
"message": "تأیید اعتبار در WebAuthn"
},
"readSecurityKey": {
- "message": "Read security key"
+ "message": "خواندن کلید امنیتی"
},
"awaitingSecurityKeyInteraction": {
- "message": "Awaiting security key interaction..."
+ "message": "در انتظار تعامل با کلید امنیتی..."
},
"loginUnavailable": {
"message": "ورود به سیستم در دسترس نیست"
@@ -1501,7 +1511,7 @@
"message": "گزینههای ورود دو مرحلهای"
},
"selectTwoStepLoginMethod": {
- "message": "Select two-step login method"
+ "message": "انتخاب ورود دو مرحلهای"
},
"recoveryCodeDesc": {
"message": "دسترسی به تمامی ارائهدهندگان دو مرحلهای را از دست دادهاید؟ از کد بازیابی خود برای غیرفعالسازی ارائهدهندگان دو مرحلهای از حسابتان استفاده کنید."
@@ -1513,17 +1523,17 @@
"message": "برنامه احراز هویت"
},
"authenticatorAppDescV2": {
- "message": "Enter a code generated by an authenticator app like Bitwarden Authenticator.",
+ "message": "کدی را وارد کنید که توسط یک برنامه احراز هویت مانند Bitwarden Authenticator تولید شده است.",
"description": "'Bitwarden Authenticator' is a product name and should not be translated."
},
"yubiKeyTitleV2": {
- "message": "Yubico OTP Security Key"
+ "message": "کلید امنیت Yubico OTP"
},
"yubiKeyDesc": {
"message": "از یک YubiKey برای دسترسی به حسابتان استفاده کنید. همراه با دستگاههای YubiKey 4 ،4 Nano ،NEO کار میکند."
},
"duoDescV2": {
- "message": "Enter a code generated by Duo Security.",
+ "message": "کدی را وارد کنید که توسط Duo Security تولید شده است.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
@@ -1540,19 +1550,19 @@
"message": "ایمیل"
},
"emailDescV2": {
- "message": "Enter a code sent to your email."
+ "message": "کدی را که به ایمیل شما ارسال شده وارد کنید."
},
"selfHostedEnvironment": {
"message": "محیط خود میزبان"
},
"selfHostedBaseUrlHint": {
- "message": "Specify the base URL of your on-premises hosted Bitwarden installation. Example: https://bitwarden.company.com"
+ "message": "نشانی اینترنتی پایه نصب Bitwarden خود را که بهصورت داخلی میزبانی شده مشخص کنید.\nمثال: https://bitwarden.company.com"
},
"selfHostedCustomEnvHeader": {
- "message": "For advanced configuration, you can specify the base URL of each service independently."
+ "message": "برای پیکربندی پیشرفته، میتوانید نشانی اینترنتی پایه هر سرویس را بهصورت مستقل مشخص کنید."
},
"selfHostedEnvFormInvalid": {
- "message": "You must add either the base Server URL or at least one custom environment."
+ "message": "شما باید یا نشانی اینترنتی پایه سرور را اضافه کنید، یا حداقل یک محیط سفارشی تعریف کنید."
},
"customEnvironment": {
"message": "محیط سفارشی"
@@ -1561,7 +1571,7 @@
"message": "نشانی اینترنتی سرور"
},
"selfHostBaseUrl": {
- "message": "Self-host server URL",
+ "message": "نشانی اینترنتی سرور خود میزبان",
"description": "Label for field requesting a self-hosted integration service URL"
},
"apiUrl": {
@@ -1583,29 +1593,47 @@
"message": "نشانیهای اینترنتی محیط ذخیره شد"
},
"showAutoFillMenuOnFormFields": {
- "message": "Show autofill menu on form fields",
+ "message": "نمایش منوی پر کردن خودکار روی فیلدهای فرم",
"description": "Represents the message for allowing the user to enable the autofill overlay"
},
"autofillSuggestionsSectionTitle": {
- "message": "Autofill suggestions"
+ "message": "پیشنهادهای پر کردن خودکار"
+ },
+ "autofillSpotlightTitle": {
+ "message": "یافتن آسان پیشنهادهای پر کردن خودکار"
+ },
+ "autofillSpotlightDesc": {
+ "message": "تنظیمات پر کردن خودکار مرورگر خود را غیرفعال کنید تا با Bitwarden تداخل نداشته باشد."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "پر کردن خودکار $BROWSER$ را غیرفعال کنید",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "پر کردن خودکار را خاموش کنید"
},
"showInlineMenuLabel": {
- "message": "Show autofill suggestions on form fields"
+ "message": "نمایش پیشنهادهای پر کردن خودکار روی فیلدهای فرم"
},
"showInlineMenuIdentitiesLabel": {
- "message": "Display identities as suggestions"
+ "message": "نمایش هویتها بهعنوان پیشنهاد"
},
"showInlineMenuCardsLabel": {
- "message": "Display cards as suggestions"
+ "message": "نمایش کارتها بهعنوان پیشنهاد"
},
"showInlineMenuOnIconSelectionLabel": {
- "message": "Display suggestions when icon is selected"
+ "message": "نمایش پیشنهادها هنگام انتخاب آیکون"
},
"showInlineMenuOnFormFieldsDescAlt": {
- "message": "Applies to all logged in accounts."
+ "message": "برای تمام حسابهای کاربری وارد شده اعمال میشود."
},
"turnOffBrowserBuiltInPasswordManagerSettings": {
- "message": "Turn off your browser's built in password manager settings to avoid conflicts."
+ "message": "تنظیمات مدیر کلمه عبور داخلی مرورگر خود را غیرفعال کنید تا از بروز تداخل جلوگیری شود."
},
"turnOffBrowserBuiltInPasswordManagerSettingsLink": {
"message": "ویرایش تنظیمات مرورگر."
@@ -1615,15 +1643,15 @@
"description": "Overlay setting select option for disabling autofill overlay"
},
"autofillOverlayVisibilityOnFieldFocus": {
- "message": "When field is selected (on focus)",
+ "message": "وقتی فیلد انتخاب شد (در حالت فوکوس)",
"description": "Overlay appearance select option for showing the field on focus of the input element"
},
"autofillOverlayVisibilityOnButtonClick": {
- "message": "When autofill icon is selected",
+ "message": "وقتی آیکون پر کردن خودکار انتخاب شود",
"description": "Overlay appearance select option for showing the field on click of the overlay icon"
},
"enableAutoFillOnPageLoadSectionTitle": {
- "message": "Autofill on page load"
+ "message": "پر کردن خودکار هنگام بارگذاری صفحه"
},
"enableAutoFillOnPageLoad": {
"message": "پر کردن خودکار هنگام بارگذاری صفحه"
@@ -1635,7 +1663,7 @@
"message": "وبسایتهای در معرض خطر یا نامعتبر میتوانند از پر کردن خودکار در بارگذاری صفحه سوء استفاده کنند."
},
"learnMoreAboutAutofillOnPageLoadLinkText": {
- "message": "Learn more about risks"
+ "message": "درباره خطراتش بیشتر بدانید"
},
"learnMoreAboutAutofill": {
"message": "درباره پر کردن خودکار بیشتر بدانید"
@@ -1665,13 +1693,13 @@
"message": "باز کردن گاوصندوق در نوار کناری"
},
"commandAutofillLoginDesc": {
- "message": "Autofill the last used login for the current website"
+ "message": "آخرین ورودی مورد استفاده برای وب سایت فعلی را به صورت خودکار پر کنید"
},
"commandAutofillCardDesc": {
- "message": "Autofill the last used card for the current website"
+ "message": "آخرین کارت مورد استفاده برای وب سایت فعلی را به صورت خودکار پر کنید"
},
"commandAutofillIdentityDesc": {
- "message": "Autofill the last used identity for the current website"
+ "message": "آخرین هویت مورد استفاده برای وب سایت فعلی را به صورت خودکار پر کنید"
},
"commandGeneratePasswordDesc": {
"message": "یک کلمه عبور تصادفی جدید ایجاد کنید و آن را در کلیپ بورد کپی کنید"
@@ -1695,7 +1723,7 @@
"message": "برای مرتبسازی بکشید"
},
"dragToReorder": {
- "message": "Drag to reorder"
+ "message": "برای تغییر ترتیب، بکشید و رها کنید"
},
"cfTypeText": {
"message": "متن"
@@ -1707,7 +1735,7 @@
"message": "منطقی"
},
"cfTypeCheckbox": {
- "message": "Checkbox"
+ "message": "کادر انتخاب"
},
"cfTypeLinked": {
"message": "پیوند شده",
@@ -1730,7 +1758,7 @@
"message": "یک تصویر قابل تشخیص در کنار هر ورود نشان دهید."
},
"faviconDescAlt": {
- "message": "Show a recognizable image next to each login. Applies to all logged in accounts."
+ "message": "نمایش تصویر قابل تشخیص کنار هر ورود به سیستم. برای تمام حسابهای کاربری وارد شده اعمال میشود."
},
"enableBadgeCounter": {
"message": "نمایش شمارنده نشان"
@@ -1892,7 +1920,7 @@
"message": "هویت"
},
"typeSshKey": {
- "message": "SSH key"
+ "message": "کلید SSH"
},
"newItemHeader": {
"message": "$TYPE$ جدید",
@@ -1913,7 +1941,7 @@
}
},
"viewItemHeader": {
- "message": "View $TYPE$",
+ "message": "مشاهده $TYPE$",
"placeholders": {
"type": {
"content": "$1",
@@ -1925,13 +1953,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": "اگر ادامه دهید، تمام ورودیها بهطور دائمی از تاریخچه تولید کننده حذف خواهند شد. آیا مطمئن هستید که میخواهید ادامه دهید؟"
},
"back": {
"message": "بازگشت"
@@ -1940,7 +1968,7 @@
"message": "مجموعهها"
},
"nCollections": {
- "message": "$COUNT$ collections",
+ "message": "$COUNT$ مجموعهها",
"placeholders": {
"count": {
"content": "$1",
@@ -1970,7 +1998,7 @@
"message": "یادداشتهای امن"
},
"sshKeys": {
- "message": "SSH Keys"
+ "message": "کلیدهای SSH"
},
"clear": {
"message": "پاک کردن",
@@ -1996,7 +2024,7 @@
"description": "Domain name. Ex. website.com"
},
"baseDomainOptionRecommended": {
- "message": "Base domain (recommended)",
+ "message": "دامنه پایه (پیشنهادی)",
"description": "Domain name. Ex. website.com"
},
"domainName": {
@@ -2050,13 +2078,13 @@
"message": "هیچ کلمه عبوری برای فهرست کردن وجود ندارد."
},
"clearHistory": {
- "message": "Clear history"
+ "message": "پاک کردن تاریخچه"
},
"nothingToShow": {
- "message": "Nothing to show"
+ "message": "چیزی برای نشان دادن موجود نیست"
},
"nothingGeneratedRecently": {
- "message": "You haven't generated anything recently"
+ "message": "شما اخیراً چیزی تولید نکردهاید"
},
"remove": {
"message": "حذف"
@@ -2117,16 +2145,16 @@
"message": "باز کردن با پین"
},
"setYourPinTitle": {
- "message": "Set PIN"
+ "message": "تنظیم کد پین"
},
"setYourPinButton": {
- "message": "Set PIN"
+ "message": "تنظیم کد پین"
},
"setYourPinCode": {
"message": "کد پین خود را برای باز کردن Bitwarden تنظیم کنید. اگر به طور کامل از برنامه خارج شوید، تنظیمات پین شما از بین میرود."
},
"setYourPinCode1": {
- "message": "Your PIN will be used to unlock Bitwarden instead of your master password. Your PIN will reset if you ever fully log out of Bitwarden."
+ "message": "کد پین شما برای باز کردن Bitwarden به جای کلمه عبور اصلی استفاده خواهد شد. در صورتی که کاملاً از Bitwarden خارج شوید، کد پین شما ریست خواهد شد."
},
"pinRequired": {
"message": "کد پین الزامیست."
@@ -2135,13 +2163,13 @@
"message": "کد پین معتبر نیست."
},
"tooManyInvalidPinEntryAttemptsLoggingOut": {
- "message": "Too many invalid PIN entry attempts. Logging out."
+ "message": "تعداد تلاشهای ناموفق پین زیاد شد. خارج میشوید."
},
"unlockWithBiometrics": {
"message": "با استفاده از بیومتریک باز کنید"
},
"unlockWithMasterPassword": {
- "message": "Unlock with master password"
+ "message": "باز کردن قفل با کلمه عبور اصلی"
},
"awaitDesktop": {
"message": "در انتظار تأیید از دسکتاپ"
@@ -2153,7 +2181,7 @@
"message": "در زمان شروع مجدد، با کلمه عبور اصلی قفل کن"
},
"lockWithMasterPassOnRestart1": {
- "message": "Require master password on browser restart"
+ "message": "در زمان شروع مجدد، کلمه عبور اصلی نیاز است"
},
"selectOneCollection": {
"message": "شما باید حداقل یک مجموعه را انتخاب کنید."
@@ -2165,48 +2193,39 @@
"message": "شبیه سازی"
},
"passwordGenerator": {
- "message": "Password generator"
+ "message": "تولید کننده کلمه عبور"
},
"usernameGenerator": {
- "message": "Username generator"
+ "message": "تولید کننده نام کاربری"
},
"useThisEmail": {
- "message": "Use this email"
+ "message": "از این ایمیل استفاده شود"
},
"useThisPassword": {
- "message": "Use this password"
+ "message": "از این کلمه عبور استفاده کن"
},
"useThisUsername": {
- "message": "Use this username"
+ "message": "از این نام کاربری استفاده کن"
},
"securePasswordGenerated": {
- "message": "Secure password generated! Don't forget to also update your password on the website."
+ "message": "کلمه عبور ایمن ساخته شد! فراموش نکنید کلمه عبور خود را در وبسایت نیز بهروزرسانی کنید."
},
"useGeneratorHelpTextPartOne": {
- "message": "Use the generator",
+ "message": "از تولید کننده استفاده کنید",
"description": "This will be used as part of a larger sentence, broken up to include the generator icon. The full sentence will read 'Use the generator [GENERATOR_ICON] to create a strong unique password'"
},
"useGeneratorHelpTextPartTwo": {
- "message": "to create a strong unique password",
+ "message": "برای ایجاد یک کلمه عبور قوی و منحصر به فرد",
"description": "This will be used as part of a larger sentence, broken up to include the generator icon. The full sentence will read 'Use the generator [GENERATOR_ICON] to create a strong unique password'"
},
"vaultCustomization": {
- "message": "Vault customization"
+ "message": "سفارشیسازی گاوصندوق"
},
"vaultTimeoutAction": {
"message": "عمل متوقف شدن گاوصندوق"
},
"vaultTimeoutAction1": {
- "message": "Timeout action"
- },
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
+ "message": "اقدام در صورت پایان زمان"
},
"lock": {
"message": "قفل",
@@ -2235,7 +2254,7 @@
"message": "مورد بازیابی شد"
},
"alreadyHaveAccount": {
- "message": "Already have an account?"
+ "message": "در حال حاضر حساب کاربری دارید؟"
},
"vaultTimeoutLogOutConfirmation": {
"message": "خروج از سیستم، تمام دسترسی ها به گاوصندوق شما را از بین میبرد و نیاز به احراز هویت آنلاین پس از مدت زمان توقف دارد. آیا مطمئن هستید که میخواهید از این تنظیمات استفاده کنید؟"
@@ -2328,7 +2347,7 @@
"message": "کلمه عبور اصلی جدید شما از شرایط سیاست پیروی نمیکند."
},
"receiveMarketingEmailsV2": {
- "message": "Get advice, announcements, and research opportunities from Bitwarden in your inbox."
+ "message": "پیشنهادها، اعلانها و فرصتهای تحقیقاتی Bitwarden را در صندوق ورودی خود دریافت کنید."
},
"unsubscribe": {
"message": "لغو اشتراک"
@@ -2355,7 +2374,7 @@
"message": "سیاست حفظ حریم خصوصی"
},
"yourNewPasswordCannotBeTheSameAsYourCurrentPassword": {
- "message": "Your new password cannot be the same as your current password."
+ "message": "کلمه عبور جدید شما نمیتواند با کلمه عبور فعلیتان یکسان باشد."
},
"hintEqualsPassword": {
"message": "اشاره به کلمه عبور شما نمیتواند همان کلمه عبور شما باشد."
@@ -2364,10 +2383,10 @@
"message": "تأیید"
},
"errorRefreshingAccessToken": {
- "message": "Access Token Refresh Error"
+ "message": "خطای بهروزرسانی توکن دسترسی"
},
"errorRefreshingAccessTokenDesc": {
- "message": "No refresh token or API keys found. Please try logging out and logging back in."
+ "message": "هیچ توکن بهروزرسانی یا کلید API یافت نشد. لطفاً از حساب کاربری خود خارج شده و دوباره وارد شوید."
},
"desktopSyncVerificationTitle": {
"message": "تأیید همگامسازی دسکتاپ"
@@ -2406,10 +2425,10 @@
"message": "عدم مطابقت حساب کاربری"
},
"nativeMessagingWrongUserKeyTitle": {
- "message": "Biometric key missmatch"
+ "message": "عدم تطابق کلید بیومتریک"
},
"nativeMessagingWrongUserKeyDesc": {
- "message": "Biometric unlock failed. The biometric secret key failed to unlock the vault. Please try to set up biometrics again."
+ "message": "باز کردن قفل بیومتریک ناموفق بود. کلید مخفی بیومتریک نتوانست گاوصندوق را باز کند. لطفاً دوباره تنظیمات بیومتریک را انجام دهید."
},
"biometricsNotEnabledTitle": {
"message": "بیومتریک برپا نشده"
@@ -2427,13 +2446,13 @@
"message": "کاربر قفل یا خارج شد"
},
"biometricsNotUnlockedDesc": {
- "message": "Please unlock this user in the desktop application and try again."
+ "message": "لطفاً این کاربر را در برنامه دسکتاپ باز کنید و دوباره تلاش کنید."
},
"biometricsNotAvailableTitle": {
- "message": "Biometric unlock unavailable"
+ "message": "باز کردن قفل بیومتریک در دسترس نیست"
},
"biometricsNotAvailableDesc": {
- "message": "Biometric unlock is currently unavailable. Please try again later."
+ "message": "باز کردن قفل بیومتریک در حال حاضر در دسترس نیست. لطفاً بعداً دوباره تلاش کنید."
},
"biometricsFailedTitle": {
"message": "زیستسنجی ناموفق بود"
@@ -2460,17 +2479,17 @@
"message": "سیاست سازمانی بر تنظیمات مالکیت شما تأثیر میگذارد."
},
"personalOwnershipPolicyInEffectImports": {
- "message": "An organization policy has blocked importing items into your individual vault."
+ "message": "یک سیاست سازمانی، درون ریزی موارد به گاوصندوق فردی شما را مسدود کرده است."
},
"domainsTitle": {
- "message": "Domains",
+ "message": "دامنهها",
"description": "A category title describing the concept of web domains"
},
"blockedDomains": {
- "message": "Blocked domains"
+ "message": "دامنههای مسدود شده"
},
"learnMoreAboutBlockedDomains": {
- "message": "Learn more about blocked domains"
+ "message": "اطلاعات بیشتر درباره دامنههای مسدود شده"
},
"excludedDomains": {
"message": "دامنه های مستثنی"
@@ -2479,22 +2498,22 @@
"message": "Bitwarden برای ذخیره جزئیات ورود به سیستم این دامنه ها سوال نمیکند. برای اینکه تغییرات اعمال شود باید صفحه را تازه کنید."
},
"excludedDomainsDescAlt": {
- "message": "Bitwarden will not ask to save login details for these domains for all logged in accounts. You must refresh the page for changes to take effect."
+ "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": "این مورد را در تنظیمات تغییر دهید"
},
"change": {
- "message": "Change"
+ "message": "تغییر"
},
"changeButtonTitle": {
- "message": "Change password - $ITEMNAME$",
+ "message": "تغییر کلمه عبور - $ITEMNAME$",
"placeholders": {
"itemname": {
"content": "$1",
@@ -2503,10 +2522,10 @@
}
},
"atRiskPasswords": {
- "message": "At-risk passwords"
+ "message": "کلمات عبور در معرض خطر"
},
"atRiskPasswordDescSingleOrg": {
- "message": "$ORGANIZATION$ is requesting you change one password because it is at-risk.",
+ "message": "$ORGANIZATION$ از شما درخواست کرده یک کلمه عبور را به دلیل در معرض خطر بودن تغییر دهید.",
"placeholders": {
"organization": {
"content": "$1",
@@ -2515,7 +2534,7 @@
}
},
"atRiskPasswordsDescSingleOrgPlural": {
- "message": "$ORGANIZATION$ is requesting you change the $COUNT$ passwords because they are at-risk.",
+ "message": "$ORGANIZATION$ از شما درخواست کرده $COUNT$ کلمه عبور را به دلیل در معرض خطر بودن تغییر دهید.",
"placeholders": {
"organization": {
"content": "$1",
@@ -2528,7 +2547,7 @@
}
},
"atRiskPasswordsDescMultiOrgPlural": {
- "message": "Your organizations are requesting you change the $COUNT$ passwords because they are at-risk.",
+ "message": "سازمانهای شما از شما درخواست کردهاند که $COUNT$ کلمه عبور را به دلیل در معرض خطر بودن تغییر دهید.",
"placeholders": {
"count": {
"content": "$1",
@@ -2537,10 +2556,10 @@
}
},
"reviewAndChangeAtRiskPassword": {
- "message": "Review and change one at-risk password"
+ "message": "بررسی و تغییر یک کلمه عبور در معرض خطر"
},
"reviewAndChangeAtRiskPasswordsPlural": {
- "message": "Review and change $COUNT$ at-risk passwords",
+ "message": "بررسی و تغییر $COUNT$ کلمه عبور در معرض خطر",
"placeholders": {
"count": {
"content": "$1",
@@ -2549,52 +2568,52 @@
}
},
"changeAtRiskPasswordsFaster": {
- "message": "Change at-risk passwords faster"
+ "message": "تغییر سریعتر کلمات عبور در معرض خطر"
},
"changeAtRiskPasswordsFasterDesc": {
- "message": "Update your settings so you can quickly autofill your passwords and generate new ones"
+ "message": "تنظیمات خود را بهروزرسانی کنید تا بتوانید بهسرعت کلمات عبور خود را بهصورت خودکار وارد کرده و کلمات جدید تولید کنید"
},
"reviewAtRiskLogins": {
- "message": "Review at-risk logins"
+ "message": "بررسی ورودهای در معرض خطر"
},
"reviewAtRiskPasswords": {
- "message": "Review at-risk passwords"
+ "message": "بررسی کلمات عبور در معرض خطر"
},
"reviewAtRiskLoginsSlideDesc": {
- "message": "Your organization passwords are at-risk because they are weak, reused, and/or exposed.",
+ "message": "کلمات عبور سازمان شما در معرض خطر هستند زیرا ضعیف، تکراری و یا افشا شدهاند.",
"description": "Description of the review at-risk login slide on the at-risk password page carousel"
},
"reviewAtRiskLoginSlideImgAltPeriod": {
- "message": "Illustration of a list of logins that are at-risk."
+ "message": "تصویری از فهرست ورودهایی که در معرض خطر هستند."
},
"generatePasswordSlideDesc": {
- "message": "Quickly generate a strong, unique password with the Bitwarden autofill menu on the at-risk site.",
+ "message": "با استفاده از منوی پر کردن خودکار Bitwarden در سایت در معرض خطر، بهسرعت یک کلمه عبور قوی و منحصر به فرد تولید کنید.",
"description": "Description of the generate password slide on the at-risk password page carousel"
},
"generatePasswordSlideImgAltPeriod": {
- "message": "Illustration of the Bitwarden autofill menu displaying a generated password."
+ "message": "تصویری از منوی پر کردن خودکار Bitwarden که یک کلمه عبور تولید شده را نمایش میدهد."
},
"updateInBitwarden": {
- "message": "Update in Bitwarden"
+ "message": "بهروزرسانی در Bitwarden"
},
"updateInBitwardenSlideDesc": {
- "message": "Bitwarden will then prompt you to update the password in the password manager.",
+ "message": "سپس Bitwarden از شما میخواهد کلمه عبور را در مدیریت کلمه عبور بهروزرسانی کنید.",
"description": "Description of the update in Bitwarden slide on the at-risk password page carousel"
},
"updateInBitwardenSlideImgAltPeriod": {
- "message": "Illustration of a Bitwarden’s notification prompting the user to update the login."
+ "message": "تصویری از اعلان Bitwarden که از کاربر میخواهد ورود خود را بهروزرسانی کند."
},
"turnOnAutofill": {
- "message": "Turn on autofill"
+ "message": "پر کردن خودکار را فعال کنید"
},
"turnedOnAutofill": {
- "message": "Turned on autofill"
+ "message": "پر کردن خودکار فعال شد"
},
"dismiss": {
- "message": "Dismiss"
+ "message": "نادیده گرفتن"
},
"websiteItemLabel": {
- "message": "Website $number$ (URI)",
+ "message": "وبسایت $number$ (نشانی اینترنتی)",
"placeholders": {
"number": {
"content": "$1",
@@ -2612,20 +2631,20 @@
}
},
"blockedDomainsSavedSuccess": {
- "message": "Blocked domain changes saved"
+ "message": "تغییرات دامنه مسدود شده ذخیره شد"
},
"excludedDomainsSavedSuccess": {
- "message": "Excluded domain changes saved"
+ "message": "تغییرات دامنه مستثنی شده ذخیره شد"
},
"limitSendViews": {
- "message": "Limit views"
+ "message": "محدود کردن نمایشها"
},
"limitSendViewsHint": {
- "message": "No one can view this Send after the limit is reached.",
+ "message": "هیچکس نمیتواند این را پس از رسیدن به محدودیت مشاهده کند.",
"description": "Displayed under the limit views field on Send"
},
"limitSendViewsCount": {
- "message": "$ACCESSCOUNT$ views left",
+ "message": "$ACCESSCOUNT$ بازدید باقی مانده",
"description": "Displayed under the limit views field on Send",
"placeholders": {
"accessCount": {
@@ -2639,14 +2658,14 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDetails": {
- "message": "Send details",
+ "message": "جزئیات ارسال",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTypeText": {
"message": "متن"
},
"sendTypeTextToShare": {
- "message": "Text to share"
+ "message": "متن برای اشتراک گذاری"
},
"sendTypeFile": {
"message": "پرونده"
@@ -2656,7 +2675,7 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"hideTextByDefault": {
- "message": "Hide text by default"
+ "message": "متن را بهصورت پیشفرض مخفی کن"
},
"expired": {
"message": "منقضی شده"
@@ -2665,7 +2684,7 @@
"message": "محافظت شده با کلمه عبور"
},
"copyLink": {
- "message": "Copy link"
+ "message": "کپی پیوند"
},
"copySendLink": {
"message": "پیوند ارسال را کپی کن",
@@ -2703,7 +2722,7 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSendPermanentConfirmation": {
- "message": "Are you sure you want to permanently delete this Send?",
+ "message": "مطمئن هستید میخواهید این ارسال را برای همیشه پاک کنید؟",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editSend": {
@@ -2714,7 +2733,7 @@
"message": "تاریخ حذف"
},
"deletionDateDescV2": {
- "message": "The Send will be permanently deleted on this date.",
+ "message": "ارسال در این تاریخ بهطور دائمی حذف خواهد شد.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDate": {
@@ -2736,7 +2755,7 @@
"message": "سفارشی"
},
"sendPasswordDescV3": {
- "message": "Add an optional password for recipients to access this Send.",
+ "message": "یک کلمه عبور اختیاری برای دریافتکنندگان اضافه کنید تا بتوانند به این ارسال دسترسی داشته باشند.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createSend": {
@@ -2759,15 +2778,15 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createdSendSuccessfully": {
- "message": "Send created successfully!",
+ "message": "ارسال با موفقیت ساخته شد!",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendExpiresInHoursSingle": {
- "message": "The Send will be available to anyone with the link for the next 1 hour.",
+ "message": "این ارسال به مدت ۱ ساعت برای هر کسی که لینک را دارد در دسترس خواهد بود.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendExpiresInHours": {
- "message": "The Send will be available to anyone with the link for the next $HOURS$ hours.",
+ "message": "این ارسال به مدت $HOURS$ ساعت برای هر کسی که لینک را دارد در دسترس خواهد بود.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.",
"placeholders": {
"hours": {
@@ -2777,11 +2796,11 @@
}
},
"sendExpiresInDaysSingle": {
- "message": "The Send will be available to anyone with the link for the next 1 day.",
+ "message": "این ارسال به مدت ۱ روز برای هر کسی که لینک را دارد در دسترس خواهد بود.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendExpiresInDays": {
- "message": "The Send will be available to anyone with the link for the next $DAYS$ days.",
+ "message": "این ارسال به مدت $DAYS$ روز برای هر کسی که لینک را دارد در دسترس خواهد بود.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated.",
"placeholders": {
"days": {
@@ -2791,7 +2810,7 @@
}
},
"sendLinkCopied": {
- "message": "Send link copied",
+ "message": "لینک ارسال کپی شد",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedSend": {
@@ -2799,11 +2818,11 @@
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendFilePopoutDialogText": {
- "message": "Pop out extension?",
+ "message": "باز کردن پنجره جداگانه افزونه؟",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendFilePopoutDialogDesc": {
- "message": "To create a file Send, you need to pop out the extension to a new window.",
+ "message": "برای ایجاد یک ارسال پرونده، باید افزونه را در پنجرهای جدید باز کنید.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendLinuxChromiumFileWarning": {
@@ -2816,7 +2835,7 @@
"message": "برای انتخاب پرونده ای با استفاده از Safari، با کلیک روی این بنر پنجره جدیدی باز کنید."
},
"popOut": {
- "message": "Pop out"
+ "message": "باز کردن در پنجره جداگانه"
},
"sendFileCalloutHeader": {
"message": "قبل از اینکه شروع کنی"
@@ -2837,7 +2856,7 @@
"message": "هنگام ذخیره حذف و تاریخ انقضاء شما خطایی روی داد."
},
"hideYourEmail": {
- "message": "Hide your email address from viewers."
+ "message": "آدرس ایمیل خود را از بینندگان مخفی کنید."
},
"passwordPrompt": {
"message": "درخواست مجدد کلمه عبور اصلی"
@@ -2852,7 +2871,7 @@
"message": "تأیید ایمیل لازم است"
},
"emailVerifiedV2": {
- "message": "Email verified"
+ "message": "ایمیل تأیید شد"
},
"emailVerificationRequiredDesc": {
"message": "برای استفاده از این ویژگی باید ایمیل خود را تأیید کنید. میتوانید ایمیل خود را در گاوصندوق وب تأیید کنید."
@@ -2870,7 +2889,7 @@
"message": "کلمه عبور اصلی شما با یک یا چند سیاست سازمانتان مطابقت ندارد. برای دسترسی به گاوصندوق، باید همین حالا کلمه عبور اصلی خود را بهروز کنید. در صورت ادامه، شما از نشست فعلی خود خارج میشوید و باید دوباره وارد سیستم شوید. نشست فعال در دستگاه های دیگر ممکن است تا یک ساعت همچنان فعال باقی بمانند."
},
"tdeDisabledMasterPasswordRequired": {
- "message": "Your organization has disabled trusted device encryption. Please set a master password to access your vault."
+ "message": "سازمان شما رمزگذاری دستگاههای مورد اعتماد را غیرفعال کرده است. لطفاً برای دسترسی به گاوصندوق خود یک کلمه عبور اصلی تنظیم کنید."
},
"resetPasswordPolicyAutoEnroll": {
"message": "ثبت نام خودکار"
@@ -2886,15 +2905,15 @@
"description": "Used as a message within the notification bar when no folders are found"
},
"orgPermissionsUpdatedMustSetPassword": {
- "message": "Your organization permissions were updated, requiring you to set a master password.",
+ "message": "مجوزهای سازمان شما بهروزرسانی شد، باید یک کلمه عبور اصلی تنظیم کنید.",
"description": "Used as a card title description on the set password page to explain why the user is there"
},
"orgRequiresYouToSetPassword": {
- "message": "Your organization requires you to set a master password.",
+ "message": "سازمانتان از شما میخواهد که یک کلمه عبور اصلی تنظیم کنید.",
"description": "Used as a card title description on the set password page to explain why the user is there"
},
"cardMetrics": {
- "message": "out of $TOTAL$",
+ "message": "از میان $TOTAL$",
"placeholders": {
"total": {
"content": "$1",
@@ -2913,7 +2932,7 @@
"message": "دقیقه"
},
"vaultTimeoutPolicyAffectingOptions": {
- "message": "Enterprise policy requirements have been applied to your timeout options"
+ "message": "نیازمندیهای سیاست سازمانی بر گزینههای زمان پایان نشست شما اعمال شده است"
},
"vaultTimeoutPolicyInEffect": {
"message": "سیاستهای سازمانتان بر مهلت زمانی گاوصندوق شما تأثیر میگذارد. حداکثر زمان مجاز گاوصندوق $HOURS$ ساعت و $MINUTES$ دقیقه است",
@@ -2929,7 +2948,7 @@
}
},
"vaultTimeoutPolicyInEffect1": {
- "message": "$HOURS$ hour(s) and $MINUTES$ minute(s) maximum.",
+ "message": "حداکثر $HOURS$ ساعت و $MINUTES$ دقیقه.",
"placeholders": {
"hours": {
"content": "$1",
@@ -2942,7 +2961,7 @@
}
},
"vaultTimeoutPolicyMaximumError": {
- "message": "Timeout exceeds the restriction set by your organization: $HOURS$ hour(s) and $MINUTES$ minute(s) maximum",
+ "message": "زمان پایان نشست بیشتر از محدودیتی است که سازمان شما تعیین کرده است: حداکثر $HOURS$ ساعت و $MINUTES$ دقیقه",
"placeholders": {
"hours": {
"content": "$1",
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "شناسه منحصر به فردی یافت نشد."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ در حال استفاده از SSO با یک سرور کلید خود میزبان است. برای ورود اعضای این سازمان دیگر نیازی به کلمه عبور اصلی نیست.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "برای اعضای سازمان زیر، کلمه عبور اصلی دیگر لازم نیست. لطفاً دامنه زیر را با مدیر سازمان خود تأیید کنید."
+ },
+ "organizationName": {
+ "message": "نام سازمان"
+ },
+ "keyConnectorDomain": {
+ "message": "دامنه رابط کلید"
},
"leaveOrganization": {
"message": "ترک سازمان"
@@ -3038,7 +3057,7 @@
}
},
"exportingIndividualVaultWithAttachmentsDescription": {
- "message": "Only the individual vault items including attachments associated with $EMAIL$ will be exported. Organization vault items will not be included",
+ "message": "فقط موردهای فردی گاوصندوق شامل پیوستها که به $EMAIL$ مرتبط هستند برون ریزی خواهند شد. موردهای گاوصندوق سازمانی شامل نمیشوند",
"placeholders": {
"email": {
"content": "$1",
@@ -3047,10 +3066,10 @@
}
},
"exportingOrganizationVaultTitle": {
- "message": "Exporting organization vault"
+ "message": "در حال برون ریزی گاوصندوق سازمان"
},
"exportingOrganizationVaultDesc": {
- "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "message": "فقط گاوصدوق سازمان مرتبط با $ORGANIZATION$ برون ریزی خواهد شد. موارد موجود در گاوصندوقهای فردی یا سایر سازمانها شامل نمیشوند.",
"placeholders": {
"organization": {
"content": "$1",
@@ -3062,27 +3081,27 @@
"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.'"
},
"generateUsername": {
"message": "ایجاد نام کاربری"
},
"generateEmail": {
- "message": "Generate email"
+ "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": {
@@ -3096,7 +3115,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": {
@@ -3106,7 +3125,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": {
@@ -3147,15 +3166,15 @@
"message": "یک نام مستعار ایمیل با یک سرویس ارسال خارجی ایجاد کنید."
},
"forwarderDomainName": {
- "message": "Email domain",
+ "message": "دامنه ایمیل",
"description": "Labels the domain name email forwarder service option"
},
"forwarderDomainNameHint": {
- "message": "Choose a domain that is supported by the selected service",
+ "message": "دامنهای را انتخاب کنید که توسط سرویس انتخاب شده پشتیبانی میشود",
"description": "Guidance provided for email forwarding services that support multiple email domains."
},
"forwarderError": {
- "message": "$SERVICENAME$ error: $ERRORMESSAGE$",
+ "message": "$SERVICENAME$ خطا: $ERRORMESSAGE$",
"description": "Reports an error returned by a forwarding service to the user.",
"placeholders": {
"servicename": {
@@ -3169,11 +3188,11 @@
}
},
"forwarderGeneratedBy": {
- "message": "Generated by Bitwarden.",
+ "message": "تولید شده توسط Bitwarden.",
"description": "Displayed with the address on the forwarding service's configuration screen."
},
"forwarderGeneratedByWithWebsite": {
- "message": "Website: $WEBSITE$. Generated by Bitwarden.",
+ "message": "وبسایت: $WEBSITE$. تولید شده توسط Bitwarden.",
"description": "Displayed with the address on the forwarding service's configuration screen.",
"placeholders": {
"WEBSITE": {
@@ -3183,7 +3202,7 @@
}
},
"forwaderInvalidToken": {
- "message": "Invalid $SERVICENAME$ API token",
+ "message": "توکن API نامعتبر برای $SERVICENAME$",
"description": "Displayed when the user's API token is empty or rejected by the forwarding service.",
"placeholders": {
"servicename": {
@@ -3193,7 +3212,7 @@
}
},
"forwaderInvalidTokenWithMessage": {
- "message": "Invalid $SERVICENAME$ API token: $ERRORMESSAGE$",
+ "message": "توکن API نامعتبر برای $SERVICENAME$: $ERRORMESSAGE$",
"description": "Displayed when the user's API token is rejected by the forwarding service with an error message.",
"placeholders": {
"servicename": {
@@ -3207,7 +3226,7 @@
}
},
"forwaderInvalidOperation": {
- "message": "$SERVICENAME$ refused your request. Please contact your service provider for assistance.",
+ "message": "$SERVICENAME$ درخواست شما را رد کرد. لطفاً برای دریافت کمک با ارائهدهنده سرویس خود تماس بگیرید.",
"description": "Displayed when the user is forbidden from using the API by the forwarding service.",
"placeholders": {
"servicename": {
@@ -3217,7 +3236,7 @@
}
},
"forwaderInvalidOperationWithMessage": {
- "message": "$SERVICENAME$ refused your request: $ERRORMESSAGE$",
+ "message": "$SERVICENAME$ درخواست شما را رد کرد: $ERRORMESSAGE$",
"description": "Displayed when the user is forbidden from using the API by the forwarding service with an error message.",
"placeholders": {
"servicename": {
@@ -3231,7 +3250,7 @@
}
},
"forwarderNoAccountId": {
- "message": "Unable to obtain $SERVICENAME$ masked email account ID.",
+ "message": "دریافت شناسه حساب ایمیل ماسک شده از $SERVICENAME$ امکانپذیر نیست.",
"description": "Displayed when the forwarding service fails to return an account ID.",
"placeholders": {
"servicename": {
@@ -3271,7 +3290,7 @@
}
},
"forwarderUnknownForwarder": {
- "message": "Unknown forwarder: '$SERVICENAME$'.",
+ "message": "فرواردکننده ناشناخته: $SERVICENAME$.",
"description": "Displayed when the forwarding service is not supported.",
"placeholders": {
"servicename": {
@@ -3360,34 +3379,34 @@
"message": "ارسال مجدد اعلان"
},
"viewAllLogInOptions": {
- "message": "View all log in options"
+ "message": "مشاهده همه گزینههای ورود به سیستم"
},
"notificationSentDevice": {
"message": "یک اعلان به دستگاه شما ارسال شده است."
},
"notificationSentDevicePart1": {
- "message": "Unlock Bitwarden on your device or on the"
+ "message": "قفل Bitwarden را در دستگاه خود یا در... باز کنید"
},
"notificationSentDeviceAnchor": {
- "message": "web app"
+ "message": "برنامه وب"
},
"notificationSentDevicePart2": {
- "message": "Make sure the Fingerprint phrase matches the one below before approving."
+ "message": "اطمینان حاصل کنید که عبارت اثر انگشت با عبارت زیر مطابقت دارد قبل از تأیید."
},
"aNotificationWasSentToYourDevice": {
- "message": "A notification was sent to your device"
+ "message": "یک اعلان به دستگاه شما ارسال شده است"
},
"youWillBeNotifiedOnceTheRequestIsApproved": {
- "message": "You will be notified once the request is approved"
+ "message": "بهمحض تأیید درخواست، به شما اطلاع داده خواهد شد"
},
"needAnotherOptionV1": {
- "message": "Need another option?"
+ "message": "به گزینه دیگری نیاز دارید؟"
},
"loginInitiated": {
"message": "ورود به سیستم آغاز شد"
},
"logInRequestSent": {
- "message": "Request sent"
+ "message": "درخواست ارسال شد"
},
"exposedMasterPassword": {
"message": "کلمه عبور اصلی افشا شده"
@@ -3426,7 +3445,7 @@
"message": "نحوه پر کردن خودکار"
},
"autofillSelectInfoWithCommand": {
- "message": "Select an item from this screen, use the shortcut $COMMAND$, or explore other options in settings.",
+ "message": "یک مورد را از این صفحه انتخاب کنید، از میانبر $COMMAND$ استفاده کنید، یا گزینههای دیگر را در تنظیمات بررسی کنید.",
"placeholders": {
"command": {
"content": "$1",
@@ -3435,7 +3454,7 @@
}
},
"autofillSelectInfoWithoutCommand": {
- "message": "Select an item from this screen, or explore other options in settings."
+ "message": "یک مورد را از این صفحه انتخاب کنید یا گزینههای دیگر را در تنظیمات بررسی کنید."
},
"gotIt": {
"message": "متوجه شدم"
@@ -3444,22 +3463,22 @@
"message": "تنظیمات پر کردن خودکار"
},
"autofillKeyboardShortcutSectionTitle": {
- "message": "Autofill shortcut"
+ "message": "میانبر پرکردن خودکار"
},
"autofillKeyboardShortcutUpdateLabel": {
- "message": "Change shortcut"
+ "message": "تغییر میانبر"
},
"autofillKeyboardManagerShortcutsLabel": {
- "message": "Manage shortcuts"
+ "message": "مدیریت میانبرها"
},
"autofillShortcut": {
"message": "میانبر صفحه کلید پر کردن خودکار"
},
"autofillLoginShortcutNotSet": {
- "message": "The autofill login shortcut is not set. Change this in the browser's settings."
+ "message": "میانبر ورود خودکار تنظیم نشده است. این مورد را در تنظیمات مرورگر تغییر دهید."
},
"autofillLoginShortcutText": {
- "message": "The autofill login shortcut is $COMMAND$. Manage all shortcuts in the browser's settings.",
+ "message": "میانبر ورود خودکار $COMMAND$ است. همه میانبرها را میتوانید در تنظیمات مرورگر مدیریت کنید.",
"placeholders": {
"command": {
"content": "$1",
@@ -3480,16 +3499,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": "این دستگاه را به خاطر بسپار"
@@ -3519,13 +3538,13 @@
"message": "و به ساختن حسابتان ادامه دهید."
},
"noEmail": {
- "message": "No email?"
+ "message": "ایمیلی دریافت نکردید؟"
},
"goBack": {
- "message": "Go back"
+ "message": "بازگشت به عقب"
},
"toEditYourEmailAddress": {
- "message": "to edit your email address."
+ "message": "برای ویرایش آدرس ایمیل خود."
},
"eu": {
"message": "اروپا",
@@ -3559,41 +3578,49 @@
"message": "ایمیل کاربر وجود ندارد"
},
"activeUserEmailNotFoundLoggingYouOut": {
- "message": "Active user email not found. Logging you out."
+ "message": "ایمیل کاربر فعال پیدا نشد. در حال خارج کردن شما از سیستم هستیم."
},
"deviceTrusted": {
"message": "دستگاه مورد اعتماد است"
},
"trustOrganization": {
- "message": "Trust organization"
+ "message": "اعتماد به سازمان"
},
"trust": {
- "message": "Trust"
+ "message": "اطمینان"
},
"doNotTrust": {
- "message": "Do not trust"
+ "message": "اعتماد نکنید"
},
"organizationNotTrusted": {
- "message": "Organization is not trusted"
+ "message": "سازمان مورد اعتماد نیست"
},
"emergencyAccessTrustWarning": {
- "message": "For the security of your account, only confirm if you have granted emergency access to this user and their fingerprint matches what is displayed in their account"
+ "message": "برای امنیت حساب کاربری شما، فقط در صورتی تأیید کنید که دسترسی اضطراری به این کاربر دادهاید و اثر انگشت او با آنچه در حسابش نمایش داده شده، مطابقت دارد"
},
"orgTrustWarning": {
- "message": "For the security of your account, only proceed if you are a member of this organization, have account recovery enabled, and the fingerprint displayed below matches the organization's fingerprint."
+ "message": "برای امنیت حساب کاربری شما، فقط در صورتی ادامه دهید که عضو این سازمان باشید، بازیابی حساب کاربری را فعال کرده باشید و اثر انگشت نمایش داده شده در زیر با اثر انگشت سازمان مطابقت داشته باشد."
},
"orgTrustWarning1": {
- "message": "This organization has an Enterprise policy that will enroll you in account recovery. Enrollment will allow organization administrators to change your password. Only proceed if you recognize this organization and the fingerprint phrase displayed below matches the organization's fingerprint."
+ "message": "این سازمان دارای سیاست سازمانی است که شما را در بازیابی حساب کاربری ثبتنام میکند. ثبتنام به مدیران سازمان اجازه میدهد کلمه عبور شما را تغییر دهند. فقط در صورتی ادامه دهید که این سازمان را میشناسید و عبارت اثر انگشت نمایش داده شده در زیر با اثر انگشت سازمان مطابقت دارد."
},
"trustUser": {
- "message": "Trust user"
+ "message": "به کاربر اعتماد کنید"
},
"sendsNoItemsTitle": {
- "message": "No active Sends",
+ "message": "ارسالهای فعالی نیست",
"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": "از ارسال برای اشتراکگذاری امن اطلاعات رمزگذاری شده با هر کسی استفاده کنید.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsTitleNoItems": {
+ "message": "اطلاعات حساس را بهصورت ایمن ارسال کنید",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "پروندهها و دادههای خود را بهصورت امن با هر کسی، در هر پلتفرمی به اشتراک بگذارید. اطلاعات شما در حین اشتراکگذاری بهطور کامل رمزگذاری انتها به انتها باقی خواهد ماند و میزان افشا محدود میشود.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"inputRequired": {
@@ -3670,10 +3697,10 @@
}
},
"singleFieldNeedsAttention": {
- "message": "1 field needs your attention."
+ "message": "۱ فیلد به توجه شما نیاز دارد."
},
"multipleFieldsNeedAttention": {
- "message": "$COUNT$ fields need your attention.",
+ "message": "فیلدهای $COUNT$ به توجه شما نیاز دارند.",
"placeholders": {
"count": {
"content": "$1",
@@ -3728,53 +3755,53 @@
"description": "Message appearing below the autofill on load message when master password reprompt is set for a vault item."
},
"toggleSideNavigation": {
- "message": "Toggle side navigation"
+ "message": "تغییر وضعیت ناوبری کناری"
},
"skipToContent": {
- "message": "Skip to content"
+ "message": "پرش به محتوا"
},
"bitwardenOverlayButton": {
- "message": "Bitwarden autofill menu button",
+ "message": "دکمه منوی پر کردن خودکار Bitwarden",
"description": "Page title for the iframe containing the overlay button"
},
"toggleBitwardenVaultOverlay": {
- "message": "Toggle Bitwarden autofill menu",
+ "message": "نمایش یا مخفی کردن منوی پر کردن خودکار Bitwarden",
"description": "Screen reader and tool tip label for the overlay button"
},
"bitwardenVault": {
- "message": "Bitwarden autofill menu",
+ "message": "منوی پر کردن خودکار Bitwarden",
"description": "Page title in overlay"
},
"unlockYourAccountToViewMatchingLogins": {
- "message": "Unlock your account to view matching logins",
+ "message": "برای مشاهده ورودهای منطبق، قفل حساب کاربری خود را باز کنید",
"description": "Text to display in overlay when the account is locked."
},
"unlockYourAccountToViewAutofillSuggestions": {
- "message": "Unlock your account to view autofill suggestions",
+ "message": "برای مشاهده پیشنهادهای پر کردن خودکار، قفل حساب کاربری خود را باز کنید",
"description": "Text to display in overlay when the account is locked."
},
"unlockAccount": {
- "message": "Unlock account",
+ "message": "قفل حساب کاربری را باز کنید",
"description": "Button text to display in overlay when the account is locked."
},
"unlockAccountAria": {
- "message": "Unlock your account, opens in a new window",
+ "message": "قفل حساب کاربری خود را باز کنید، در پنجرهای جدید باز میشود",
"description": "Screen reader text (aria-label) for unlock account button in overlay"
},
"totpCodeAria": {
- "message": "Time-based One-Time Password Verification Code",
+ "message": "کد تأیید رمز یکبار مصرف مبتنی بر زمان",
"description": "Aria label for the totp code displayed in the inline menu for autofill"
},
"totpSecondsSpanAria": {
- "message": "Time remaining before current TOTP expires",
+ "message": "زمان باقیمانده تا انقضای کد TOTP فعلی",
"description": "Aria label for the totp seconds displayed in the inline menu for autofill"
},
"fillCredentialsFor": {
- "message": "Fill credentials for",
+ "message": "پر کردن اطلاعات ورود برای",
"description": "Screen reader text for when overlay item is in focused"
},
"partialUsername": {
- "message": "Partial username",
+ "message": "نام کاربری جزئی",
"description": "Screen reader text for when a login item is focused where a partial username is displayed. SR will announce this phrase before reading the text of the partial username"
},
"noItemsToShow": {
@@ -3790,31 +3817,31 @@
"description": "Screen reader text (aria-label) for new item button in overlay"
},
"newLogin": {
- "message": "New login",
+ "message": "ورود جدید",
"description": "Button text to display within inline menu when there are no matching items on a login field"
},
"addNewLoginItemAria": {
- "message": "Add new vault login item, opens in a new window",
+ "message": "افزودن مورد ورود جدید به گاوصندوق، در پنجرهای جدید باز میشود",
"description": "Screen reader text (aria-label) for new login button within inline menu"
},
"newCard": {
- "message": "New card",
+ "message": "کارت جدید",
"description": "Button text to display within inline menu when there are no matching items on a credit card field"
},
"addNewCardItemAria": {
- "message": "Add new vault card item, opens in a new window",
+ "message": "افزودن کارت جدید به گاوصندوق، در پنجرهای جدید باز میشود",
"description": "Screen reader text (aria-label) for new card button within inline menu"
},
"newIdentity": {
- "message": "New identity",
+ "message": "هویت جدید",
"description": "Button text to display within inline menu when there are no matching items on an identity field"
},
"addNewIdentityItemAria": {
- "message": "Add new vault identity item, opens in a new window",
+ "message": "افزودن هویت جدید به گاوصندوق، در پنجرهای جدید باز میشود",
"description": "Screen reader text (aria-label) for new identity button within inline menu"
},
"bitwardenOverlayMenuAvailable": {
- "message": "Bitwarden autofill menu available. Press the down arrow key to select.",
+ "message": "منوی پر کردن خودکار Bitwarden در دسترس است. برای انتخاب، کلید فلش پایین را فشار دهید.",
"description": "Screen reader text for announcing when the overlay opens on the page"
},
"turnOn": {
@@ -3828,13 +3855,13 @@
"description": "Used for the header of the import dialog, the import button and within the file-password-prompt"
},
"importError": {
- "message": "خطای وارد کردن"
+ "message": "خطای درون ریزی"
},
"importErrorDesc": {
"message": "مشکلی با دادههایی که سعی کردید وارد کنید وجود داشت. لطفاً خطاهای فهرست شده زیر را در فایل منبع خود برطرف کرده و دوباره امتحان کنید."
},
"resolveTheErrorsBelowAndTryAgain": {
- "message": "Resolve the errors below and try again."
+ "message": "خطاهای زیر را برطرف کرده و دوباره امتحان کنید."
},
"description": {
"message": "توضیحات"
@@ -3855,10 +3882,10 @@
"message": "دوباره سعی کنید"
},
"verificationRequiredForActionSetPinToContinue": {
- "message": "Verification required for this action. Set a PIN to continue."
+ "message": "برای این اقدام تأیید لازم است. یک کد پین تعیین کنید تا ادامه دهید."
},
"setPin": {
- "message": "تنظیم PIN"
+ "message": "تنظیم کد پین"
},
"verifyWithBiometrics": {
"message": "تایید با استفاده از بیومتریک"
@@ -3873,25 +3900,25 @@
"message": "نیازمند روش دیگری هستید؟"
},
"useMasterPassword": {
- "message": "استفاده از رمز عبور اصلی"
+ "message": "استفاده از کلمه عبور اصلی"
},
"usePin": {
- "message": "استفاده از PIN"
+ "message": "استفاده از کد پین"
},
"useBiometrics": {
"message": "استفاده از بیومتریک"
},
"enterVerificationCodeSentToEmail": {
- "message": "Enter the verification code that was sent to your email."
+ "message": "کد تأییدی را که به ایمیل شما ارسال شده است وارد کنید."
},
"resendCode": {
- "message": "Resend code"
+ "message": "ارسال دوباره کد"
},
"total": {
"message": "مجموع"
},
"importWarning": {
- "message": "You are importing data to $ORGANIZATION$. Your data may be shared with members of this organization. Do you want to proceed?",
+ "message": "شما در حال درون ریزی داده به $ORGANIZATION$ هستید. دادههای شما ممکن است با اعضای این سازمان به اشتراک گذاشته شود. آیا میخواهید ادامه دهید؟",
"placeholders": {
"organization": {
"content": "$1",
@@ -3900,13 +3927,13 @@
}
},
"duoHealthCheckResultsInNullAuthUrlError": {
- "message": "Error connecting with the Duo service. Use a different two-step login method or contact Duo for assistance."
+ "message": "خطا در اتصال به سرویس Duo. از روش ورود دو مرحلهای دیگری استفاده کنید یا برای دریافت کمک با Duo تماس بگیرید."
},
"duoRequiredForAccount": {
- "message": "Duo two-step login is required for your account."
+ "message": "ورود دو مرحله ای Duo برای حساب کاربری شما لازم است."
},
"popoutExtension": {
- "message": "Popout extension"
+ "message": "باز کردن پنجره جداگانه افزونه"
},
"launchDuo": {
"message": "اجرای Duo"
@@ -3918,25 +3945,25 @@
"message": "چیزی وارد نشد."
},
"importEncKeyError": {
- "message": "Error decrypting the exported file. Your encryption key does not match the encryption key used export the data."
+ "message": "خطا در رمزگشایی پروندهی درون ریزی شده. کلید رمزگذاری شما با کلید رمزگذاری استفاده شده برای درون ریزی دادهها مطابقت ندارد."
},
"invalidFilePassword": {
- "message": "Invalid file password, please use the password you entered when you created the export file."
+ "message": "کلمه عبور پرونده نامعتبر است، لطفاً از کلمه عبوری که هنگام ایجاد پروندهی برون ریزی وارد کردید استفاده کنید."
},
"destination": {
- "message": "Destination"
+ "message": "مقصد"
},
"learnAboutImportOptions": {
- "message": "Learn about your import options"
+ "message": "درباره گزینههای برون ریزی خود بیاموزید"
},
"selectImportFolder": {
"message": "یک پوشه انتخاب کنید"
},
"selectImportCollection": {
- "message": "Select a collection"
+ "message": "انتخاب یک مجموعه"
},
"importTargetHint": {
- "message": "Select this option if you want the imported file contents moved to a $DESTINATION$",
+ "message": "اگر میخواهید محتوای فایل وارد شده به $DESTINATION$ منتقل شود، این گزینه را انتخاب کنید",
"description": "Located as a hint under the import target. Will be appended by either folder or collection, depending if the user is importing into an individual or an organizational vault.",
"placeholders": {
"destination": {
@@ -3946,25 +3973,25 @@
}
},
"importUnassignedItemsError": {
- "message": "File contains unassigned items."
+ "message": "پرونده حاوی موارد اختصاص نیافته است."
},
"selectFormat": {
- "message": "Select the format of the import file"
+ "message": "فرمت پروندهی درون ریزی را انتخاب کنید"
},
"selectImportFile": {
- "message": "Select the import file"
+ "message": "پروندهی درون ریزی را انتخاب کنید"
},
"chooseFile": {
- "message": "Choose File"
+ "message": "انتخاب پرونده"
},
"noFileChosen": {
- "message": "No file chosen"
+ "message": "هیچ پروندهای انتخاب نشد"
},
"orCopyPasteFileContents": {
- "message": "or copy/paste the import file contents"
+ "message": "یا محتویات پروندهی درون ریزی را کپی/پیست کنید"
},
"instructionsFor": {
- "message": "$NAME$ Instructions",
+ "message": "دستورالعملهای $NAME$",
"description": "The title for the import tool instructions.",
"placeholders": {
"name": {
@@ -3974,25 +4001,25 @@
}
},
"confirmVaultImport": {
- "message": "Confirm vault import"
+ "message": "درون ریزی گاوصندوق را تأیید کنید"
},
"confirmVaultImportDesc": {
- "message": "This file is password-protected. Please enter the file password to import data."
+ "message": "این پرونده با کلمه عبور محافظت شده است. لطفاً کلمه عبور پرونده را برای درون ریزی دادهها وارد کنید."
},
"confirmFilePassword": {
- "message": "Confirm file password"
+ "message": "تأیید کلمه عبور پرونده"
},
"exportSuccess": {
- "message": "Vault data exported"
+ "message": "داده های گاوصندوق برون ریزی شد"
},
"typePasskey": {
- "message": "Passkey"
+ "message": "کلید عبور"
},
"accessing": {
- "message": "Accessing"
+ "message": "در حال دسترسی"
},
"loggedInExclamation": {
- "message": "Logged in!"
+ "message": "وارد شده!"
},
"passkeyNotCopied": {
"message": "کلید عبور کپی نمیشود"
@@ -4004,7 +4031,7 @@
"message": "تأیید توسط سایت آغازگر الزامی است. این ویژگی هنوز برای حسابهای بدون کلمه عبور اصلی اجرا نشده است."
},
"logInWithPasskeyQuestion": {
- "message": "Log in with passkey?"
+ "message": "با کلید عبور وارد میشوید؟"
},
"passkeyAlreadyExists": {
"message": "یک کلید عبور از قبل برای این برنامه وجود دارد."
@@ -4016,10 +4043,10 @@
"message": "شما هیچ ورود مشابهی برای این سایت ندارید."
},
"noMatchingLoginsForSite": {
- "message": "No matching logins for this site"
+ "message": "ورود منطبق برای این سایت یافت نشد"
},
"searchSavePasskeyNewLogin": {
- "message": "Search or save passkey as new login"
+ "message": "جستجو یا ذخیره کلید عبور به عنوان ورود جدید"
},
"confirm": {
"message": "تأیید"
@@ -4031,10 +4058,10 @@
"message": "کلید عبور را به عنوان ورود جدید ذخیره کن"
},
"chooseCipherForPasskeySave": {
- "message": "Choose a login to save this passkey to"
+ "message": "یک ورود برای ذخیره این کلید عبور انتخاب کنید"
},
"chooseCipherForPasskeyAuth": {
- "message": "Choose a passkey to log in with"
+ "message": "یک کلید عبور برای ورود انتخاب کنید"
},
"passkeyItem": {
"message": "مورد کلید عبور"
@@ -4052,125 +4079,125 @@
"message": "برای استفاده از کلید عبور، احراز هویت لازم است. برای ادامه، هویت خود را تأیید کنید."
},
"multifactorAuthenticationCancelled": {
- "message": "Multifactor authentication cancelled"
+ "message": "تأیید هویت چند مرحلهای کنسل شد"
},
"noLastPassDataFound": {
- "message": "No LastPass data found"
+ "message": "هیچ دادهای از LastPass یافت نشد"
},
"incorrectUsernameOrPassword": {
- "message": "Incorrect username or password"
+ "message": "نام کاربری یا کلمه عبور اشتباه است"
},
"incorrectPassword": {
- "message": "Incorrect password"
+ "message": "کلمه عبور اشتباه است"
},
"incorrectCode": {
- "message": "Incorrect code"
+ "message": "کد اشتباه است"
},
"incorrectPin": {
- "message": "Incorrect PIN"
+ "message": "کد پین نادرست است"
},
"multifactorAuthenticationFailed": {
- "message": "Multifactor authentication failed"
+ "message": "احراز هویت چند مرحلهای ناموفق بود"
},
"includeSharedFolders": {
- "message": "Include shared folders"
+ "message": "شامل پوشههای به اشتراک گذاری شده"
},
"lastPassEmail": {
- "message": "LastPass Email"
+ "message": "ایمیل LastPass"
},
"importingYourAccount": {
- "message": "Importing your account..."
+ "message": "در حال درون ریزی حساب کاربری شما..."
},
"lastPassMFARequired": {
- "message": "LastPass multifactor authentication required"
+ "message": "احراز هویت چند مرحلهای LastPass مورد نیاز است"
},
"lastPassMFADesc": {
- "message": "Enter your one-time passcode from your authentication app"
+ "message": "کد یکبار مصرف خود را از برنامه احراز هویت وارد کنید"
},
"lastPassOOBDesc": {
- "message": "Approve the login request in your authentication app or enter a one-time passcode."
+ "message": "درخواست ورود را در برنامه احراز هویت خود تأیید کنید یا یک کد یکبار مصرف وارد کنید."
},
"passcode": {
- "message": "Passcode"
+ "message": "کد عبور"
},
"lastPassMasterPassword": {
- "message": "LastPass master password"
+ "message": "کلمه عبور اصلی LastPass"
},
"lastPassAuthRequired": {
- "message": "LastPass authentication required"
+ "message": "احراز هویت LastPass مورد نیاز است"
},
"awaitingSSO": {
- "message": "Awaiting SSO authentication"
+ "message": "در انتظار احراز هویت SSO"
},
"awaitingSSODesc": {
- "message": "Please continue to log in using your company credentials."
+ "message": "لطفاً برای ورود، از اطلاعات کاربری شرکت خود استفاده کنید."
},
"seeDetailedInstructions": {
- "message": "See detailed instructions on our help site at",
+ "message": "دستورالعملهای کامل را در سایت راهنمای ما مشاهده کنید در",
"description": "This is followed a by a hyperlink to the help website."
},
"importDirectlyFromLastPass": {
- "message": "Import directly from LastPass"
+ "message": "درون ریزی مستقیم از LastPass"
},
"importFromCSV": {
- "message": "Import from CSV"
+ "message": "درون ریزی از CSV"
},
"lastPassTryAgainCheckEmail": {
- "message": "Try again or look for an email from LastPass to verify it's you."
+ "message": "دوباره تلاش کنید یا ایمیلی از LastPass را بررسی کنید تا هویت شما تأیید شود."
},
"collection": {
- "message": "Collection"
+ "message": "مجموعه"
},
"lastPassYubikeyDesc": {
- "message": "Insert the YubiKey associated with your LastPass account into your computer's USB port, then touch its button."
+ "message": "کلید YubiKey مربوط به حساب کاربری LastPass خود را در درگاه USB کامپیوتر قرار دهید، سپس دکمه آن را لمس کنید."
},
"switchAccount": {
- "message": "Switch account"
+ "message": "تعویض حساب کاربری"
},
"switchAccounts": {
- "message": "Switch accounts"
+ "message": "تعویض حسابها"
},
"switchToAccount": {
- "message": "Switch to account"
+ "message": "تعویض به حساب کاربری"
},
"activeAccount": {
- "message": "Active account"
+ "message": "حساب کاربری فعال"
},
"bitwardenAccount": {
- "message": "Bitwarden account"
+ "message": "حساب کاربری Bitwarden"
},
"availableAccounts": {
- "message": "Available accounts"
+ "message": "حساب کاربری در درسترس"
},
"accountLimitReached": {
- "message": "Account limit reached. Log out of an account to add another."
+ "message": "محدودیت حساب کاربری تکمیل شد. برای افزودن حساب کاربری دیگر، از یک حساب خارج شوید."
},
"active": {
- "message": "active"
+ "message": "فعال"
},
"locked": {
- "message": "locked"
+ "message": "قفل شد"
},
"unlocked": {
- "message": "unlocked"
+ "message": "باز شد"
},
"server": {
- "message": "server"
+ "message": "سرور"
},
"hostedAt": {
- "message": "hosted at"
+ "message": "میزبانی شده در"
},
"useDeviceOrHardwareKey": {
- "message": "Use your device or hardware key"
+ "message": "از دستگاه یا کلید سختافزاری خود استفاده کنید"
},
"justOnce": {
- "message": "Just once"
+ "message": "فقط یک بار"
},
"alwaysForThisSite": {
- "message": "Always for this site"
+ "message": "همیشه برای این سایت"
},
"domainAddedToExcludedDomains": {
- "message": "$DOMAIN$ added to excluded domains.",
+ "message": "دامنه $DOMAIN$ به دامنههای مستثنی اضافه شد.",
"placeholders": {
"domain": {
"content": "$1",
@@ -4179,106 +4206,106 @@
}
},
"commonImportFormats": {
- "message": "Common formats",
+ "message": "فرمتهای رایج",
"description": "Label indicating the most common import formats"
},
"confirmContinueToBrowserSettingsTitle": {
- "message": "Continue to browser settings?",
+ "message": "ادامه به تنظیمات مرورگر؟",
"description": "Title for dialog which asks if the user wants to proceed to a relevant browser settings page"
},
"confirmContinueToHelpCenter": {
- "message": "Continue to Help Center?",
+ "message": "به مرکز راهنمایی ادامه میدهید؟",
"description": "Title for dialog which asks if the user wants to proceed to a relevant Help Center page"
},
"confirmContinueToHelpCenterPasswordManagementContent": {
- "message": "Change your browser's autofill and password management settings.",
+ "message": "تنظیمات پر کردن خودکار و مدیریت کلمه عبور مرورگر خود را تغییر دهید.",
"description": "Body content for dialog which asks if the user wants to proceed to the Help Center's page about browser password management settings"
},
"confirmContinueToHelpCenterKeyboardShortcutsContent": {
- "message": "You can view and set extension shortcuts in your browser's settings.",
+ "message": "میتوانید میانبرهای افزونه را در تنظیمات مرورگر خود مشاهده و تنظیم کنید.",
"description": "Body content for dialog which asks if the user wants to proceed to the Help Center's page about browser keyboard shortcut settings"
},
"confirmContinueToBrowserPasswordManagementSettingsContent": {
- "message": "Change your browser's autofill and password management settings.",
+ "message": "تنظیمات پر کردن خودکار و مدیریت کلمه عبور مرورگر خود را تغییر دهید.",
"description": "Body content for dialog which asks if the user wants to proceed to the browser's password management settings page"
},
"confirmContinueToBrowserKeyboardShortcutSettingsContent": {
- "message": "You can view and set extension shortcuts in your browser's settings.",
+ "message": "میتوانید میانبرهای افزونه را در تنظیمات مرورگر خود مشاهده و تنظیم کنید.",
"description": "Body content for dialog which asks if the user wants to proceed to the browser's keyboard shortcut settings page"
},
"overrideDefaultBrowserAutofillTitle": {
- "message": "Make Bitwarden your default password manager?",
+ "message": "میخواهید Bitwarden را مدیر کلمه عبور پیشفرض خود کنید؟",
"description": "Dialog title facilitating the ability to override a chrome browser's default autofill behavior"
},
"overrideDefaultBrowserAutofillDescription": {
- "message": "Ignoring this option may cause conflicts between Bitwarden autofill suggestions and your browser's.",
+ "message": "نادیده گرفتن این گزینه ممکن است باعث تداخل بین پیشنهادهای پر کردن خودکار Bitwarden و مرورگر شما شود.",
"description": "Dialog message facilitating the ability to override a chrome browser's default autofill behavior"
},
"overrideDefaultBrowserAutoFillSettings": {
- "message": "Make Bitwarden your default password manager",
+ "message": "Bitwarden را به عنوان مدیر کلمه عبور پیشفرض خود تنظیم کنید",
"description": "Label for the setting that allows overriding the default browser autofill settings"
},
"privacyPermissionAdditionNotGrantedTitle": {
- "message": "Unable to set Bitwarden as the default password manager",
+ "message": "امکان تنظیم Bitwarden بهعنوان مدیر کلمه عبور پیشفرض وجود ندارد",
"description": "Title for the dialog that appears when the user has not granted the extension permission to set privacy settings"
},
"privacyPermissionAdditionNotGrantedDescription": {
- "message": "You must grant browser privacy permissions to Bitwarden to set it as the default password manager.",
+ "message": "برای تنظیم Bitwarden بهعنوان مدیر کلمه عبور پیشفرض، باید دسترسیهای حفظ حریم خصوصی مرورگر را به آن بدهید.",
"description": "Description for the dialog that appears when the user has not granted the extension permission to set privacy settings"
},
"makeDefault": {
- "message": "Make default",
+ "message": "تنظیم بهعنوان پیشفرض",
"description": "Button text for the setting that allows overriding the default browser autofill settings"
},
"saveCipherAttemptSuccess": {
- "message": "Credentials saved successfully!",
+ "message": "اطلاعات ورود با موفقیت ذخیره شد!",
"description": "Notification message for when saving credentials has succeeded."
},
"passwordSaved": {
- "message": "Password saved!",
+ "message": "کلمه عبور ذخیره شد!",
"description": "Notification message for when saving credentials has succeeded."
},
"updateCipherAttemptSuccess": {
- "message": "Credentials updated successfully!",
+ "message": "اطلاعات ورود با موفقیت بهروزرسانی شد!",
"description": "Notification message for when updating credentials has succeeded."
},
"passwordUpdated": {
- "message": "Password updated!",
+ "message": "کلمه عبور بهروزرسانی شد!",
"description": "Notification message for when updating credentials has succeeded."
},
"saveCipherAttemptFailed": {
- "message": "Error saving credentials. Check console for details.",
+ "message": "خطا در ذخیره اطلاعات ورود. جزئیات را در کنسول بررسی کنید.",
"description": "Notification message for when saving credentials has failed."
},
"success": {
- "message": "Success"
+ "message": "موفقیت آمیز بود"
},
"removePasskey": {
- "message": "Remove passkey"
+ "message": "حذف کلید عبور"
},
"passkeyRemoved": {
- "message": "Passkey removed"
+ "message": "کلید عبور حذف شد"
},
"autofillSuggestions": {
- "message": "Autofill suggestions"
+ "message": "پیشنهادهای پر کردن خودکار"
},
"itemSuggestions": {
- "message": "Suggested items"
+ "message": "موارد پیشنهادی"
},
"autofillSuggestionsTip": {
- "message": "Save a login item for this site to autofill"
+ "message": "یک مورد ورود برای این سایت ذخیره کنید تا بهصورت خودکار پر شود"
},
"yourVaultIsEmpty": {
- "message": "Your vault is empty"
+ "message": "گاوصندوقتان خالی است"
},
"noItemsMatchSearch": {
- "message": "No items match your search"
+ "message": "موردی با جستجوی شما مطابقت نداشت"
},
"clearFiltersOrTryAnother": {
- "message": "Clear filters or try another search term"
+ "message": "فیلترها را پاک کنید یا عبارت جستجوی دیگری را امتحان کنید"
},
"copyInfoTitle": {
- "message": "Copy info - $ITEMNAME$",
+ "message": "کپی اطلاعات - $ITEMNAME$",
"description": "Title for a button that opens a menu with options to copy information from an item.",
"placeholders": {
"itemname": {
@@ -4288,7 +4315,7 @@
}
},
"copyNoteTitle": {
- "message": "Copy Note - $ITEMNAME$",
+ "message": "کپی یادداشت - $ITEMNAME$",
"description": "Title for a button copies a note to the clipboard.",
"placeholders": {
"itemname": {
@@ -4298,7 +4325,7 @@
}
},
"moreOptionsLabel": {
- "message": "More options, $ITEMNAME$",
+ "message": "گزینههای بیشتر، $ITEMNAME$",
"description": "Aria label for a button that opens a menu with more options for an item.",
"placeholders": {
"itemname": {
@@ -4308,7 +4335,7 @@
}
},
"moreOptionsTitle": {
- "message": "More options - $ITEMNAME$",
+ "message": "گزینههای بیشتر - $ITEMNAME$",
"description": "Title for a button that opens a menu with more options for an item.",
"placeholders": {
"itemname": {
@@ -4318,7 +4345,7 @@
}
},
"viewItemTitle": {
- "message": "View item - $ITEMNAME$",
+ "message": "مشاهده آیتم - $ITEMNAME$",
"description": "Title for a link that opens a view for an item.",
"placeholders": {
"itemname": {
@@ -4328,7 +4355,7 @@
}
},
"viewItemTitleWithField": {
- "message": "View item - $ITEMNAME$ - $FIELD$",
+ "message": "مشاهده مورد - $ITEMNAME$ - $FIELD$",
"description": "Title for a link that opens a view for an item.",
"placeholders": {
"itemname": {
@@ -4342,7 +4369,7 @@
}
},
"autofillTitle": {
- "message": "Autofill - $ITEMNAME$",
+ "message": "پر کردن خودکار - $ITEMNAME$",
"description": "Title for a button that autofills a login item.",
"placeholders": {
"itemname": {
@@ -4352,7 +4379,7 @@
}
},
"autofillTitleWithField": {
- "message": "Autofill - $ITEMNAME$ - $FIELD$",
+ "message": "پر کردن خودکار - $ITEMNAME$ - $FIELD$",
"description": "Title for a button that autofills a login item.",
"placeholders": {
"itemname": {
@@ -4366,7 +4393,7 @@
}
},
"copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "message": "کپی $FIELD$، $VALUE$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -4380,40 +4407,40 @@
}
},
"noValuesToCopy": {
- "message": "No values to copy"
+ "message": "هیچ مقداری برای کپی وجود ندارد"
},
"assignToCollections": {
- "message": "Assign to collections"
+ "message": "اختصاص به مجموعهها"
},
"copyEmail": {
- "message": "Copy email"
+ "message": "کپی ایمیل"
},
"copyPhone": {
- "message": "Copy phone"
+ "message": "کپی تلفن"
},
"copyAddress": {
- "message": "Copy address"
+ "message": "کپی آدرس"
},
"adminConsole": {
- "message": "Admin Console"
+ "message": "کنسول مدیر"
},
"accountSecurity": {
- "message": "Account security"
+ "message": "امنیت حساب کاربری"
},
"notifications": {
- "message": "Notifications"
+ "message": "اعلانها"
},
"appearance": {
- "message": "Appearance"
+ "message": "ظاهر"
},
"errorAssigningTargetCollection": {
- "message": "Error assigning target collection."
+ "message": "خطا در اختصاص مجموعه هدف."
},
"errorAssigningTargetFolder": {
- "message": "Error assigning target folder."
+ "message": "خطا در اختصاص پوشه هدف."
},
"viewItemsIn": {
- "message": "View items in $NAME$",
+ "message": "مشاهده موارد در $NAME$",
"description": "Button to view the contents of a folder or collection",
"placeholders": {
"name": {
@@ -4423,7 +4450,7 @@
}
},
"backTo": {
- "message": "Back to $NAME$",
+ "message": "بازگشت به $NAME$",
"description": "Navigate back to a previous folder or collection",
"placeholders": {
"name": {
@@ -4433,10 +4460,10 @@
}
},
"new": {
- "message": "New"
+ "message": "جدید"
},
"removeItem": {
- "message": "Remove $NAME$",
+ "message": "حذف $NAME$",
"description": "Remove a selected option, such as a folder or collection",
"placeholders": {
"name": {
@@ -4446,56 +4473,56 @@
}
},
"itemsWithNoFolder": {
- "message": "Items with no folder"
+ "message": "موارد بدون پوشه"
},
"itemDetails": {
- "message": "Item details"
+ "message": "جزئیات مورد"
},
"itemName": {
- "message": "Item name"
+ "message": "نام مورد"
},
"organizationIsDeactivated": {
- "message": "Organization is deactivated"
+ "message": "سازمان غیرفعال شده است"
},
"owner": {
- "message": "Owner"
+ "message": "مالک"
},
"selfOwnershipLabel": {
- "message": "You",
+ "message": "شما",
"description": "Used as a label to indicate that the user is the owner of an item."
},
"contactYourOrgAdmin": {
- "message": "Items in deactivated organizations cannot be accessed. Contact your organization owner for assistance."
+ "message": "به موردهای موجود در سازمانهای غیرفعال نمیتوان دسترسی داشت. برای دریافت کمک با مالک سازمان تماس بگیرید."
},
"additionalInformation": {
- "message": "Additional information"
+ "message": "اطلاعات بیشتر"
},
"itemHistory": {
- "message": "Item history"
+ "message": "تاریخچه مورد"
},
"lastEdited": {
- "message": "Last edited"
+ "message": "آخرین ویرایش"
},
"ownerYou": {
- "message": "Owner: You"
+ "message": "مالک: شما"
},
"linked": {
- "message": "Linked"
+ "message": "پیوند شده"
},
"copySuccessful": {
- "message": "Copy Successful"
+ "message": "کپی موفق بود"
},
"upload": {
- "message": "Upload"
+ "message": "بارگذاری"
},
"addAttachment": {
- "message": "Add attachment"
+ "message": "افزودن پیوست"
},
"maxFileSizeSansPunctuation": {
- "message": "Maximum file size is 500 MB"
+ "message": "بیشترین حجم پرونده ۵۰۰ مگابایت است"
},
"deleteAttachmentName": {
- "message": "Delete attachment $NAME$",
+ "message": "حذف پیوست $NAME$",
"placeholders": {
"name": {
"content": "$1",
@@ -4504,7 +4531,7 @@
}
},
"downloadAttachmentName": {
- "message": "Download $NAME$",
+ "message": "بارگیری $NAME$",
"placeholders": {
"name": {
"content": "$1",
@@ -4513,46 +4540,52 @@
}
},
"downloadBitwarden": {
- "message": "Download Bitwarden"
+ "message": "بارگیری Bitwarden"
},
"downloadBitwardenOnAllDevices": {
- "message": "Download Bitwarden on all devices"
+ "message": "Bitwarden را روی همه دستگاهها بارگیری کنید"
},
"getTheMobileApp": {
- "message": "Get the mobile app"
+ "message": "دریافت برنامهی تلفن همراه"
},
"getTheMobileAppDesc": {
- "message": "Access your passwords on the go with the Bitwarden mobile app."
+ "message": "با برنامه موبایل Bitwarden، به کلمات عبور خود در هر زمان و مکان دسترسی داشته باشید."
},
"getTheDesktopApp": {
- "message": "Get the desktop app"
+ "message": "برنامه دسکتاپ را دریافت کنید"
},
"getTheDesktopAppDesc": {
- "message": "Access your vault without a browser, then set up unlock with biometrics to expedite unlocking in both the desktop app and browser extension."
+ "message": "بدون استفاده از مرورگر به گاوصندوق خود دسترسی پیدا کنید و سپس باز کردن قفل با بیومتریک را تنظیم کنید تا باز کردن سریعتر قفل در اپ دسکتاپ و افزونه مرورگر انجام شود."
},
"downloadFromBitwardenNow": {
- "message": "Download from bitwarden.com now"
+ "message": "هماکنون از bitwarden.com بارگیری کنید"
+ },
+ "getItOnGooglePlay": {
+ "message": "از Google Play دریافت کنید"
+ },
+ "downloadOnTheAppStore": {
+ "message": "از AppStore بارگیری کنید"
},
"permanentlyDeleteAttachmentConfirmation": {
- "message": "Are you sure you want to permanently delete this attachment?"
+ "message": "آیا مطمئن هستید که میخواهید این پرونده پیوست را بهطور دائمی حذف کنید؟"
},
"premium": {
- "message": "Premium"
+ "message": "پرمیوم"
},
"freeOrgsCannotUseAttachments": {
- "message": "Free organizations cannot use attachments"
+ "message": "سازمانهای رایگان نمیتوانند از پروندههای پیوست استفاده کنند"
},
"filters": {
- "message": "Filters"
+ "message": "فیلترها"
},
"filterVault": {
- "message": "Filter vault"
+ "message": "فیلتر گاوصندوق"
},
"filterApplied": {
- "message": "One filter applied"
+ "message": "یک فیلتر اعمال شده است"
},
"filterAppliedPlural": {
- "message": "$COUNT$ filters applied",
+ "message": "$COUNT$ فیلتر اعمال شده است",
"placeholders": {
"count": {
"content": "$1",
@@ -4561,16 +4594,16 @@
}
},
"personalDetails": {
- "message": "Personal details"
+ "message": "جزئیات شخصی"
},
"identification": {
- "message": "Identification"
+ "message": "شناسایی"
},
"contactInfo": {
- "message": "Contact info"
+ "message": "اطلاعات مخاطب"
},
"downloadAttachment": {
- "message": "Download - $ITEMNAME$",
+ "message": "بارگیری - $ITEMNAME$",
"placeholders": {
"itemname": {
"content": "$1",
@@ -4579,23 +4612,23 @@
}
},
"cardNumberEndsWith": {
- "message": "card number ends with",
+ "message": "شماره کارت پایان مییابد با",
"description": "Used within the inline menu to provide an aria description when users are attempting to fill a card cipher."
},
"loginCredentials": {
- "message": "Login credentials"
+ "message": "اطلاعات ورود"
},
"authenticatorKey": {
- "message": "Authenticator key"
+ "message": "کلید احراز هویت"
},
"autofillOptions": {
- "message": "Autofill options"
+ "message": "گزینههای پر کردن خودکار"
},
"websiteUri": {
- "message": "Website (URI)"
+ "message": "وبسایت (نشانی اینترنتی)"
},
"websiteUriCount": {
- "message": "Website (URI) $COUNT$",
+ "message": "وبسایت (نشانی اینترنتی) $COUNT$",
"description": "Label for an input field that contains a website URI. The input field is part of a list of fields, and the count indicates the position of the field in the list.",
"placeholders": {
"count": {
@@ -4605,16 +4638,16 @@
}
},
"websiteAdded": {
- "message": "Website added"
+ "message": "وبسایت اضافه شد"
},
"addWebsite": {
- "message": "Add website"
+ "message": "افزودن وبسایت"
},
"deleteWebsite": {
- "message": "Delete website"
+ "message": "حذف وبسایت"
},
"defaultLabel": {
- "message": "Default ($VALUE$)",
+ "message": "پیشفرض ($VALUE$)",
"description": "A label that indicates the default value for a field with the current default value in parentheses.",
"placeholders": {
"value": {
@@ -4624,7 +4657,7 @@
}
},
"showMatchDetection": {
- "message": "Show match detection $WEBSITE$",
+ "message": "نمایش تطبیق سایت $WEBSITE$",
"placeholders": {
"website": {
"content": "$1",
@@ -4633,7 +4666,7 @@
}
},
"hideMatchDetection": {
- "message": "Hide match detection $WEBSITE$",
+ "message": "مخفی کردن تطبیق سایت $WEBSITE$",
"placeholders": {
"website": {
"content": "$1",
@@ -4642,19 +4675,19 @@
}
},
"autoFillOnPageLoad": {
- "message": "Autofill on page load?"
+ "message": "پر کردن خودکار هنگام بارگذاری صفحه؟"
},
"cardExpiredTitle": {
- "message": "Expired card"
+ "message": "تاریخ کارت منقضی شده است"
},
"cardExpiredMessage": {
- "message": "If you've renewed it, update the card's information"
+ "message": "اگر تمدید کردهاید، اطلاعات کارت را بهروزرسانی کنید"
},
"cardDetails": {
- "message": "Card details"
+ "message": "جزئیات کارت"
},
"cardBrandDetails": {
- "message": "$BRAND$ details",
+ "message": "$BRAND$ جزئیات",
"placeholders": {
"brand": {
"content": "$1",
@@ -4663,43 +4696,43 @@
}
},
"enableAnimations": {
- "message": "Enable animations"
+ "message": "فعالسازی انیمیشنها"
},
"showAnimations": {
- "message": "Show animations"
+ "message": "نمایش انیمیشنها"
},
"addAccount": {
- "message": "Add account"
+ "message": "افزودن حساب کاربری"
},
"loading": {
- "message": "Loading"
+ "message": "در حال بارگذاری"
},
"data": {
- "message": "Data"
+ "message": "داده"
},
"passkeys": {
- "message": "Passkeys",
+ "message": "کلیدهای عبور",
"description": "A section header for a list of passkeys."
},
"passwords": {
- "message": "Passwords",
+ "message": "کلمات عبور",
"description": "A section header for a list of passwords."
},
"logInWithPasskeyAriaLabel": {
- "message": "Log in with passkey",
+ "message": "با کلید عبور وارد شوید",
"description": "ARIA label for the inline menu button that logs in with a passkey."
},
"assign": {
- "message": "Assign"
+ "message": "اختصاص بدهید"
},
"bulkCollectionAssignmentDialogDescriptionSingular": {
- "message": "Only organization members with access to these collections will be able to see the item."
+ "message": "فقط اعضای سازمانی که به این مجموعهها دسترسی دارند قادر به مشاهده این مورد خواهند بود."
},
"bulkCollectionAssignmentDialogDescriptionPlural": {
- "message": "Only organization members with access to these collections will be able to see the items."
+ "message": "فقط اعضای سازمانی که به این مجموعهها دسترسی دارند قادر به مشاهده این موارد خواهند بود."
},
"bulkCollectionAssignmentWarning": {
- "message": "You have selected $TOTAL_COUNT$ items. You cannot update $READONLY_COUNT$ of the items because you do not have edit permissions.",
+ "message": "شما $TOTAL_COUNT$ مورد را انتخاب کردهاید. نمیتوانید $READONLY_COUNT$ مورد را بهروزرسانی کنید زیرا دسترسی ویرایش ندارید.",
"placeholders": {
"total_count": {
"content": "$1",
@@ -4711,37 +4744,37 @@
}
},
"addField": {
- "message": "Add field"
+ "message": "افزودن فیلد"
},
"add": {
- "message": "Add"
+ "message": "افزودن"
},
"fieldType": {
- "message": "Field type"
+ "message": "نوع فیلد"
},
"fieldLabel": {
- "message": "Field label"
+ "message": "برچسب فیلد"
},
"textHelpText": {
- "message": "Use text fields for data like security questions"
+ "message": "برای دادههایی مانند سوالات امنیتی از فیلدهای متنی استفاده کنید"
},
"hiddenHelpText": {
- "message": "Use hidden fields for sensitive data like a password"
+ "message": "برای دادههای حساس مانند کلمه عبور از فیلدهای مخفی استفاده کنید"
},
"checkBoxHelpText": {
- "message": "Use checkboxes if you'd like to autofill a form's checkbox, like a remember email"
+ "message": "اگر میخواهید فیلدهای تیکدار فرم را بهصورت خودکار پر کنید، مانند گزینه به یاد سپردن ایمیل، از کادرهای انتخاب استفاده کنید"
},
"linkedHelpText": {
- "message": "Use a linked field when you are experiencing autofill issues for a specific website."
+ "message": "وقتی در پر کردن خودکار برای یک وبسایت خاص به مشکل برخوردید، از فیلد مرتبط استفاده کنید."
},
"linkedLabelHelpText": {
- "message": "Enter the the field's html id, name, aria-label, or placeholder."
+ "message": "شناسه Html، نام، aria-label یا محل نگهدار فیلد را وارد کنید."
},
"editField": {
- "message": "Edit field"
+ "message": "ویرایش فیلد"
},
"editFieldLabel": {
- "message": "Edit $LABEL$",
+ "message": "ویرایش $LABEL$",
"placeholders": {
"label": {
"content": "$1",
@@ -4750,7 +4783,7 @@
}
},
"deleteCustomField": {
- "message": "Delete $LABEL$",
+ "message": "حذف $LABEL$",
"placeholders": {
"label": {
"content": "$1",
@@ -4759,7 +4792,7 @@
}
},
"fieldAdded": {
- "message": "$LABEL$ added",
+ "message": "$LABEL$ افزوده شد",
"placeholders": {
"label": {
"content": "$1",
@@ -4768,7 +4801,7 @@
}
},
"reorderToggleButton": {
- "message": "Reorder $LABEL$. Use arrow key to move item up or down.",
+ "message": "مرتبسازی مجدد $LABEL$. برای جابجایی مورد به بالا یا پایین از کلیدهای جهتنما استفاده کنید.",
"placeholders": {
"label": {
"content": "$1",
@@ -4777,10 +4810,10 @@
}
},
"reorderWebsiteUriButton": {
- "message": "Reorder website URI. Use arrow key to move item up or down."
+ "message": "مرتبسازی مجدد نشانی اینترنتی وبسایت. برای جابجایی مورد به بالا یا پایین از کلیدهای جهتنما استفاده کنید."
},
"reorderFieldUp": {
- "message": "$LABEL$ moved up, position $INDEX$ of $LENGTH$",
+ "message": "$LABEL$ به بالا منتقل شد، موقعیت $INDEX$ از $LENGTH$",
"placeholders": {
"label": {
"content": "$1",
@@ -4797,13 +4830,13 @@
}
},
"selectCollectionsToAssign": {
- "message": "Select collections to assign"
+ "message": "مجموعهها را برای اختصاص انتخاب کنید"
},
"personalItemTransferWarningSingular": {
- "message": "1 item will be permanently transferred to the selected organization. You will no longer own this item."
+ "message": "۱ مورد به طور دائمی به سازمان انتخاب شده منتقل خواهد شد. شما دیگر مالک این مورد نخواهید بود."
},
"personalItemsTransferWarningPlural": {
- "message": "$PERSONAL_ITEMS_COUNT$ items will be permanently transferred to the selected organization. You will no longer own these items.",
+ "message": "$PERSONAL_ITEMS_COUNT$ مورد به طور دائمی به سازمان انتخاب شده منتقل خواهند شد. شما دیگر مالک این موارد نخواهید بود.",
"placeholders": {
"personal_items_count": {
"content": "$1",
@@ -4812,7 +4845,7 @@
}
},
"personalItemWithOrgTransferWarningSingular": {
- "message": "1 item will be permanently transferred to $ORG$. You will no longer own this item.",
+ "message": "۱ مورد به طور دائمی به $ORG$ منتقل خواهد شد. شما دیگر مالک این مورد نخواهید بود.",
"placeholders": {
"org": {
"content": "$1",
@@ -4821,7 +4854,7 @@
}
},
"personalItemsWithOrgTransferWarningPlural": {
- "message": "$PERSONAL_ITEMS_COUNT$ items will be permanently transferred to $ORG$. You will no longer own these items.",
+ "message": "$PERSONAL_ITEMS_COUNT$ مورد به طور دائمی به $ORG$ منتقل خواهند شد. شما دیگر مالک این موارد نخواهید بود.",
"placeholders": {
"personal_items_count": {
"content": "$1",
@@ -4834,13 +4867,13 @@
}
},
"successfullyAssignedCollections": {
- "message": "Successfully assigned collections"
+ "message": "مجموعهها با موفقیت اختصاص داده شدند"
},
"nothingSelected": {
- "message": "You have not selected anything."
+ "message": "شما چیزی را انتخاب نکرده اید."
},
"itemsMovedToOrg": {
- "message": "Items moved to $ORGNAME$",
+ "message": "موارد به $ORGNAME$ منتقل شدند",
"placeholders": {
"orgname": {
"content": "$1",
@@ -4849,7 +4882,7 @@
}
},
"itemMovedToOrg": {
- "message": "Item moved to $ORGNAME$",
+ "message": "مورد به $ORGNAME$ منتقل شد",
"placeholders": {
"orgname": {
"content": "$1",
@@ -4858,7 +4891,7 @@
}
},
"reorderFieldDown": {
- "message": "$LABEL$ moved down, position $INDEX$ of $LENGTH$",
+ "message": "$LABEL$ به پایین منتقل شد، موقعیت $INDEX$ از $LENGTH$",
"placeholders": {
"label": {
"content": "$1",
@@ -4875,46 +4908,46 @@
}
},
"itemLocation": {
- "message": "Item Location"
+ "message": "مکان مورد"
},
"fileSend": {
- "message": "File Send"
+ "message": "پرونده ارسال"
},
"fileSends": {
- "message": "File Sends"
+ "message": "پرونده ارسالها"
},
"textSend": {
- "message": "Text Send"
+ "message": "ارسال متن"
},
"textSends": {
- "message": "Text Sends"
+ "message": "ارسالهای متن"
},
"accountActions": {
- "message": "Account actions"
+ "message": "فعالیتهای حساب کاربری"
},
"showNumberOfAutofillSuggestions": {
- "message": "Show number of login autofill suggestions on extension icon"
+ "message": "نمایش تعداد پیشنهادهای پر کردن خودکار ورود در آیکون افزونه"
},
"showQuickCopyActions": {
- "message": "Show quick copy actions on Vault"
+ "message": "نمایش عملیات کپی سریع در گاوصندوق"
},
"systemDefault": {
- "message": "System default"
+ "message": "پیشفرض سیستم"
},
"enterprisePolicyRequirementsApplied": {
- "message": "Enterprise policy requirements have been applied to this setting"
+ "message": "الزامات سیاست سازمانی روی این تنظیم اعمال شده است"
},
"sshPrivateKey": {
- "message": "Private key"
+ "message": "کلید خصوصی"
},
"sshPublicKey": {
- "message": "Public key"
+ "message": "کلید عمومی"
},
"sshFingerprint": {
- "message": "Fingerprint"
+ "message": "اثر انگشت"
},
"sshKeyAlgorithm": {
- "message": "Key type"
+ "message": "نوع کلید"
},
"sshKeyAlgorithmED25519": {
"message": "ED25519"
@@ -4929,61 +4962,61 @@
"message": "RSA 4096-Bit"
},
"retry": {
- "message": "Retry"
+ "message": "تلاش مجدد"
},
"vaultCustomTimeoutMinimum": {
- "message": "Minimum custom timeout is 1 minute."
+ "message": "حداقل مهلت زمانی سفارشی ۱ دقیقه است."
},
"additionalContentAvailable": {
- "message": "Additional content is available"
+ "message": "محتوای اضافی در دسترس است"
},
"fileSavedToDevice": {
- "message": "File saved to device. Manage from your device downloads."
+ "message": "پرونده در دستگاه ذخیره شد. از بخش بارگیریهای دستگاه خود مدیریت کنید."
},
"showCharacterCount": {
- "message": "Show character count"
+ "message": "نمایش تعداد کاراکترها"
},
"hideCharacterCount": {
- "message": "Hide character count"
+ "message": "مخفی کردن تعداد کاراکترها"
},
"itemsInTrash": {
- "message": "Items in trash"
+ "message": "موراد در سطل زباله"
},
"noItemsInTrash": {
- "message": "No items in trash"
+ "message": "موردی در سطل زباله نیست"
},
"noItemsInTrashDesc": {
- "message": "Items you delete will appear here and be permanently deleted after 30 days"
+ "message": "مواردی که حذف میکنید اینجا نمایش داده میشوند و پس از ۳۰ روز به طور دائمی حذف خواهند شد"
},
"trashWarning": {
- "message": "Items that have been in trash more than 30 days will automatically be deleted"
+ "message": "مواردی که بیش از ۳۰ روز در سطل زباله بودهاند بهطور خودکار حذف خواهند شد"
},
"restore": {
- "message": "Restore"
+ "message": "بازیابی"
},
"deleteForever": {
- "message": "Delete forever"
+ "message": "حذف برای همیشه"
},
"noEditPermissions": {
- "message": "You don't have permission to edit this item"
+ "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",
@@ -4992,208 +5025,217 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "باز کردن قفل با بیومتریک در حال حاضر به دلیل نامعلومی در دسترس نیست."
+ },
+ "unlockVault": {
+ "message": "قفل گاوصندوق خود را در چند ثانیه باز کنید"
+ },
+ "unlockVaultDesc": {
+ "message": "میتوانید تنظیمات باز کردن قفل و زمانبندی خودکار بسته شدن گاوصندوق را سفارشی کنید تا سریعتر به گاوصندوق خود دسترسی پیدا کنید."
+ },
+ "unlockPinSet": {
+ "message": "بازکردن قفل کد پین تنظیم شد"
},
"authenticating": {
- "message": "Authenticating"
+ "message": "در حال احراز هویت"
},
"fillGeneratedPassword": {
- "message": "Fill generated password",
+ "message": "پر کردن کلمه عبور تولید شده",
"description": "Heading for the password generator within the inline menu"
},
"passwordRegenerated": {
- "message": "Password regenerated",
+ "message": "کلمه عبور تولید شد",
"description": "Notification message for when a password has been regenerated"
},
"saveToBitwarden": {
- "message": "Save to Bitwarden",
+ "message": "ذخیره در Bitwarden",
"description": "Confirmation message for saving a login to Bitwarden"
},
"spaceCharacterDescriptor": {
- "message": "Space",
+ "message": "فاصله",
"description": "Represents the space key in screen reader content as a readable word"
},
"tildeCharacterDescriptor": {
- "message": "Tilde",
+ "message": "تیلد",
"description": "Represents the ~ key in screen reader content as a readable word"
},
"backtickCharacterDescriptor": {
- "message": "Backtick",
+ "message": "بکتیک",
"description": "Represents the ` key in screen reader content as a readable word"
},
"exclamationCharacterDescriptor": {
- "message": "Exclamation mark",
+ "message": "علامت تعجب",
"description": "Represents the ! key in screen reader content as a readable word"
},
"atSignCharacterDescriptor": {
- "message": "At sign",
+ "message": "علامت @",
"description": "Represents the @ key in screen reader content as a readable word"
},
"hashSignCharacterDescriptor": {
- "message": "Hash sign",
+ "message": "علامت #",
"description": "Represents the # key in screen reader content as a readable word"
},
"dollarSignCharacterDescriptor": {
- "message": "Dollar sign",
+ "message": "علامت دلار",
"description": "Represents the $ key in screen reader content as a readable word"
},
"percentSignCharacterDescriptor": {
- "message": "Percent sign",
+ "message": "علامت ٪",
"description": "Represents the % key in screen reader content as a readable word"
},
"caretCharacterDescriptor": {
- "message": "Caret",
+ "message": "علامت ^",
"description": "Represents the ^ key in screen reader content as a readable word"
},
"ampersandCharacterDescriptor": {
- "message": "Ampersand",
+ "message": "علامت &",
"description": "Represents the & key in screen reader content as a readable word"
},
"asteriskCharacterDescriptor": {
- "message": "Asterisk",
+ "message": "علامت *",
"description": "Represents the * key in screen reader content as a readable word"
},
"parenLeftCharacterDescriptor": {
- "message": "Left parenthesis",
+ "message": "پرانتز چپ",
"description": "Represents the ( key in screen reader content as a readable word"
},
"parenRightCharacterDescriptor": {
- "message": "Right parenthesis",
+ "message": "پرانتز راست",
"description": "Represents the ) key in screen reader content as a readable word"
},
"hyphenCharacterDescriptor": {
- "message": "Underscore",
+ "message": "خط زیر",
"description": "Represents the _ key in screen reader content as a readable word"
},
"underscoreCharacterDescriptor": {
- "message": "Hyphen",
+ "message": "خط تیره",
"description": "Represents the - key in screen reader content as a readable word"
},
"plusCharacterDescriptor": {
- "message": "Plus",
+ "message": "به علاوه",
"description": "Represents the + key in screen reader content as a readable word"
},
"equalsCharacterDescriptor": {
- "message": "Equals",
+ "message": "مساوی",
"description": "Represents the = key in screen reader content as a readable word"
},
"braceLeftCharacterDescriptor": {
- "message": "Left brace",
+ "message": "آکولادِ چپ",
"description": "Represents the { key in screen reader content as a readable word"
},
"braceRightCharacterDescriptor": {
- "message": "Right brace",
+ "message": "آکولادِ راست",
"description": "Represents the } key in screen reader content as a readable word"
},
"bracketLeftCharacterDescriptor": {
- "message": "Left bracket",
+ "message": "کروشهی چپ",
"description": "Represents the [ key in screen reader content as a readable word"
},
"bracketRightCharacterDescriptor": {
- "message": "Right bracket",
+ "message": "کروشهی راست",
"description": "Represents the ] key in screen reader content as a readable word"
},
"pipeCharacterDescriptor": {
- "message": "Pipe",
+ "message": "علامت |",
"description": "Represents the | key in screen reader content as a readable word"
},
"backSlashCharacterDescriptor": {
- "message": "Back slash",
+ "message": "بک اسلش",
"description": "Represents the back slash key in screen reader content as a readable word"
},
"colonCharacterDescriptor": {
- "message": "Colon",
+ "message": "دو نقطه",
"description": "Represents the : key in screen reader content as a readable word"
},
"semicolonCharacterDescriptor": {
- "message": "Semicolon",
+ "message": "نقطه ویرگول",
"description": "Represents the ; key in screen reader content as a readable word"
},
"doubleQuoteCharacterDescriptor": {
- "message": "Double quote",
+ "message": "دابل کوت",
"description": "Represents the double quote key in screen reader content as a readable word"
},
"singleQuoteCharacterDescriptor": {
- "message": "Single quote",
+ "message": "سینگل کوت",
"description": "Represents the ' key in screen reader content as a readable word"
},
"lessThanCharacterDescriptor": {
- "message": "Less than",
+ "message": "کمتر از",
"description": "Represents the < key in screen reader content as a readable word"
},
"greaterThanCharacterDescriptor": {
- "message": "Greater than",
+ "message": "بیشتر از",
"description": "Represents the > key in screen reader content as a readable word"
},
"commaCharacterDescriptor": {
- "message": "Comma",
+ "message": "کاما",
"description": "Represents the , key in screen reader content as a readable word"
},
"periodCharacterDescriptor": {
- "message": "Period",
+ "message": "دوره",
"description": "Represents the . key in screen reader content as a readable word"
},
"questionCharacterDescriptor": {
- "message": "Question mark",
+ "message": "علامت سوال",
"description": "Represents the ? key in screen reader content as a readable word"
},
"forwardSlashCharacterDescriptor": {
- "message": "Forward slash",
+ "message": "ممیز",
"description": "Represents the / key in screen reader content as a readable word"
},
"lowercaseAriaLabel": {
- "message": "Lowercase"
+ "message": "حروف کوچک"
},
"uppercaseAriaLabel": {
- "message": "Uppercase"
+ "message": "حروف بزرگ"
},
"generatedPassword": {
- "message": "Generated password"
+ "message": "کلمه عبور تولید شد"
},
"compactMode": {
- "message": "Compact mode"
+ "message": "حالت فشرده"
},
"beta": {
- "message": "Beta"
+ "message": "آزمایشی"
},
"extensionWidth": {
- "message": "Extension width"
+ "message": "عرض افزونه"
},
"wide": {
- "message": "Wide"
+ "message": "عریض"
},
"extraWide": {
- "message": "Extra wide"
+ "message": "خیلی عریض"
},
"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": "کلمه عبور را وارد کنید"
},
"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": "وارد کردن کلید از حافظه موقت"
},
"sshKeyImported": {
- "message": "SSH key imported successfully"
+ "message": "کلید SSH با موفقیت وارد شد"
},
"cannotRemoveViewOnlyCollections": {
- "message": "You cannot remove collections with View only permissions: $COLLECTIONS$",
+ "message": "نمیتوانید مجموعههایی را که فقط دسترسی مشاهده دارند حذف کنید: $COLLECTIONS$",
"placeholders": {
"collections": {
"content": "$1",
@@ -5202,109 +5244,138 @@
}
},
"updateDesktopAppOrDisableFingerprintDialogTitle": {
- "message": "Please update your desktop application"
+ "message": "لطفاً برنامه دسکتاپ خود را بهروزرسانی کنید"
},
"updateDesktopAppOrDisableFingerprintDialogMessage": {
- "message": "To use biometric unlock, please update your desktop application, or disable fingerprint unlock in the desktop settings."
+ "message": "برای استفاده از باز کردن قفل با بیومتریک، لطفاً برنامه دسکتاپ خود را بهروزرسانی کنید یا باز کردن قفل با اثر انگشت را در تنظیمات دسکتاپ غیرفعال کنید."
},
"changeAtRiskPassword": {
- "message": "Change at-risk password"
+ "message": "تغییر کلمه عبور در معرض خطر"
},
"settingsVaultOptions": {
- "message": "Vault options"
+ "message": "گزینههای گاوصندوق"
},
"emptyVaultDescription": {
- "message": "The vault protects more than just your passwords. Store secure logins, IDs, cards and notes securely here."
+ "message": "گاوصندوق تنها کلمات عبور را محافظت نمیکند. ورودهای امن، شناسهها، کارتها و یادداشتها را نیز به صورت امن در اینجا ذخیره کنید."
},
"introCarouselLabel": {
- "message": "Welcome to Bitwarden"
+ "message": "به Bitwarden خوش آمدید"
},
"securityPrioritized": {
- "message": "Security, prioritized"
+ "message": "امنیت، در اولویت"
},
"securityPrioritizedBody": {
- "message": "Save logins, cards, and identities to your secure vault. Bitwarden uses zero-knowledge, end-to-end encryption to protect what’s important to you."
+ "message": "ورودها، کارتها و هویتها را در گاوصندوق امن خود ذخیره کنید. Bitwarden از رمزگذاری انتها به انتهای دانش صفر برای محافظت از آنچه برای شما مهم است استفاده میکند."
},
"quickLogin": {
- "message": "Quick and easy login"
+ "message": "ورود سریع و آسان"
},
"quickLoginBody": {
- "message": "Set up biometric unlock and autofill to log into your accounts without typing a single letter."
+ "message": "قفل بیومتریک و پر کردن خودکار را تنظیم کنید تا بدون وارد کردن حتی یک حرف وارد حسابهای خود شوید."
},
"secureUser": {
- "message": "Level up your logins"
+ "message": "ورودهای خود را ارتقا دهید"
},
"secureUserBody": {
- "message": "Use the generator to create and save strong, unique passwords for all your accounts."
+ "message": "از تولید کننده برای ایجاد و ذخیره کلمههای عبور قوی و منحصر به فرد برای تمام حسابهای کاربری خود استفاده کنید."
},
"secureDevices": {
- "message": "Your data, when and where you need it"
+ "message": "دادههای شما، زمانی که نیاز دارید و در جایی که نیاز دارید"
},
"secureDevicesBody": {
- "message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
+ "message": "کلمههای عبور نامحدود را در دستگاههای نامحدود با اپلیکیشنهای موبایل، مرورگر و دسکتاپ Bitwarden ذخیره کنید."
+ },
+ "nudgeBadgeAria": {
+ "message": "۱ اعلان"
},
"emptyVaultNudgeTitle": {
- "message": "Import existing passwords"
+ "message": "درون ریزی کلمات عبور موجود"
},
"emptyVaultNudgeBody": {
- "message": "Use the importer to quickly transfer logins to Bitwarden without manually adding them."
+ "message": "از ابزار درون ریزی استفاده کنید تا ورودها را سریعاً به Bitwarden منتقل کنید بدون نیاز به افزودن دستی آنها."
},
"emptyVaultNudgeButton": {
- "message": "Import now"
+ "message": "الان درودن ریزی کن"
},
"hasItemsVaultNudgeTitle": {
- "message": "Welcome to your vault!"
+ "message": "به گاوصندوق خود خوش آمدید!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "پر کردن خودکار موارد برای صفحه فعلی"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "موارد مورد علاقه برای دسترسی آسان"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "در گاوصندوق خود به دنبال چیز دیگری بگردید"
},
"newLoginNudgeTitle": {
- "message": "Save time with autofill"
+ "message": "با پر کردن خودکار در وقت خود صرفه جویی کنید"
},
"newLoginNudgeBodyOne": {
- "message": "Include a",
+ "message": "شامل یک",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "وبسایت",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyTwo": {
- "message": "so this login appears as an autofill suggestion.",
+ "message": "تا این ورود به عنوان پیشنهاد پر کردن خودکار ظاهر شود.",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newCardNudgeTitle": {
- "message": "Seamless online checkout"
+ "message": "پرداخت آنلاین بدون وقفه"
},
"newCardNudgeBody": {
- "message": "With cards, easily autofill payment forms securely and accurately."
+ "message": "با کارتها، فرمهای پرداخت را بهراحتی و با امنیت و دقت پر کنید."
},
"newIdentityNudgeTitle": {
- "message": "Simplify creating accounts"
+ "message": "ساخت حسابهای کاربری را ساده کنید"
},
"newIdentityNudgeBody": {
- "message": "With identities, quickly autofill long registration or contact forms."
+ "message": "با هویتها، به سرعت فرمهای طولانی ثبتنام یا تماس را پر کنید."
},
"newNoteNudgeTitle": {
- "message": "Keep your sensitive data safe"
+ "message": "اطلاعات حساس خود را ایمن نگه دارید"
},
"newNoteNudgeBody": {
- "message": "With notes, securely store sensitive data like banking or insurance details."
+ "message": "با یادداشتها، اطلاعات حساسی مانند جزئیات بانکی یا بیمه را بهصورت ایمن ذخیره کنید."
},
"newSshNudgeTitle": {
- "message": "Developer-friendly SSH access"
+ "message": "دسترسی SSH مناسب برای توسعهدهندگان"
},
"newSshNudgeBodyOne": {
- "message": "Store your keys and connect with the SSH agent for fast, encrypted authentication.",
+ "message": "کلیدهای خود را ذخیره کنید و با عامل SSH برای احراز هویت سریع و رمزگذاریشده متصل شوید.",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
"newSshNudgeBodyTwo": {
- "message": "Learn more about SSH agent",
+ "message": "اطلاعات بیشتر درباره عامل SSH را بیاموزید",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "ساخت سریع کلمات عبور"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "بهراحتی کلمات عبور قوی و منحصر به فرد ایجاد کنید با کلیک روی",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "برای کمک به حفظ امنیت ورودهای شما.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "با کلیک روی دکمه تولید رمز عبور، بهراحتی کلمات عبور قوی و منحصر به فرد ایجاد کنید تا ورودهای شما ایمن باقی بمانند.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "شما اجازه دسترسی به این صفحه را ندارید. لطفاً با حساب کاربری دیگری وارد شوید."
}
}
diff --git a/apps/browser/src/_locales/fi/messages.json b/apps/browser/src/_locales/fi/messages.json
index 747ac8ccd57..8e5eede202a 100644
--- a/apps/browser/src/_locales/fi/messages.json
+++ b/apps/browser/src/_locales/fi/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Uusi kohde, avautuu uudessa ikkunassa",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Muokkaa ennen tallentamista",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ tallennettiin Bitwardeniin.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ päivitettiin Bitwardeniin.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Tallenna uutena kirjautumistietona",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Päivitä kirjautumistieto",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Tallenna kirjautumistieto",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Automaattitäytön ehdotukset"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Poista automaattitäyttö käytöstä selaimessa $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Poista automaattitäyttö käytöstä"
+ },
"showInlineMenuLabel": {
"message": "Näytä automaattitäytön ehdotukset lomakekentissä"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Aikakatkaisutoiminto"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Uusia mukautusvaihtoehtoja"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Mukauta holvikokemustasi pikakopiointitoiminnoilla, kompaktilla tilalla ja muulla!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Näytä kaikki ulkoasuasetukset"
- },
"lock": {
"message": "Lukitse",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Yksilöllistä tunnistetta ei löytynyt."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ käyttää kertakirjautumista (SSO) itse ylläpidetyllä avainpalvelimella. Organisaation jäsenet eivät enää tarvitse pääsalasanaa kirjautumiseen.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Poistu organisaatiosta"
@@ -3565,16 +3584,16 @@
"message": "Laitteeseen luotettu"
},
"trustOrganization": {
- "message": "Trust organization"
+ "message": "Luota organisaatioon"
},
"trust": {
- "message": "Trust"
+ "message": "Luota"
},
"doNotTrust": {
- "message": "Do not trust"
+ "message": "Älä luota"
},
"organizationNotTrusted": {
- "message": "Organization is not trusted"
+ "message": "Organisaatio ei ole luotettu"
},
"emergencyAccessTrustWarning": {
"message": "For the security of your account, only confirm if you have granted emergency access to this user and their fingerprint matches what is displayed in their account"
@@ -3586,7 +3605,7 @@
"message": "This organization has an Enterprise policy that will enroll you in account recovery. Enrollment will allow organization administrators to change your password. Only proceed if you recognize this organization and the fingerprint phrase displayed below matches the organization's fingerprint."
},
"trustUser": {
- "message": "Trust user"
+ "message": "Luota käyttäjään"
},
"sendsNoItemsTitle": {
"message": "Aktiivisia Sendejä ei ole",
@@ -3596,6 +3615,14 @@
"message": "Sendillä voit jakaa salattuja tietoja turvallisesti kenelle tahansa.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Syöte vaaditaan."
},
@@ -4513,19 +4540,19 @@
}
},
"downloadBitwarden": {
- "message": "Download Bitwarden"
+ "message": "Lataa Bitwarden"
},
"downloadBitwardenOnAllDevices": {
- "message": "Download Bitwarden on all devices"
+ "message": "Lataa Bitwarden kaikille laitteille"
},
"getTheMobileApp": {
- "message": "Get the mobile app"
+ "message": "Hanki mobiilisovellus"
},
"getTheMobileAppDesc": {
"message": "Access your passwords on the go with the Bitwarden mobile app."
},
"getTheDesktopApp": {
- "message": "Get the desktop app"
+ "message": "Hanki työpöytäsovellus"
},
"getTheDesktopAppDesc": {
"message": "Access your vault without a browser, then set up unlock with biometrics to expedite unlocking in both the desktop app and browser extension."
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Hanki se Google Playstä"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Lataa App Storesta"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Haluatko varmasti poistaa liitteen pysyvästi?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrinen avaus ei ole tällä hetkellä käytettävissä tuntemattomasta syystä."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Todennetaan"
},
@@ -5211,7 +5253,7 @@
"message": "Vaihda vaarantunut salasana"
},
"settingsVaultOptions": {
- "message": "Vault options"
+ "message": "Holvin asetukset"
},
"emptyVaultDescription": {
"message": "The vault protects more than just your passwords. Store secure logins, IDs, cards and notes securely here."
@@ -5243,23 +5285,32 @@
"secureDevicesBody": {
"message": "Tallenna rajattomasti salasanoja, rajattomalla määrällä laitteita, Bitwardenin mobiili-, selain- ja työpöytäsovelluksilla."
},
+ "nudgeBadgeAria": {
+ "message": "1 ilmoitus"
+ },
"emptyVaultNudgeTitle": {
- "message": "Import existing passwords"
+ "message": "Tuo olemassa olevat salasanat"
},
"emptyVaultNudgeBody": {
"message": "Use the importer to quickly transfer logins to Bitwarden without manually adding them."
},
"emptyVaultNudgeButton": {
- "message": "Import now"
+ "message": "Tuo nyt"
},
"hasItemsVaultNudgeTitle": {
- "message": "Welcome to your vault!"
+ "message": "Tervetuloa holviisi!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
- "message": "Save time with autofill"
+ "message": "Säästä aikaa automaattitäytöllä"
},
"newLoginNudgeBodyOne": {
"message": "Include a",
@@ -5267,7 +5318,7 @@
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "Verkkosivusto",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/fil/messages.json b/apps/browser/src/_locales/fil/messages.json
index 5f84ec1905a..e8e45249773 100644
--- a/apps/browser/src/_locales/fil/messages.json
+++ b/apps/browser/src/_locales/fil/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "I-lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Walang natagpuang natatanging nag-identipikar."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ ay gumagamit ng SSO na may sariling-hosted na key server. Walang kinakailangang master password para mag-log in para sa mga miyembro ng organisasyon na ito.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Umalis sa organisasyon"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/fr/messages.json b/apps/browser/src/_locales/fr/messages.json
index cae2125eb4e..736fd21349e 100644
--- a/apps/browser/src/_locales/fr/messages.json
+++ b/apps/browser/src/_locales/fr/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Enregistrer en tant que nouvel identifiant",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Mettre à jour l'identifiant",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Suggestions de saisie automatique"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Afficher les suggestions de saisie automatique dans les champs d'un formulaire"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Expiration de l'action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nouvelles options de personnalisation"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Personnalisez votre expérience utilisateur du coffre avec des actions de copie rapide, un mode compact et bien plus encore !"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Afficher tous les paramètres d'apparence"
- },
"lock": {
"message": "Verrouiller",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Aucun identifiant unique trouvé."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ utilise le SSO avec un serveur de clés auto-hébergé. Un mot de passe principal n'est plus nécessaire aux membres de cette organisation pour se connecter.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Quitter l'organisation"
@@ -3596,6 +3615,14 @@
"message": "Utilisez Send pour partager en toute sécurité des informations chiffrées avec tout le monde.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Saisie requise."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Êtes-vous sûr de vouloir supprimer définitivement cette pièce jointe ?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Le déverrouillage par biométrie n'est pas disponible actuellement pour une raison inconnue."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authentification"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/gl/messages.json b/apps/browser/src/_locales/gl/messages.json
index 8adbe560b22..e10287f3e7b 100644
--- a/apps/browser/src/_locales/gl/messages.json
+++ b/apps/browser/src/_locales/gl/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Suxestións de autoenchido"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Amosar suxestións de autoenchido en formularios"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Acción do temporizador"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Bloquear",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Non se atopou ningún identificador único."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ emprega SSO con un servidor de claves propio. Os membros da organización xa non precisan dun contrasinal mestre para iniciar sesión.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Deixar a organización"
@@ -3596,6 +3615,14 @@
"message": "Usar send para compartir información cifrada con quen queiras.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Requírese algunha entrada."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Estás seguro de que queres eliminar permanentemente este anexo?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "O desbloqueo biométrico non está dispoñible por algunha razón non prevista."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autenticando"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/he/messages.json b/apps/browser/src/_locales/he/messages.json
index 759429f285a..1b264d9a70a 100644
--- a/apps/browser/src/_locales/he/messages.json
+++ b/apps/browser/src/_locales/he/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "שמור ככניסה חדשה",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "עדכן כניסה",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "הצעות למילוי אוטומטי"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "הצג הצעות למילוי אוטומטי על שדות טופס"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "פעולת פסק זמן"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "אפשרויות התאמה אישית חדשות"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "התאם אישית את חווית הכספת שלך עם פעולות העתקה מהירות, מצב קומפקטי, ועוד!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "הצג את כל הגדרות המראה"
- },
"lock": {
"message": "נעילה",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "לא נמצא מזהה ייחודי."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ משתמש/ת ב־SSO עם שרת מפתחות באירוח עצמי. סיסמה ראשית כבר לא נדרשת כדי להיכנס עבור חברים של ארגון זה.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "עזוב ארגון"
@@ -3596,6 +3615,14 @@
"message": "השתמש בסֵנְד כדי לשתף באופן מאובטח מידע מוצפן עם כל אחד.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "נדרש קלט."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "האם אתה בטוח שברצונך למחוק לצמיתות צרופה זו?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "ביטול נעילה ביומטרי אינו זמין כעת מסיבה לא ידועה."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "מאמת"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/hi/messages.json b/apps/browser/src/_locales/hi/messages.json
index f6ce3f6536a..61c0fbe9963 100644
--- a/apps/browser/src/_locales/hi/messages.json
+++ b/apps/browser/src/_locales/hi/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "टाइमआउट कार्रवाई"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "लॉक",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "स्वतः भरण से समय बचाएँ"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/hr/messages.json b/apps/browser/src/_locales/hr/messages.json
index 205fa70dc32..ad32937c740 100644
--- a/apps/browser/src/_locales/hr/messages.json
+++ b/apps/browser/src/_locales/hr/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Spremi novu prijavu",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Ažuriraj prijavu",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Prijedlozi auto-ispune"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Prikaži prijedloge auto-ispune na poljima obrazaca"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Radnja nakon isteka "
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nove mogućnosti prilagodbe"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Prilagodi svoje iskustvo trezora brzim kopiranjem, kompaktnim načinom rada i više!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Pogledaj sve postavke izgleda"
- },
"lock": {
"message": "Zaključaj",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nije nađen jedinstveni identifikator."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ koristi jedinstvenu prijavu SSO s vlastitim poslužiteljem. Članovima organizacije glavna lozinka više nije potrebna.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Napusti organizaciju"
@@ -3596,6 +3615,14 @@
"message": "Koristi Send za sigurno slanje šifriranih podataka bilo kome.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Potreban je unos."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Sigurno želiš trajno izbrisati ovaj privitak?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrijsko otključavanje trenutno nije dostupno iz nepoznatog razloga."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autentifikacija"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/hu/messages.json b/apps/browser/src/_locales/hu/messages.json
index 89ca99c51f7..50607787cd7 100644
--- a/apps/browser/src/_locales/hu/messages.json
+++ b/apps/browser/src/_locales/hu/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Új elem, megnyitás új ablakban",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Szerkesztés mentés előtt",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ mentésre került a Bitwardenben.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "mentésre került a Bitwardenbe.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ frissítésre került a Bitwardenben.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "frissítésre került a Bitwardenben.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "$ITEMTYPE$, $ITEMNAME$ választás",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Mentés új bejelentkezésként",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Bejelentkezés frissítése",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Feloldás a bejelentkezés mentéséhez",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Bejelentkezés mentése",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Az automatikus kitöltési javaslatok könnyű megtalálása"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Kapcsoljuk ki a böngésző automatikus kitöltési beállításait, így azok nem ütköznek a Bitwardennel."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "$BROWSER$ automatikus kitöltés kikapcsolása",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Automat kitöltés bekapcsolása"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Időkifutási művelet"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Új testreszabási opciók"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Szabjuk testre tárhely élményét gyors másolási műveletekkel, kompakt móddal és még sok mással!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Az összes megjelenési beállítás megtekintése"
- },
"lock": {
"message": "Lezárás",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nincs egyedi azonosító."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ jelenleg saját tárolású aláíráskulcsú SSO szervert használ. A mesterjelszó a továbbiakban nem szükséges a szervezeti tagsági bejelentkezéshez.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A következő szervezet tagjai számára már nincs szükség mesterjelszóra. Erősítsük meg az alábbi tartományt a szervezet adminisztrátorával."
+ },
+ "organizationName": {
+ "message": "Szervezet neve"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector tartomány"
},
"leaveOrganization": {
"message": "Szervezet elhagyása"
@@ -3596,6 +3615,14 @@
"message": "A Send használatával biztonságosan megoszthatjuk a titkosított információkat bárkivel.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Érzékeny információt küldése biztonságosan",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Fájlok vagy adatok megosztása biztonságosan bárkivel, bármilyen platformon. Az információk titkosítva maradnak a végpontokon, korlátozva a kitettséget.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Az adatbevitel kötelező."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Letöltés most a bitwarden.com webhelyről"
},
+ "getItOnGooglePlay": {
+ "message": "Beszerzés a Google Playen"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Letöltés az App Store-ból"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Biztosan véglegesen törlésre kerüljön ez a melléklet?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "A biometrikus feloldás jelenleg ismeretlen okból nem érhető el."
},
+ "unlockVault": {
+ "message": "A széf feloldása másodpercek alatt"
+ },
+ "unlockVaultDesc": {
+ "message": "Testreszabhatjuk a feloldási és időtúllépési beállításokat a széf gyorsabb elérése érdekében."
+ },
+ "unlockPinSet": {
+ "message": "PIN beállítás feloldása"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Mentsünk el a korlátlan jelszót korlátlan számú eszközön a Bitwarden mobil, böngésző és asztali alkalmazásokkal."
},
+ "nudgeBadgeAria": {
+ "message": "1 értesítés"
+ },
"emptyVaultNudgeTitle": {
"message": "Létező jelszavak importálása"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Üdvözlet a széfben!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Az aktuális oldal elemeinek automatikus kitöltése\nKedvenc elemek a könnyű hozzáférés érdekében\nValami más keresése a széfben"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Az aktuális oldal elemeinek automatikus kitöltése"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Kedvenc elemek a könnyű hozzáférés érdekében"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Valami más keresése a széfben"
},
"newLoginNudgeTitle": {
"message": "Idő megtakarítás automatikus kitöltéssel"
@@ -5306,5 +5357,25 @@
"message": "További információ az SSH ügynökről",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Jelszavak gyors létrehozása"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Könnyen létrehozhatunk erős és egyedi jelszavakat a gombra kattintva.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "a bejelentkezések biztonságának megőrzéséhez.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Könnyedén hozhatunk létre erős és egyedi jelszavakat a Jelszó generálása gombra kattintva, amely segít megőrizni a bejelentkezések biztonságát.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Nincs jogosultság az oldal megtekintéséhez. Próbáljunk meg másik fiókkal bejelentkezni."
}
}
diff --git a/apps/browser/src/_locales/id/messages.json b/apps/browser/src/_locales/id/messages.json
index 42363532e5e..a12137d696a 100644
--- a/apps/browser/src/_locales/id/messages.json
+++ b/apps/browser/src/_locales/id/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Sunting sebelum menyimpan",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ disimpan ke Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ diperbarui di Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Simpan sebagai log masuk baru",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Perbarui log masuk",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Simpan log masuk",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Saran isi otomatis"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Tampilkan saran isi otomatis pada kolom formulir"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Batas waktu tindakan"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Opsi penyesuaian baru"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Sesuaikan pengalaman brankas Anda dengan aksi salin cepat, mode kompak, dan lainnya!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Lihat semua pengaturan Penampilan"
- },
"lock": {
"message": "Kunci",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Tidak ada pengidentifikasi unik yang ditemukan."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ menggunakan SSO dengan server kunci yang dihosting sendiri. Kata sandi utama tidak lagi diperlukan untuk masuk untuk anggota organisasi ini.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Tinggalkan Organisasi"
@@ -3596,6 +3615,14 @@
"message": "Gunakan Send untuk membagikan informasi terenkripsi secara aman dengan siapapun.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Masukan ini harus diisi."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Unduh dari bitwarden.com sekarang"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Apakah Anda yakin ingin menghapus lampiran ini selamanya?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Pelajari lebih lanjut tentang agen SSH",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/it/messages.json b/apps/browser/src/_locales/it/messages.json
index 272149b8e99..9a5d2c65bb6 100644
--- a/apps/browser/src/_locales/it/messages.json
+++ b/apps/browser/src/_locales/it/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Salva come nuovo accesso",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Aggiorna accesso",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Suggerimenti per il riempimento automatico"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Mostra suggerimenti di riempimento automatico nei campi del modulo"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Azione al timeout"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nuove opzioni di personalizzazione"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Personalizza l'esperienza della tua cassaforte con azioni di copia rapida, modalità compatta e altro ancora!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Vedi tutte le impostazioni di aspetto"
- },
"lock": {
"message": "Blocca",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nessun identificatore univoco trovato."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ sta usando SSO con un server self-hosted. Una password principale non è più necessaria per accedere per i membri di questa organizzazione.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Lascia organizzazione"
@@ -3596,6 +3615,14 @@
"message": "Utilizza un Send per condividere in modo sicuro le informazioni con qualsiasi utente.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input obbligatorio."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Sei sicuro di voler eliminare definitivamente questo allegato?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Lo sblocco biometrico non è attualmente disponibile per un motivo sconosciuto."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autenticazione"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ja/messages.json b/apps/browser/src/_locales/ja/messages.json
index e3340789813..5c235bdea43 100644
--- a/apps/browser/src/_locales/ja/messages.json
+++ b/apps/browser/src/_locales/ja/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "新規のログイン情報として保存",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "ログイン情報を更新",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "自動入力の候補"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "フォームフィールドに自動入力の候補を表示する"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "タイムアウト時のアクション"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "新しいカスタマイズオプション"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "クイックコピーやコンパクトモードなどで保管庫をカスタマイズできます!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "すべての外観設定を表示"
- },
"lock": {
"message": "ロック",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "一意の識別子が見つかりませんでした。"
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ は自己ホストの鍵サーバで SSO を使用しています。この組織のメンバーのログインにマスターパスワードは必要ありません。",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "組織から脱退する"
@@ -3596,6 +3615,14 @@
"message": "Send を使用すると暗号化された情報を誰とでも安全に共有できます。",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "入力が必要です。"
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "この添付ファイルを完全に削除してもよろしいですか?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "生体認証によるロック解除は、不明な理由により現在利用できません。"
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "認証中"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Bitwarden のモバイル、ブラウザ、デスクトップアプリでは、保存できるパスワード数やデバイス数に制限はありません。"
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ka/messages.json b/apps/browser/src/_locales/ka/messages.json
index 19cde10e9b8..7f36bb3568f 100644
--- a/apps/browser/src/_locales/ka/messages.json
+++ b/apps/browser/src/_locales/ka/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "ჩაკეტვა",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "ავთენტიკაცია"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/km/messages.json b/apps/browser/src/_locales/km/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/km/messages.json
+++ b/apps/browser/src/_locales/km/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/kn/messages.json b/apps/browser/src/_locales/kn/messages.json
index ebf5fb14653..ac36d911e89 100644
--- a/apps/browser/src/_locales/kn/messages.json
+++ b/apps/browser/src/_locales/kn/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "ಲಾಕ್",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ko/messages.json b/apps/browser/src/_locales/ko/messages.json
index 37e08f7bd56..5a496cde98a 100644
--- a/apps/browser/src/_locales/ko/messages.json
+++ b/apps/browser/src/_locales/ko/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "자동 완성 제안"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "양식 필드에 자동 완성 제안 표시"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "시간초과 시 행동"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "잠금",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "고유 식별자를 찾을 수 없습니다."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ 조직은 자체 호스팅 키 서버로 SSO를 사용하고 있습니다 이 조직의 멤버들은 로그인할 때에 마스터 비밀번호를 필요로 하지 않습니다.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "조직 나가기"
@@ -3596,6 +3615,14 @@
"message": "Send를 사용하여 암호화된 정보를 어느 사람과도 안전하게 공유합니다.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "입력이 필요합니다."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "정말로 이 첨부파일을 영구적으로 삭제하시겠습니까?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "인증 중"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/lt/messages.json b/apps/browser/src/_locales/lt/messages.json
index 8da6c4c7c28..f790c226437 100644
--- a/apps/browser/src/_locales/lt/messages.json
+++ b/apps/browser/src/_locales/lt/messages.json
@@ -3,7 +3,7 @@
"message": "Bitwarden"
},
"appLogoLabel": {
- "message": "Bitwarden logo"
+ "message": "Bitwarden logotipas"
},
"extName": {
"message": "„Bitwarden“ slaptažodžių tvarkyklė",
@@ -23,16 +23,16 @@
"message": "Sukurti paskyrą"
},
"newToBitwarden": {
- "message": "New to Bitwarden?"
+ "message": "Pirmą kartą Bitwarden?"
},
"logInWithPasskey": {
- "message": "Log in with passkey"
+ "message": "Prisijungti naudojant prieigos raktą"
},
"useSingleSignOn": {
"message": "Use single sign-on"
},
"welcomeBack": {
- "message": "Welcome back"
+ "message": "Sveiki sugrįžę"
},
"setAStrongPassword": {
"message": "Nustatyti stiprų slaptažodį"
@@ -84,7 +84,7 @@
"message": "Pagrindinio slaptažodžio užuomina (neprivaloma)"
},
"passwordStrengthScore": {
- "message": "Password strength score $SCORE$",
+ "message": "Slaptažodžio stiprumas $SCORE$",
"placeholders": {
"score": {
"content": "$1",
@@ -93,10 +93,10 @@
}
},
"joinOrganization": {
- "message": "Join organization"
+ "message": "Prisijungti prie organizacijos"
},
"joinOrganizationName": {
- "message": "Join $ORGANIZATIONNAME$",
+ "message": "Prisijungti prie $ORGANIZATIONNAME$",
"placeholders": {
"organizationName": {
"content": "$1",
@@ -105,7 +105,7 @@
}
},
"finishJoiningThisOrganizationBySettingAMasterPassword": {
- "message": "Finish joining this organization by setting a master password."
+ "message": "Baigėte prisijungimą prie organizacijos nustatant pagrindinį slaptažodį."
},
"tab": {
"message": "Skirtukas"
@@ -132,7 +132,7 @@
"message": "Kopijuoti slaptažodį"
},
"copyPassphrase": {
- "message": "Copy passphrase"
+ "message": "Kopijuoti slaptažodžio frazę"
},
"copyNote": {
"message": "Kopijuoti pastabą"
@@ -150,31 +150,31 @@
"message": "Kopijuoti saugos kodą"
},
"copyName": {
- "message": "Copy name"
+ "message": "Kopijuoti vardą"
},
"copyCompany": {
- "message": "Copy company"
+ "message": "Kopijuoti įmonę"
},
"copySSN": {
- "message": "Copy Social Security number"
+ "message": "Kopijuoti socialinės apsaugos numerį"
},
"copyPassportNumber": {
- "message": "Copy passport number"
+ "message": "Kopijuoti paso numerį"
},
"copyLicenseNumber": {
- "message": "Copy license number"
+ "message": "Kopijuoti licenzijos numerį"
},
"copyPrivateKey": {
- "message": "Copy private key"
+ "message": "Kopijuoti privatų raktą"
},
"copyPublicKey": {
- "message": "Copy public key"
+ "message": "Kopijuoti viešą raktą"
},
"copyFingerprint": {
- "message": "Copy fingerprint"
+ "message": "Kopijuoti piršto antspaudą"
},
"copyCustomField": {
- "message": "Copy $FIELD$",
+ "message": "Kopijuoti $FIELD$",
"placeholders": {
"field": {
"content": "$1",
@@ -183,13 +183,13 @@
}
},
"copyWebsite": {
- "message": "Copy website"
+ "message": "Kopijuoti svetainę"
},
"copyNotes": {
- "message": "Copy notes"
+ "message": "Kopijuoti pastabas"
},
"copy": {
- "message": "Copy",
+ "message": "Kopijuoti",
"description": "Copy to clipboard"
},
"fill": {
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Užrakinti",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Unikalus identifikatorius nerastas."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ naudoja SSO su savarankiškai sukurtu raktų serveriu. Pagrindinis slaptažodis nebėra reikalingas norint šios organizacijos nariams prisijungti.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Palikti organizaciją"
@@ -3596,6 +3615,14 @@
"message": "Naudokite „Send“, kad saugiai bendrintumėte užšifruotą informaciją su bet kuriuo asmeniu.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Ar tikrai norite negrįžtamai ištrinti šį priedą?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/lv/messages.json b/apps/browser/src/_locales/lv/messages.json
index 280c10ad2c4..f47b5f7645e 100644
--- a/apps/browser/src/_locales/lv/messages.json
+++ b/apps/browser/src/_locales/lv/messages.json
@@ -273,7 +273,7 @@
"message": "Turpināt"
},
"sendVerificationCode": {
- "message": "Sūtīt apstiprinājuma kodu uz e-pastu"
+ "message": "Nosūtīt apliecinājuma kodu e-pastā"
},
"sendCode": {
"message": "Nosūtīt kodu"
@@ -282,7 +282,7 @@
"message": "Kods nosūtīts"
},
"verificationCode": {
- "message": "Apstiprināšanas kods"
+ "message": "Apliecinājuma kods"
},
"confirmIdentity": {
"message": "Jāapliecina sava identitāte, lai turpinātu."
@@ -811,13 +811,13 @@
"message": "Mēs nosūtījām galvenās paroles norādi e-pastā."
},
"verificationCodeRequired": {
- "message": "Apstiprinājuma kods ir nepieciešams."
+ "message": "Apliecinājuma kods ir nepieciešams."
},
"webauthnCancelOrTimeout": {
"message": "Autentifikācija tika atcelta vai tā aizņēma pārāk daudz laika. Lūgums mēģināt vēlreiz."
},
"invalidVerificationCode": {
- "message": "Nederīgs apstiprinājuma kods"
+ "message": "Nederīgs apliecinājuma kods"
},
"valueCopied": {
"message": "$VALUE$ ir starpliktuvē",
@@ -845,10 +845,10 @@
"message": "Padarīt divpakāpju apliecināšanu plūdenu"
},
"totpHelper": {
- "message": "Bitwarden var glabāt un aizpildīt divpakāpju apliecināšanas kodus. Atslēga jāievieto starpliktuvē un jāielīmē šajā laukā."
+ "message": "Bitwarden var glabāt un aizpildīt divpakāpju apliecinājuma kodus. Atslēga jāievieto starpliktuvē un jāielīmē šajā laukā."
},
"totpHelperWithCapture": {
- "message": "Bitwarden var glabāt un aizpildīt divpakāpju apliecināšanas kodus. Jāizvēlas kameras ikona, lai veiktu tīmekļvietnes autentificētāja kvadrātkoda ekrānuzņēmumu, vai jāievieto starpliktuvē atslēga un jāielīmē šajā laukā."
+ "message": "Bitwarden var glabāt un aizpildīt divpakāpju apliecinājuma kodus. Jāizvēlas kameras ikona, lai veiktu tīmekļvietnes autentificētāja kvadrātkoda ekrānuzņēmumu, vai jāievieto starpliktuvē atslēga un jāielīmē šajā laukā."
},
"learnMoreAboutAuthenticators": {
"message": "Uzzināt vairāk par autentificētājiem"
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Jauns vienums, atvērsies jaunā logā",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Labot pirms saglabāšanas",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saglabāts Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saglabāts Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ atjaunināts Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "atjaunināts Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Atlasīt $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Saglabāt kā jaunu pieteikšanās vienumu",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Atjaunināt pieteikšanās vienumu",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Jāatslēdz, lai saglabātu šo pieteikšanās vienumu",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Saglabāt pieteikšanās vienumu",
"description": "Prompt asking the user if they want to save their login details."
@@ -1314,10 +1324,10 @@
"message": "Autentificētāja atslēga (TOTP)"
},
"verificationCodeTotp": {
- "message": "Apstiprinājuma kods (TOTP)"
+ "message": "Apliecinājuma kods (TOTP)"
},
"copyVerificationCode": {
- "message": "Ievietot apstiprinājuma kodu starpliktuvē"
+ "message": "Ievietot apliecinājuma kodu starpliktuvē"
},
"attachments": {
"message": "Pielikumi"
@@ -1389,7 +1399,7 @@
"message": "Paroļu higiēnas, konta veselības un datu noplūžu pārskati, lai uzturētu glabātavu drošu."
},
"ppremiumSignUpTotp": {
- "message": "TOTP apstiprinājuma koda (2FA) veidotājs glabātavas pieteikšanās vienumiem."
+ "message": "TOTP apliecinājuma koda (2FA) veidotājs glabātavas pieteikšanās vienumiem."
},
"ppremiumSignUpSupport": {
"message": "Priekšrocīgs lietotāju atbalsts."
@@ -1437,7 +1447,7 @@
"message": "Automātiski ievietot TOTP starpliktuvē"
},
"disableAutoTotpCopyDesc": {
- "message": "Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apstiprinājuma kods tiks automātiski ievietots starpliktuvē, kad vien tiks automātiski aizpildīta pieteikšanās veidne."
+ "message": "Ja pieteikšanās vienumam ir pievienota autentificētāja atslēga, TOTP apliecinājuma kods tiks automātiski ievietots starpliktuvē, kad vien tiks automātiski aizpildīta pieteikšanās veidne."
},
"enableAutoBiometricsPrompt": {
"message": "Palaižot vaicāt biometriju"
@@ -1455,7 +1465,7 @@
"message": "Iestājās autentificēšanās sesijas noildze. Lūgums sākt pieteikšanos no jauna."
},
"verificationCodeEmailSent": {
- "message": "E-pasts apstiprināšanai nosūtīts uz $EMAIL$.",
+ "message": "Apliecinājuma e-pasta ziņojums nosūtīts uz $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Automātiskās aizpildes ieteikumi"
},
+ "autofillSpotlightTitle": {
+ "message": "Viegla automātiskās aizpildes ieteikumu atrašana"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Jāizslēdz sava pārlūka automātiskās aizpildes iestatījumi, lai tie nebūtu pretrunā ar Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Izslēgt $BROWSER$ automātisko aizpildi",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Izslēgt automātisko aizpildi"
+ },
"showInlineMenuLabel": {
"message": "Rādīt automātiskās aizpildes ieteikumuis veidlapu laukos"
},
@@ -1718,7 +1746,7 @@
"description": "This describes a value that is 'linked' (tied) to another value."
},
"popup2faCloseMessage": {
- "message": "Klikšķināšana ārpus uznirstošā loga, lai e-pastā apskatītu apstiprinājuma kodu, to aizvērs. Vai atvērt to atsevišķā logā, lai tas netiktu aizvērts?"
+ "message": "Klikšķināšana ārpus uznirstošā loga, lai e-pastā apskatītu apliecinājuma kodu, to aizvērs. Vai atvērt to atsevišķā logā, lai tas netiktu aizvērts?"
},
"popupU2fCloseMessage": {
"message": "Šis pārlūks nevar apstrādāt U2F pieprasījumus šajā uznirstošajā logā. Vai atvērt to atsevišķā logā, lai varētu pieteikties, izmantojot U2F?"
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Noildzes darbība"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Jaunas pielāgošanas iespējas"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Savu glabātavas pieredzi var pielāgot ar ātrām kopēšanas darbībām, ciešo izkārtojumu un vēl."
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Apskatīt visus izskata iestatījumus"
- },
"lock": {
"message": "Slēgt",
"description": "Verb form: to make secure or inaccessible by"
@@ -2849,13 +2868,13 @@
"message": "Šī darbība ir aizsargāta. Lai turpinātu, ir jāievada galvenā parole, lai apliecinātu savu identitāti."
},
"emailVerificationRequired": {
- "message": "Nepieciešama e-pasta adreses apstiprināšana"
+ "message": "Nepieciešama e-pasta adreses apliecināšana"
},
"emailVerifiedV2": {
"message": "E-pasta adrese ir apliecināta"
},
"emailVerificationRequiredDesc": {
- "message": "Ir nepieciešams apstiprināt e-pasta adresi, lai būtu iespējams izmantot šo iespēju. To var izdarīt tīmekļa glabātavā."
+ "message": "Ir nepieciešams apliecināt savu e-pasta adresi, lai būtu iespējams izmantot šo iespēju. To var izdarīt tīmekļa glabātavā."
},
"updatedMasterPassword": {
"message": "Galvenā parole atjaunināta"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nav atrasts neviens neatkārtojams identifikators"
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ izmanto vienoto pieteikšanos ar pašmitinātu atslēgu serveri. Tās dalībniekiem vairs nav nepieciešama galvenā parole, lai pieteiktos.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Galvenā parole vairs nav nepieciešama turpmāk minētās apvienības dalībniekiem. Lūgums saskaņot zemāk esošo domēnu ar savas apvienības pārvaldītāju."
+ },
+ "organizationName": {
+ "message": "Apvienības nosaukums"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domēns"
},
"leaveOrganization": {
"message": "Pamest apvienību"
@@ -3596,6 +3615,14 @@
"message": "Send ir izmantojams, lai ar ikvienu droši kopīgotu šifrētu informāciju.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Drošā veidā nosūti jūtīgu informāciju",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Drošā veidā kopīgo datnes un datus ar ikvienu jebkurā platformā! Tava informācija paliks pilnībā šifrēta, vienlaikus ierobežojot riskantumu.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Jāievada vērtība."
},
@@ -3762,7 +3789,7 @@
"description": "Screen reader text (aria-label) for unlock account button in overlay"
},
"totpCodeAria": {
- "message": "Laikā balstīts vienreizējas izmantošanas paroles apliecināšanas kods",
+ "message": "Laikā balstīts vienreizējas izmantošanas paroles apliecinājuma kods",
"description": "Aria label for the totp code displayed in the inline menu for autofill"
},
"totpSecondsSpanAria": {
@@ -3855,7 +3882,7 @@
"message": "Jāmēģina vēlreiz"
},
"verificationRequiredForActionSetPinToContinue": {
- "message": "Šai darbībai ir nepieciešama apliecināšana. Jāiestata PIN, lai turpinātu."
+ "message": "Šai darbībai ir nepieciešama apliecinājums. Jāiestata PIN, lai turpinātu."
},
"setPin": {
"message": "Iestatīt PIN"
@@ -4001,7 +4028,7 @@
"message": "Piekļuves atslēga netiks ievietota klonētajā vienumā. Vai turpināt šī vienuma klonēšanu?"
},
"passkeyFeatureIsNotImplementedForAccountsWithoutMasterPassword": {
- "message": "Vietne, kurā tika uzsākta darbība, pieprasa pārbaudi. Šī iespēja vēl nav īstenota kontiem, kuriem nav galvenās paroles."
+ "message": "Vietne, kurā tika uzsākta darbība, pieprasa apliecinājumu. Šī iespēja vēl nav īstenota kontiem, kuriem nav galvenās paroles."
},
"logInWithPasskeyQuestion": {
"message": "Pieteikties ar piekļuves atslēgu?"
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Lejupielādē no bitwarden.com tagad"
},
+ "getItOnGooglePlay": {
+ "message": "Iegūt to Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Lejupielādēt no App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Vai tiešām neatgriezeniski izdzēst šo pielikumu?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Atslēgšana ar biometriju pašlaik nav pieejama nezināma iemesla dēļ."
},
+ "unlockVault": {
+ "message": "Atslēdz savu glabātavu dažās sekundēs"
+ },
+ "unlockVaultDesc": {
+ "message": "Tu vari pielāgot savus atslēgšanas un noildzes iestatījumus, lai ātrāk piekļūtu savai glabātavai."
+ },
+ "unlockPinSet": {
+ "message": "Atslēgšanas PIN iestatīts"
+ },
"authenticating": {
"message": "Autentificē"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Neierobežotu paroļu skaitu var saglabāt neierobežotā ierīdžu daudzumā ar Bitwarden viedtālruņa, pārlūka un darbvirsmas lietotni."
},
+ "nudgeBadgeAria": {
+ "message": "1 paziņojums"
+ },
"emptyVaultNudgeTitle": {
"message": "Ievietot esošas paroles"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Laipni lūdzam Tavā glabātavā!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Automātiskās aizpldes vienumu pašreizējai lapai\nIzlases vienumi vieglai piekļuvei\nPārējo var meklēt glabātavā"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Automātiska pašreizējās lapas vienumu aizpildīšana"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Vienumu izlase vieglai piekļuvei"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Meklē savā glabātavā kaut ko citu"
},
"newLoginNudgeTitle": {
"message": "Laika ietaupīšana ar automātisko aizpildi"
@@ -5306,5 +5357,25 @@
"message": "Uzzināt vairāk par SSH aģentu",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Ātra paroļu izveidošana"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Vienkārša spēcīgu un neatkārtojamu paroļu izveidošana ar pogu",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": ", lai palīdzētu uzturērt pieteikšanās vienumus drošus.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Vienkārša spēcīgu un neatkārtojamu paroļu izveidošana ar pogu \"Izveidot paroli\", lai palīdzētu uzturēt pieteikšanās vienumus drošus.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Nav atļaujas apskatīt šo lapu. Jāmēģina pieteikties ar citu kontu."
}
}
diff --git a/apps/browser/src/_locales/ml/messages.json b/apps/browser/src/_locales/ml/messages.json
index be6bb7d6eb1..ab0120a40e2 100644
--- a/apps/browser/src/_locales/ml/messages.json
+++ b/apps/browser/src/_locales/ml/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "പൂട്ടുക",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/mr/messages.json b/apps/browser/src/_locales/mr/messages.json
index 0654f92164a..625bf093ba9 100644
--- a/apps/browser/src/_locales/mr/messages.json
+++ b/apps/browser/src/_locales/mr/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/my/messages.json b/apps/browser/src/_locales/my/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/my/messages.json
+++ b/apps/browser/src/_locales/my/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/nb/messages.json b/apps/browser/src/_locales/nb/messages.json
index 5d6016a8217..a11d5de6e2a 100644
--- a/apps/browser/src/_locales/nb/messages.json
+++ b/apps/browser/src/_locales/nb/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Rediger før du lagrer",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ ble lagret i Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ ble oppdatert i Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Lagre som ny pålogging",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Oppdater pålogging",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Lagre pålogging",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autoutfyllingsforslag"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Vis autoutfyll-forslag i tekstbokser"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Handling ved tidsavbrudd"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nye tilpasningsmuligheter"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Vis alle utseendesinnstillinger"
- },
"lock": {
"message": "Lås",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Ingen unik identifikator ble funnet."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ bruker SSO med en selvdrevet nøkkelserver. Et hovedpassord er ikke lenger nødvendig for å logge inn for medlemmer av denne organisasjonen.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Forlat organisasjonen"
@@ -3596,6 +3615,14 @@
"message": "Bruk Send til å dele kryptert informasjon med noen.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Inndata er påkrevd."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autentiserer"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Importer eksisterende passord"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Velkommen til hvelvet ditt!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Spar tid med auto-utfylling"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ne/messages.json b/apps/browser/src/_locales/ne/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/ne/messages.json
+++ b/apps/browser/src/_locales/ne/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/nl/messages.json b/apps/browser/src/_locales/nl/messages.json
index 1f8debfdde9..67a784459b2 100644
--- a/apps/browser/src/_locales/nl/messages.json
+++ b/apps/browser/src/_locales/nl/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Nieuw Item, opent in nieuw venster",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Bewerken voor opslaan",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ opgeslagen in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "opslaan in Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ bijgewerkt in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "bijgewerkt in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "$ITEMTYPE$, $ITEMNAME$ selecteren",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Opslaan als nieuwe login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Login bijwerken",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Ontgrendel voor het opslaan van deze login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Login opslaan",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Suggesties automatisch invullen"
},
+ "autofillSpotlightTitle": {
+ "message": "Gemakkelijk suggesties voor automatisch invullen vinden"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Schakel de autofill-instellingen van je browser uit, zodat ze niet conflicteren met Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Automatisch invullen van $BROWSER$ uitschakelen",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Automatisch invullen uitschakelen"
+ },
"showInlineMenuLabel": {
"message": "Suggesties voor automatisch invullen op formuliervelden weergeven"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Time-out actie"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nieuwe aanpassingsopties"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Pas je kluis ervaring aan met snelle kopieeracties, compacte modus en meer!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Alle weergave-instellingen bekijken"
- },
"lock": {
"message": "Vergrendelen",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Geen unieke id gevonden."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ gebruikt SSO met een zelf gehoste sleutelserver. Leden van deze organisatie kunnen inloggen zonder hoofdwachtwoord.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Organisatie verlaten"
@@ -3596,6 +3615,14 @@
"message": "Gebruik Send voor het veilig delen van versleutelde informatie met wie dan ook.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Gevoelige informatie veilig versturen",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Deel bestanden en gegevens veilig met iedereen, op elk platform. Je informatie blijft end-to-end versleuteld terwijl en blootstelling beperkt.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Invoer vereist."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Nu van bitwarden.com downloaden"
},
+ "getItOnGooglePlay": {
+ "message": "Download op Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Weet je zeker dat je deze bijlage definitief wilt verwijderen?"
},
@@ -4583,7 +4616,7 @@
"description": "Used within the inline menu to provide an aria description when users are attempting to fill a card cipher."
},
"loginCredentials": {
- "message": "Login referenties"
+ "message": "Inloggegevens"
},
"authenticatorKey": {
"message": "Authenticatiesleutel"
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometrisch ontgrendelen is momenteel niet beschikbaar om een onbekende reden."
},
+ "unlockVault": {
+ "message": "Ontgrendel je kluis in seconden"
+ },
+ "unlockVaultDesc": {
+ "message": "Je kunt de instellingen voor ontgrendelen en time-out aanpassen om sneller toegang te krijgen tot je kluis."
+ },
+ "unlockPinSet": {
+ "message": "PIN-code ontgrendelen instellen"
+ },
"authenticating": {
"message": "Aan het inloggen"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Onbeperkt wachtwoorden opslaan op alle apparaten met Bitwarden-apps voor mobiel, browser en desktop."
},
+ "nudgeBadgeAria": {
+ "message": "1 melding"
+ },
"emptyVaultNudgeTitle": {
"message": "Bestaande wachtwoorden importeren"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welkom in je kluis!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items voor de huidige pagina\nFavoriete items voor eenvoudige toegang\nDoorzoek je kluis naar iets anders"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Automatisch invullen van items voor de huidige pagina"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Items als favoriet markeren voor gemakkelijke toegang"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Je kluis doorzoeken naar iets anders"
},
"newLoginNudgeTitle": {
"message": "Tijd besparen met automatisch aanvullen"
@@ -5306,5 +5357,25 @@
"message": "Meer informatie over SSH-agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Snel wachtwoorden maken"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Maak eenvoudig sterke en unieke wachtwoorden door te klikken op",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "om je te helpen je inloggegevens veilig te houden.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Maak eenvoudig sterke en unieke wachtwoorden door op de knop Wachtwoord genereren te klikken om je logins veilig te houden.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Je hebt geen rechten om deze pagina te bekijken. Probeer in te loggen met een ander account."
}
}
diff --git a/apps/browser/src/_locales/nn/messages.json b/apps/browser/src/_locales/nn/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/nn/messages.json
+++ b/apps/browser/src/_locales/nn/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/or/messages.json b/apps/browser/src/_locales/or/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/or/messages.json
+++ b/apps/browser/src/_locales/or/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/pl/messages.json b/apps/browser/src/_locales/pl/messages.json
index c551282e727..eb391f5e34b 100644
--- a/apps/browser/src/_locales/pl/messages.json
+++ b/apps/browser/src/_locales/pl/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Nowy element, otwiera się w nowym oknie",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edytuj przed zapisaniem",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ został zapisany w Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "zapisano w Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ został zaktualizowany w Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "zaktualizowano w Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Wybierz $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Zapisz jako nowy login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Zaktualizuj dane logowania",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Odblokuj, aby zapisać ten login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Zapisz dane logowania",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Sugestie autouzupełniania"
},
+ "autofillSpotlightTitle": {
+ "message": "Łatwe znajdowanie sugestii autouzupełniania"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Wyłącz ustawienia autouzupełniania swojej przeglądarki, aby nie kolidowały z Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Wyłącz autouzupełnianie $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Wyłącz autouzupełnienie"
+ },
"showInlineMenuLabel": {
"message": "Pokaż sugestie autouzupełniania na polach formularza"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Akcja po przekroczeniu limitu czasu"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nowe opcje dostosowywania"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Dostosuj swój sejf dzięki akcjom szybkiego kopiowania, trybowi kompaktowemu i więcej!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Zobacz wszystkie ustawienia wyglądu"
- },
"lock": {
"message": "Zablokuj",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nie znaleziono unikatowego identyfikatora."
},
- "convertOrganizationEncryptionDesc": {
- "message": "Organizacja $ORGANIZATION$ używa jednokrotnego logowania SSO z własnym serwerem kluczy. Użytkownicy nie muszą logować się za pomocą hasła głównego.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Hasło główne nie jest już wymagane dla członków następującej organizacji. Proszę potwierdzić poniższą domenę u administratora organizacji."
+ },
+ "organizationName": {
+ "message": "Nazwa organizacji"
+ },
+ "keyConnectorDomain": {
+ "message": "Domena Key Connector'a"
},
"leaveOrganization": {
"message": "Opuść organizację"
@@ -3596,6 +3615,14 @@
"message": "Użyj wysyłki, aby bezpiecznie dzielić się zaszyfrowanymi informacjami ze wszystkimi.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Wysyłaj bezpiecznie poufne informacje",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Udostępniaj pliki i dane bezpiecznie każdemu, na każdej platformie. Twoje dane pozostaną zaszyfrowane end-to-end przy jednoczesnym ograniczeniu narażenia.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Dane wejściowe są wymagane."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Pobierz teraz z bitwarden.com"
},
+ "getItOnGooglePlay": {
+ "message": "Pobierz z Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Pobierz z App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Czy na pewno chcesz trwale usunąć ten załącznik?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Odblokowanie biometryczne jest obecnie niedostępne z nieznanego powodu."
},
+ "unlockVault": {
+ "message": "Odblokuj swój sejf w kilka sekund"
+ },
+ "unlockVaultDesc": {
+ "message": "Możesz dostosować ustawienia odblokowania i limitu czasu, aby szybciej uzyskać dostęp do sejfu."
+ },
+ "unlockPinSet": {
+ "message": "Ustaw kod PIN odblokowujący"
+ },
"authenticating": {
"message": "Uwierzytelnianie"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Zapisuj nieograniczoną liczbę haseł na nieograniczonej liczbie urządzeń dzięki aplikacjom Bitwarden na urządzenia mobilne, przeglądarki i komputery stacjonarne."
},
+ "nudgeBadgeAria": {
+ "message": "1 powiadomienie"
+ },
"emptyVaultNudgeTitle": {
"message": "Importuj istniejące hasła"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Witaj w Twoim Sejfie!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autouzupełnianie elementów dla bieżącej strony\nUlubione elementy dla łatwego dostępu\nPrzeszukaj swój sejf w poszukiwaniu czegoś innego"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autouzupełnianie elementów dla bieżącej strony"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Ulubione elementy dla szybkiego dostępu"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Przeszukaj swój sejf w poszukiwaniu czegoś innego"
},
"newLoginNudgeTitle": {
"message": "Oszczędzaj czas dzięki autouzupełnianiu"
@@ -5306,5 +5357,25 @@
"message": "Dowiedz się więcej o agencie SSH",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Szybko twórz hasła"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Łatwo twórz silne i unikalne hasła, klikając na",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": ", aby pomóc Ci zachować bezpieczeństwo Twoich danych logowania.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Łatwo twórz silne i unikalne hasła, klikając na Wygeneruj Hasło, aby pomóc Ci zachować bezpieczeństwo Twoich danych logowania.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Nie masz uprawnień do przeglądania tej strony. Spróbuj zalogować się na inne konto."
}
}
diff --git a/apps/browser/src/_locales/pt_BR/messages.json b/apps/browser/src/_locales/pt_BR/messages.json
index 65ef99cd95e..c0b83248edf 100644
--- a/apps/browser/src/_locales/pt_BR/messages.json
+++ b/apps/browser/src/_locales/pt_BR/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Salvar como nova sessão",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Atualizar sessão",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Sugestões de preenchimento automático"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Mostrar sugestões de preenchimento automático nos campos de formulários"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Ação do tempo"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Novas opções de personalização"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Personalize a experiência do seu cofre com ações de cópia rápida, modo compacto e muito mais!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Ver todas as configurações de aparência"
- },
"lock": {
"message": "Bloquear",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nenhum identificador exclusivo encontrado."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ está usando SSO com um servidor de chaves auto-hospedado. Não é mais necessária uma senha mestra para os membros desta organização entrarem.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Sair da Organização"
@@ -3596,6 +3615,14 @@
"message": "Use o Send para compartilhar informação criptografa com qualquer um.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Entrada necessária."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Tem certeza de que deseja excluir este anexo permanentemente?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "O desbloqueio por biometria está indisponível por razões desconhecidas."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Autenticando"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Guarde quantas senhas quiser e acesse de qualquer lugar com o Bitwarden. No seu celular, navegador e computador."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Preencha automaticamente items para a página atual\nFavorite itens para acesso rápido\nPesquise seu cofre por outras coisas"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Seja mais rápido com o preenchimento automático"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/pt_PT/messages.json b/apps/browser/src/_locales/pt_PT/messages.json
index 4b587672633..a144f5767d4 100644
--- a/apps/browser/src/_locales/pt_PT/messages.json
+++ b/apps/browser/src/_locales/pt_PT/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Novo item, abre numa nova janela",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Editar antes de guardar",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ guardado no Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "guardado no Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ atualizado no Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "atualizado no Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Selecionar $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Guardar como nova credencial",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Atualizar credencial",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Desbloqueie para guardar esta credencial",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Guardar credencial",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Sugestões de preenchimento automático"
},
+ "autofillSpotlightTitle": {
+ "message": "Encontre facilmente sugestões de preenchimento automático"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Desative as definições de preenchimento automático do seu navegador, para que não entrem em conflito com o Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Desative o preenchimento automático do $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Desativar o preenchimento automático"
+ },
"showInlineMenuLabel": {
"message": "Mostrar sugestões de preenchimento automático nos campos do formulário"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Ação de tempo limite"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Novas opções de personalização"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Personalize a sua experiência no cofre com ações de cópia rápida, modo compacto e muito mais!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Ver todas as definições de Aspeto"
- },
"lock": {
"message": "Bloquear",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Não foi encontrado um identificador único."
},
- "convertOrganizationEncryptionDesc": {
- "message": "A $ORGANIZATION$ está a utilizar o SSO com um servidor de chaves auto-hospedado. Já não é necessária uma palavra-passe mestra para iniciar sessão para os membros desta organização.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Já não é necessária uma palavra-passe mestra para os membros da seguinte organização. Por favor, confirme o domínio abaixo com o administrador da sua organização."
+ },
+ "organizationName": {
+ "message": "Nome da organização"
+ },
+ "keyConnectorDomain": {
+ "message": "Domínio do Key Connector"
},
"leaveOrganization": {
"message": "Sair da organização"
@@ -3596,6 +3615,14 @@
"message": "Utilize o Send para partilhar de forma segura informações encriptadas com qualquer pessoa.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Envie informações sensíveis com segurança",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Partilhe ficheiros e dados de forma segura com qualquer pessoa, em qualquer plataforma. As suas informações permanecerão encriptadas ponto a ponto, limitando a exposição.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Campo obrigatório."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Descarregue já a partir de bitwarden.com"
},
+ "getItOnGooglePlay": {
+ "message": "Obtenha-a na Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Descarregue na App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Tem a certeza de que pretende eliminar permanentemente este anexo?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "O desbloqueio biométrico está atualmente indisponível por um motivo desconhecido."
},
+ "unlockVault": {
+ "message": "Desbloqueie o seu cofre em segundos"
+ },
+ "unlockVaultDesc": {
+ "message": "Pode personalizar as suas definições de desbloqueio e de tempo limite para aceder mais rapidamente ao seu cofre."
+ },
+ "unlockPinSet": {
+ "message": "Definição do PIN de desbloqueio"
+ },
"authenticating": {
"message": "A autenticar"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Guarde palavras-passe ilimitadas em dispositivos ilimitados com as apps Bitwarden para telemóvel, navegador e computador."
},
+ "nudgeBadgeAria": {
+ "message": "1 notificação"
+ },
"emptyVaultNudgeTitle": {
"message": "Importar palavras-passe existentes"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Bem-vindo ao seu cofre!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Preenchimento automático de itens para a página atual\nItens favoritos para um acesso fácil\nProcurar outra coisa no seu cofre"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Preenchimento automático de itens para a página atual"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Adicione itens aos favoritos para fácil acesso"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Procure outras coisas no seu cofre"
},
"newLoginNudgeTitle": {
"message": "Poupe tempo com o preenchimento automático"
@@ -5306,5 +5357,25 @@
"message": "Saiba mais sobre o agente SSH",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Criar rapidamente palavras-passe"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Crie facilmente palavras-passe fortes e únicas clicando em",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "para o ajudar a manter as suas credenciais seguras.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Crie facilmente palavras-passe fortes e únicas clicando no botão Gerar palavra-passe para o ajudar a manter as suas credenciais seguras.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Não tem permissões para ver esta página. Tente iniciar sessão com uma conta diferente."
}
}
diff --git a/apps/browser/src/_locales/ro/messages.json b/apps/browser/src/_locales/ro/messages.json
index 648c2e06d53..2aabf825399 100644
--- a/apps/browser/src/_locales/ro/messages.json
+++ b/apps/browser/src/_locales/ro/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Blocare",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nu a fost găsit niciun identificator unic."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ folosește SSO cu un server de chei autogăzduit. Membrii acestei organizații nu mai au nevoie de o parolă principală pentru autentificare.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Părăsire organizație"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Este necesară o intrare."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/ru/messages.json b/apps/browser/src/_locales/ru/messages.json
index ebf053af3b6..a23ab4172f8 100644
--- a/apps/browser/src/_locales/ru/messages.json
+++ b/apps/browser/src/_locales/ru/messages.json
@@ -206,7 +206,7 @@
"message": "Автозаполнение карты"
},
"autoFillIdentity": {
- "message": "Автозаполнение личности"
+ "message": "Автозаполнение личной информации"
},
"fillVerificationCode": {
"message": "Заполнить код подтверждения"
@@ -228,7 +228,7 @@
"message": "Нет карт"
},
"noIdentities": {
- "message": "Нет личностей"
+ "message": "Нет личной информации"
},
"addLoginMenu": {
"message": "Добавить логин"
@@ -237,7 +237,7 @@
"message": "Добавить карту"
},
"addIdentityMenu": {
- "message": "Добавить личность"
+ "message": "Добавить личную информацию"
},
"unlockVaultMenu": {
"message": "Разблокировать хранилище"
@@ -1037,10 +1037,10 @@
"message": "Всегда показывать личности как предложения автозаполнения при просмотре хранилища"
},
"showIdentitiesCurrentTab": {
- "message": "Показывать Личности на вкладке"
+ "message": "Показывать Личную информацию на вкладке"
},
"showIdentitiesCurrentTabDesc": {
- "message": "Личности будут отображены на вкладке для удобного автозаполнения."
+ "message": "Личная информация будет отображена на вкладке для удобного автозаполнения."
},
"clickToAutofillOnVault": {
"message": "Кликните элементы для автозаполнения в режиме просмотра хранилища"
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Новый элемент, откроется в новом окне",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Изменить перед сохранением",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ сохранен в Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "сохранено в Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ обновлен в Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "обновлено в Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Выберите $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Сохранить как новый логин",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Обновить логин",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Разблокировать, чтобы сохранить этот логин",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Сохранить логин",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,11 +1599,29 @@
"autofillSuggestionsSectionTitle": {
"message": "Предложения по автозаполнению"
},
+ "autofillSpotlightTitle": {
+ "message": "Легкий поиск предложений автозаполнения"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Отключите настройки автозаполнения в браузере, чтобы они не конфликтовали с Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Отключить автозаполнение $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Отключить автозаполнение"
+ },
"showInlineMenuLabel": {
"message": "Показывать предположения автозаполнения в полях формы"
},
"showInlineMenuIdentitiesLabel": {
- "message": "Показывать Личности как предложения"
+ "message": "Показывать Личную информацию как предложения"
},
"showInlineMenuCardsLabel": {
"message": "Показывать Карты как предложения"
@@ -1671,7 +1699,7 @@
"message": "Автозаполнение последней использованной карты для текущего сайта"
},
"commandAutofillIdentityDesc": {
- "message": "Автозаполнение последней использованной личности для текущего сайта"
+ "message": "Автозаполнение последних использованных личных данных для текущего сайта"
},
"commandGeneratePasswordDesc": {
"message": "Сгенерировать и скопировать новый случайный пароль в буфер обмена."
@@ -1829,7 +1857,7 @@
"message": "Полное имя"
},
"identityName": {
- "message": "Название личности"
+ "message": "Название личной информации"
},
"company": {
"message": "Компания"
@@ -1961,7 +1989,7 @@
"message": "Карты"
},
"identities": {
- "message": "Личные данные"
+ "message": "Личная информация"
},
"logins": {
"message": "Логины"
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Тайм-аут действия"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Новые возможности настроек"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Настройте работу с хранилищем с помощью действий быстрого копирования, компактного режима и многого другого!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Посмотреть все настройки внешнего вида"
- },
"lock": {
"message": "Блокировка",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Уникальный идентификатор не найден."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ использует SSO с собственным сервером ключей. Для авторизации пользователям этой организации больше не требуется мастер-пароль.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Мастер-пароль больше не требуется для членов следующей организации. Пожалуйста, подтвердите указанный ниже домен у администратора вашей организации."
+ },
+ "organizationName": {
+ "message": "Название организации"
+ },
+ "keyConnectorDomain": {
+ "message": "Домен соединителя ключей"
},
"leaveOrganization": {
"message": "Покинуть организацию"
@@ -3596,6 +3615,14 @@
"message": "Используйте Send для безопасного обмена зашифрованной информацией с кем угодно.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Безопасная отправка конфиденциальной информации",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Безопасно обменивайтесь файлами и данными с кем угодно на любой платформе. Ваша информация надежно шифруется и доступ к ней ограничен.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Необходимо ввести данные."
},
@@ -3806,11 +3833,11 @@
"description": "Screen reader text (aria-label) for new card button within inline menu"
},
"newIdentity": {
- "message": "Новая личность",
+ "message": "Новая личная информация",
"description": "Button text to display within inline menu when there are no matching items on an identity field"
},
"addNewIdentityItemAria": {
- "message": "Добавление новой личности в хранилище, откроется в новом окне",
+ "message": "Добавление новой личной информации в хранилище, откроется в новом окне",
"description": "Screen reader text (aria-label) for new identity button within inline menu"
},
"bitwardenOverlayMenuAvailable": {
@@ -4049,7 +4076,7 @@
"message": "Функция пока не поддерживается"
},
"yourPasskeyIsLocked": {
- "message": "Для использования passkey необходима аутентификация. Для продолжения работы подтвердите свою личность."
+ "message": "Для использования passkey необходима аутентификация. Для продолжения работы подтвердите вашу личность."
},
"multifactorAuthenticationCancelled": {
"message": "Многофакторная аутентификация отменена"
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Скачать с bitwarden.com"
},
+ "getItOnGooglePlay": {
+ "message": "Получить на Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Скачать из App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Вы уверены, что хотите навсегда удалить это вложение?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Биометрическая разблокировка в настоящее время недоступна по неизвестной причине."
},
+ "unlockVault": {
+ "message": "Разблокируйте свое хранилище за считанные секунды"
+ },
+ "unlockVaultDesc": {
+ "message": "Вы можете настроить параметры разблокировки и тайм-аута для более быстрого доступа к хранилищу."
+ },
+ "unlockPinSet": {
+ "message": "Установить PIN--код разблокировки"
+ },
"authenticating": {
"message": "Аутентификация"
},
@@ -5223,7 +5265,7 @@
"message": "Безопасность, приоритет"
},
"securityPrioritizedBody": {
- "message": "Сохраняйте логины, карты и личные данные в своем защищенном хранилище. Bitwarden использует сквозное шифрование, чтобы защитить то, что для вас важно."
+ "message": "Сохраняйте логины, карты и личную информацию в своем защищенном хранилище. Bitwarden использует сквозное шифрование, чтобы защитить то, что для вас важно."
},
"quickLogin": {
"message": "Быстрая и простая авторизация"
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Сохраняйте неограниченное количество паролей на неограниченном количестве устройств с помощью мобильных, браузерных и десктопных приложений Bitwarden."
},
+ "nudgeBadgeAria": {
+ "message": "1 уведомление"
+ },
"emptyVaultNudgeTitle": {
"message": "Импорт существующих паролей"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Добро пожаловать в ваше хранилище!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Автозаполнение элементов для текущей страницы\nИзбранные элементы для легкого доступа\nПоиск в хранилище для чего-либо еще"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Автозаполнение элементов на текущей странице"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Избранные элементы для легкого доступа"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Ищите в своем хранилище все, что хотите"
},
"newLoginNudgeTitle": {
"message": "Экономьте время с помощью автозаполнения"
@@ -5286,7 +5337,7 @@
"message": "Упрощение создания аккаунтов"
},
"newIdentityNudgeBody": {
- "message": "С помощью личностей можно быстро заполнять длинные регистрационные или контактные формы."
+ "message": "С помощью личной информации можно быстро заполнять длинные регистрационные или контактные формы."
},
"newNoteNudgeTitle": {
"message": "Храните ваши конфиденциальные данные в безопасности"
@@ -5306,5 +5357,25 @@
"message": "Узнайте больше об агенте SSH",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Быстрое создание паролей"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Легко создавайте надежные и уникальные пароли, нажатием на кнопку,",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "чтобы обеспечить безопасность ваших логинов.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Легко создавайте надежные и уникальные пароли, нажатием на кнопку 'Сгенерировать пароль', чтобы обеспечить безопасность ваших логинов.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "У вас нет прав для просмотра этой страницы. Попробуйте авторизоваться под другим аккаунтом."
}
}
diff --git a/apps/browser/src/_locales/si/messages.json b/apps/browser/src/_locales/si/messages.json
index 87443d89615..eafbf9c584e 100644
--- a/apps/browser/src/_locales/si/messages.json
+++ b/apps/browser/src/_locales/si/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "අගුල",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "අද්විතීය හඳුනාගැනීමක් සොයාගත නොහැකි විය."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ ස්වයං සත්කාරක යතුරු සේවාදායකයක් සමඟ SSO භාවිතා කරයි. මෙම සංවිධානයේ සාමාජිකයන් සඳහා ප්රවිෂ්ට වීමට ප්රධාන මුරපදයක් තවදුරටත් අවශ්ය නොවේ.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "සංවිධානය හැරයන්න"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/sk/messages.json b/apps/browser/src/_locales/sk/messages.json
index 81ac2a23620..016f4ca1f5a 100644
--- a/apps/browser/src/_locales/sk/messages.json
+++ b/apps/browser/src/_locales/sk/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Nová položka, otvorí sa v novom okne",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Upraviť pred uložením",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ uložené do Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "uložené do Bitwardenu.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ aktualizované v Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "aktualizované v Bitwardene.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Vybrať $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Uložiť ako nové prihlasovacie údaje",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Aktualizovať prihlasovacie údaje",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Odomknúť na uloženie prihlasovacích údajov",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Uložiť prihlasovacie údaje",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Návrhy automatického vypĺňania"
},
+ "autofillSpotlightTitle": {
+ "message": "Jednoduché vyhľadávanie návrhov na automatické vypĺňanie"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Vypnite nastavenia automatického vypĺňania v prehliadači, aby nedošlo ku konfliktu s Bitwardenom."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Vypnúť automatické vypĺňanie v $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Vypnúť automatické vypĺňanie"
+ },
"showInlineMenuLabel": {
"message": "Zobraziť návrhy automatického vypĺňania v poliach formulára"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Akcia pri vypršaní časového limitu"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Nové možnosti prispôsobenia"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Prispôsobte si trezor pomocou akcií rýchleho kopírovania, kompaktného režimu a ďalších možností!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Zobraziť všetky nastavenia vzhľadu"
- },
"lock": {
"message": "Uzamknúť",
"description": "Verb form: to make secure or inaccessible by"
@@ -2747,7 +2766,7 @@
"message": "Nové heslo"
},
"sendDisabled": {
- "message": "Send zakázaný",
+ "message": "Send bol odstránený",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDisabledWarning": {
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Nenašiel sa žiadny jedinečný identifikátor."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ používa SSO s vlastným kľúčovým serverom. Na prihlásenie členov tejto organizácie už nie je potrebné hlavné heslo.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Hlavné heslo sa už nevyžaduje pre členov tejto organizácie. Nižšie uvedenú doménu potvrďte u správcu organizácie."
+ },
+ "organizationName": {
+ "message": "Názov organizácie"
+ },
+ "keyConnectorDomain": {
+ "message": "Doména Key Connectora"
},
"leaveOrganization": {
"message": "Opustiť organizáciu"
@@ -3596,6 +3615,14 @@
"message": "Použite Send na bezpečné zdieľanie zašifrovaných informácii s kýmkoľvek.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send, citlivé informácie bezpečne",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Bezpečne zdieľajte súbory a údaje s kýmkoľvek a na akejkoľvek platforme. Vaše informácie zostanú end-to-end zašifrované a zároveň sa obmedzí ich odhalenie.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Vstup je povinný."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Stiahnuť teraz z bitwarden.com"
},
+ "getItOnGooglePlay": {
+ "message": "Získať z Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Stiahnuť z App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Naozaj chcete natrvalo odstrániť túto prílohu?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Odomykanie biometrickými údajmi je momentálne z neznámych dôvodov nedostupné."
},
+ "unlockVault": {
+ "message": "Odomknite trezor za pár sekúnd"
+ },
+ "unlockVaultDesc": {
+ "message": "Pre rýchlejší prístup k trezoru si môžete upraviť nastavenia odomknutia a časový limit."
+ },
+ "unlockPinSet": {
+ "message": "PIN na odomknutie nastavený"
+ },
"authenticating": {
"message": "Overuje sa"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Ukladajte neobmedzený počet hesiel na neobmedzenom počte zariadení pomocou mobilných aplikácií, prehliadačov a desktopových aplikácií Bitwardenu."
},
+ "nudgeBadgeAria": {
+ "message": "1 upozornenie"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existujúcich hesiel"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Vitajte vo svojom trezore!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Automatické vypĺňanie položiek pre aktuálnu stránku\nObľúbené položky pre ľahký prístup\nVyhľadajte v trezore niečo iné"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Položky na automatické vypĺňanie pre aktuálnu stránku"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Obľúbené položky pre jednoduchý prístup"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Vyhľadajte v trezore niečo iné"
},
"newLoginNudgeTitle": {
"message": "Ušetrite čas s automatickým vypĺňaním"
@@ -5306,5 +5357,25 @@
"message": "Viac informácií o agentovi SSH",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Rýchle vytváranie hesiel"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Jednoducho vytvorte silné a jedinečné heslá kliknutím na",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "aby ste mohli ochrániť prihlasovacie údaje.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Jednoducho vytvorte silné a jedinečné heslá kliknutím na tlačidlo Generovať heslo, aby zabezpečili prihlasovacie údaje.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Nemáte oprávnenie na zobrazenie tejto stránky. Skúste sa prihlásiť pomocou iného účtu."
}
}
diff --git a/apps/browser/src/_locales/sl/messages.json b/apps/browser/src/_locales/sl/messages.json
index 7bc5abe9e0f..3f84455be88 100644
--- a/apps/browser/src/_locales/sl/messages.json
+++ b/apps/browser/src/_locales/sl/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Zaklepanje",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/sr/messages.json b/apps/browser/src/_locales/sr/messages.json
index 55ecd18295b..dae425fcfd3 100644
--- a/apps/browser/src/_locales/sr/messages.json
+++ b/apps/browser/src/_locales/sr/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Нова ставка, отвара се у новом прозору",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Уреди пре сачувавања",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ сачувано и Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "сачувано у Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ ажурирано у Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "ажурирано у Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Одабрати $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Сачувати као нову пријаву",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Ажурирати пријаву",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Откључајте да бисте сачували ову пријаву",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Сачувати пријаву",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Предлог за ауто-попуњавања"
},
+ "autofillSpotlightTitle": {
+ "message": "Једноставно пронађите предлоге за ауто-пуњење"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Искључите подешавања ауто-пуњења прегледача, тако да се не сукобљавај са Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Прикажи предлоге за ауто-попуњавање у пољима обрасца"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Акција тајмаута"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Нове опције прилагођавања"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Прилагодите своје искуство сефа помоћу брзих акција копирања, компактног режима и још много тога!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Погледајте сва подешавања изглед"
- },
"lock": {
"message": "Закључај",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Није пронађен ниједан јединствени идентификатор."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ користи SSO уз сопствени сервер за кључеве. Главна лозинка за пријаву више није неопходна за чланове ове организације.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "Главна лозинка више није потребна за чланове следеће организације. Молимо потврдите домен са администратором организације."
+ },
+ "organizationName": {
+ "message": "Назив организације"
+ },
+ "keyConnectorDomain": {
+ "message": "Домен конектора кључа"
},
"leaveOrganization": {
"message": "Напусти организацију"
@@ -3596,6 +3615,14 @@
"message": "Употребите Send да безбедно делите шифроване информације са било ким.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Унос је потребан."
},
@@ -4513,25 +4540,31 @@
}
},
"downloadBitwarden": {
- "message": "Download Bitwarden"
+ "message": "Преузети Bitwarden"
},
"downloadBitwardenOnAllDevices": {
- "message": "Download Bitwarden on all devices"
+ "message": "Преузети Bitwarden на све уређаје"
},
"getTheMobileApp": {
- "message": "Get the mobile app"
+ "message": "Узети мобилну апликацију"
},
"getTheMobileAppDesc": {
- "message": "Access your passwords on the go with the Bitwarden mobile app."
+ "message": "Приступите лозинци у покрету са Bitwarden мобилном апликацијом."
},
"getTheDesktopApp": {
- "message": "Get the desktop app"
+ "message": "Узети desktop апликацију"
},
"getTheDesktopAppDesc": {
- "message": "Access your vault without a browser, then set up unlock with biometrics to expedite unlocking in both the desktop app and browser extension."
+ "message": "Приступите свом сефу без прегледача, а затим поставите откључавање са биометристима да бисте убрзали откључавање и у програму и у додатку."
},
"downloadFromBitwardenNow": {
- "message": "Download from bitwarden.com now"
+ "message": "Преузети сада са bitwarden.com"
+ },
+ "getItOnGooglePlay": {
+ "message": "Набавите на Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Преузмите са App Store"
},
"permanentlyDeleteAttachmentConfirmation": {
"message": "Да ли сте сигурни да желите да трајно избришете овај прилог?"
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Биометријско откључавање није доступно из непознатог разлога."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Аутентификација"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Сачувајте неограничене лозинке на неограниченим уређајима помоћу Bitwarden мобилних апликација, претраживача и десктоп апликација."
},
+ "nudgeBadgeAria": {
+ "message": "1 нотификација"
+ },
"emptyVaultNudgeTitle": {
"message": "Увоз постојеће лозинке"
},
@@ -5255,24 +5300,30 @@
"hasItemsVaultNudgeTitle": {
"message": "Добродошли у ваш сеф!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Ауто-пуњење предмета за тренутну страницу\nОмиљени предмети за лак приступ\nПретражите сеф за нешто друго"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Ауто-пуњење предмета за тренутну страницу"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Предмети као омиљен за лак приступ"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Претражите сеф за нешто друго"
},
"newLoginNudgeTitle": {
"message": "Уштедите време са ауто-пуњењем"
},
"newLoginNudgeBodyOne": {
- "message": "Include a",
+ "message": "Укључите",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "Веб сајт",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyTwo": {
- "message": "so this login appears as an autofill suggestion.",
+ "message": "тако да се ова пријава појављује као предлог за ауто-пуњење.",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
@@ -5298,13 +5349,33 @@
"message": "Лак SSH приступ"
},
"newSshNudgeBodyOne": {
- "message": "Store your keys and connect with the SSH agent for fast, encrypted authentication.",
+ "message": "Чувајте кључеве и повежите се са SSH агент за брзу, шифровану аутентификацију.",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
"newSshNudgeBodyTwo": {
- "message": "Learn more about SSH agent",
+ "message": "Сазнајте више о SSH агенту",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Немате дозволе за преглед ове странице. Покушајте да се пријавите са другим налогом."
}
}
diff --git a/apps/browser/src/_locales/sv/messages.json b/apps/browser/src/_locales/sv/messages.json
index 16f28c3f5ed..f57209122ef 100644
--- a/apps/browser/src/_locales/sv/messages.json
+++ b/apps/browser/src/_locales/sv/messages.json
@@ -578,10 +578,10 @@
"message": "Unfavorite"
},
"itemAddedToFavorites": {
- "message": "Item added to favorites"
+ "message": "Objekt tillagt i favoriter"
},
"itemRemovedFromFavorites": {
- "message": "Item removed from favorites"
+ "message": "Objekt borttaget från favoriter"
},
"notes": {
"message": "Anteckningar"
@@ -608,10 +608,10 @@
"message": "Öppna"
},
"launchWebsite": {
- "message": "Launch website"
+ "message": "Öppna webbplats"
},
"launchWebsiteName": {
- "message": "Launch website $ITEMNAME$",
+ "message": "Öppna webbplats $ITEMNAME$",
"placeholders": {
"itemname": {
"content": "$1",
@@ -641,10 +641,10 @@
"message": "Ställ in en upplåsningsmetod i Inställningar"
},
"sessionTimeoutHeader": {
- "message": "Session timeout"
+ "message": "Timeout för session"
},
"vaultTimeoutHeader": {
- "message": "Vault timeout"
+ "message": "Timeout för valv"
},
"otherOptions": {
"message": "Andra alternativ"
@@ -656,13 +656,13 @@
"message": "Din webbläsare har inte stöd för att enkelt kopiera till urklipp. Kopiera till urklipp manuellt istället."
},
"verifyYourIdentity": {
- "message": "Verify your identity"
+ "message": "Verifiera din 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"
+ "message": "Fortsätt logga in"
},
"yourVaultIsLocked": {
"message": "Ditt valv är låst. Verifiera din identitet för att fortsätta."
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Förslag för autofyll"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Visa förslag för autofyll i formulärfält"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lås",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Ingen unik identifierare hittades."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ använder SSO med en egen nyckelserver. Ett huvudlösenord krävs inte längre för att logga in för medlemmar i denna organisation.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Lämna organisation"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Inmatning är obligatoriskt."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/te/messages.json b/apps/browser/src/_locales/te/messages.json
index 535bc2c7750..4775d1f7af0 100644
--- a/apps/browser/src/_locales/te/messages.json
+++ b/apps/browser/src/_locales/te/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Lock",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/th/messages.json b/apps/browser/src/_locales/th/messages.json
index 43a940196aa..fd9bac62391 100644
--- a/apps/browser/src/_locales/th/messages.json
+++ b/apps/browser/src/_locales/th/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Autofill suggestions"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Show autofill suggestions on form fields"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "ล็อก",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "No unique identifier found."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Leave organization"
@@ -3596,6 +3615,14 @@
"message": "Use Send to securely share encrypted information with anyone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Input is required."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Are you sure you want to permanently delete this attachment?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/tr/messages.json b/apps/browser/src/_locales/tr/messages.json
index d97b023a695..02d7d15b8a2 100644
--- a/apps/browser/src/_locales/tr/messages.json
+++ b/apps/browser/src/_locales/tr/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "Yeni kayıt (yeni pencerede açılır)",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Kaydetmeden önce düzenle",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ Bitwarden'a kaydedildi.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "Bitwarden’a kaydedildi.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ Bitwarden'da güncellendi.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "Bitwarden’da güncellendi.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Seç: $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Yeni hesap olarak kaydet",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Hesabı güncelle",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Bu hesabı kaydetmek için kilidi açın",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Hesabı kaydet",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Otomatik doldurma önerileri"
},
+ "autofillSpotlightTitle": {
+ "message": "Otomatik doldurma önerilerini kolayca bulun"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Bitwarden ile çakışmaması için tarayıcınızın otomatik doldurma ayarını kapatın."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "$BROWSER$ ile otomatik doldurmayı kapat",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Otomatik doldurmayı kapat"
+ },
"showInlineMenuLabel": {
"message": "Form alanlarında otomatik doldurma önerilerini göster"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Zaman aşımı eylemi"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Yeni özelleştirme seçenekleri"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Görünüm ayarlarının hepsini göster"
- },
"lock": {
"message": "Kilitle",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Benzersiz tanımlayıcı bulunamadı."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ kendi barındırdığı bir anahtar sunucusuyla SSO kullanıyor. Bu kuruluşun üyelerinin artık ana parola kullanması gerekmiyor.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Kuruluş adı"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector alan adı"
},
"leaveOrganization": {
"message": "Kuruluştan ayrıl"
@@ -3596,6 +3615,14 @@
"message": "Şifrelenmiş bilgileri güvenle paylaşmak için Send'i kullanabilirsiniz.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Hassas bilgileri güvenle paylaşın",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Girdi gerekli."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Şimdi bitwarden.com’dan indirin"
},
+ "getItOnGooglePlay": {
+ "message": "Google Play'den edinin"
+ },
+ "downloadOnTheAppStore": {
+ "message": "App Store'dan indirin"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Bu dosyayı kalıcı olarak silmek istediğinizden emin misiniz?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Kasanızın kilidini saniyeler içinde açın"
+ },
+ "unlockVaultDesc": {
+ "message": "Kasanıza daha hızlı ulaşmak için kilit açma ve zaman aşımı ayarlarınızı özelleştirebilirsiniz."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Kimlik doğrulanıyor"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Bitwarden mobil, tarayıcı ve masaüstü uygulamalarıyla istediğiniz kadar cihaza istediğiniz kadar parola kaydedebilirsiniz."
},
+ "nudgeBadgeAria": {
+ "message": "1 bildirim"
+ },
"emptyVaultNudgeTitle": {
"message": "Mevcut parolaları içe aktar"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Kasanıza hoş geldiniz!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Otomatik doldurmayla zaman kazanın"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "Bu sayfayı görüntüleme izniniz yok. Farklı bir hesapla giriş yapmayı deneyin."
}
}
diff --git a/apps/browser/src/_locales/uk/messages.json b/apps/browser/src/_locales/uk/messages.json
index 8de8ba8a97b..9406aabe088 100644
--- a/apps/browser/src/_locales/uk/messages.json
+++ b/apps/browser/src/_locales/uk/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Редагувати перед збереженням",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ збережено до Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ оновлено в Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Зберегти як новий запис",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Оновити запис",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Зберегти запис",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Пропозиції автозаповнення"
},
+ "autofillSpotlightTitle": {
+ "message": "Користуйтеся пропозиціями автозаповнення"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Вимкніть налаштування автозаповнення вашого браузера, щоб вони не конфліктували з Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Вимкнути автозаповнення $BROWSER$",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Вимкніть автозаповнення"
+ },
"showInlineMenuLabel": {
"message": "Пропозиції автозаповнення на полях форм"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Дія після часу очікування"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "Нові можливості налаштування"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Налаштуйте своє сховище за допомогою швидких дій копіювання, компактного режиму та інших можливостей!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "Всі налаштування подання"
- },
"lock": {
"message": "Блокувати",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Не знайдено унікальний ідентифікатор."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ використовує SSO з власним сервером ключів. Головний пароль для учасників цієї організації більше не вимагається.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Покинути організацію"
@@ -3596,6 +3615,14 @@
"message": "Використовуйте відправлення, щоб безпечно надавати доступ іншим до зашифрованої інформації.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Необхідно ввести дані."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Завантажити з bitwarden.com"
},
+ "getItOnGooglePlay": {
+ "message": "Завантажити з Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Завантажити з App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Ви дійсно хочете остаточно видалити це вкладення?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Біометричне розблокування зараз недоступне з невідомої причини."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Аутентифікація"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Зберігайте скільки завгодно паролів на необмеженій кількості пристроїв, використовуючи Bitwarden для мобільних пристроїв, браузерів та комп'ютерів."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Імпортуйте наявні паролі"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Вітаємо у вашому сховищі!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Автозаповнення на відкритій сторінці\nОбрані записи для легкого доступу\nПошук будь-яких даних у сховищі"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Заощаджуйте час з автозаповненням"
@@ -5306,5 +5357,25 @@
"message": "Докладніше про SSH-агента",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/vi/messages.json b/apps/browser/src/_locales/vi/messages.json
index ec9dc82e6ca..29a7b7109e7 100644
--- a/apps/browser/src/_locales/vi/messages.json
+++ b/apps/browser/src/_locales/vi/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "Các gợi ý điền tự động"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "Hiển thị các gợi ý tự động điền trên các trường biểu mẫu"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "Timeout action"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "Khóa",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "Không tìm thấy danh tính duy nhất."
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ đang sử dụng SSO với khóa máy chủ tự lưu trữ. Mật khẩu chính không còn cần để đăng nhập cho các thành viên của tổ chức này.",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "Rời tổ chức"
@@ -3596,6 +3615,14 @@
"message": "Sử dụng Gửi để chia sẻ thông tin mã hóa một cách an toàn với bất kỳ ai.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "Trường này là bắt buộc."
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "Bạn có chắc chắn muốn xóa vĩnh viễn tệp đính kèm này không?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "Biometric unlock is currently unavailable for an unknown reason."
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "Authenticating"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/_locales/zh_CN/messages.json b/apps/browser/src/_locales/zh_CN/messages.json
index a453fe8580a..8a537be08f2 100644
--- a/apps/browser/src/_locales/zh_CN/messages.json
+++ b/apps/browser/src/_locales/zh_CN/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "新增项目(在新窗口中打开)",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "保存前编辑",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ 已保存到 Bitwarden。",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "已保存到 Bitwarden。",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ 已在 Bitwarden 中更新。",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "已更新到 Bitwarden。",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "选择 $ITEMTYPE$,$ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "保存为新的登录",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "更新登录",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "解锁以保存此登录",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "保存登录",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "自动填充建议"
},
+ "autofillSpotlightTitle": {
+ "message": "轻松找到自动填充建议"
+ },
+ "autofillSpotlightDesc": {
+ "message": "关闭浏览器的自动填充设置,以免与 Bitwarden 产生冲突。"
+ },
+ "turnOffBrowserAutofill": {
+ "message": "关闭 $BROWSER$ 的自动填充",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "关闭自动填充"
+ },
"showInlineMenuLabel": {
"message": "在表单字段中显示自动填充建议"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "超时动作"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "新的自定义选项"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "自定义您的密码库体验,包括快速复制操作、紧凑模式等!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "查看所有外观设置"
- },
"lock": {
"message": "锁定",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "未找到唯一的标识符。"
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ 使用自托管密钥服务器 SSO。这个组织的成员登录时将不再需要主密码。",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "以下组织的成员不再需要主密码。请与您的组织管理员确认下面的域名。"
+ },
+ "organizationName": {
+ "message": "组织名称"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector 域名"
},
"leaveOrganization": {
"message": "退出组织"
@@ -3596,6 +3615,14 @@
"message": "使用 Send 与任何人安全地分享加密信息。",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "安全地发送敏感信息",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "在任何平台上安全地与任何人共享文件和数据。您的信息将在限制曝光的同时保持端到端加密。",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "必须输入内容。"
},
@@ -4528,11 +4555,17 @@
"message": "获取桌面 App"
},
"getTheDesktopAppDesc": {
- "message": "不使用浏览器访问您的密码库,然后设置生物识别解锁,从而在桌面 App 和浏览器扩展中实现快速解锁。"
+ "message": "无需浏览器也可访问您的密码库。在桌面 App 和浏览器扩展中设置生物识别解锁,以实现快速解锁。"
},
"downloadFromBitwardenNow": {
"message": "立即从 bitwarden.com 下载"
},
+ "getItOnGooglePlay": {
+ "message": "从 Google Play 获取"
+ },
+ "downloadOnTheAppStore": {
+ "message": "从 App Store 下载"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "您确定要永久删除此附件吗?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "由于某个未知的原因,生物识别解锁当前不可用。"
},
+ "unlockVault": {
+ "message": "数秒内解锁您的密码库"
+ },
+ "unlockVaultDesc": {
+ "message": "您可以自定义解锁和超时设置,以便更快地访问您的密码库。"
+ },
+ "unlockPinSet": {
+ "message": "解锁 PIN 设置"
+ },
"authenticating": {
"message": "正在验证"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "使用 Bitwarden 移动端、浏览器和桌面 App 在无限制的设备上保存无限数量的密码。"
},
+ "nudgeBadgeAria": {
+ "message": "1 个通知"
+ },
"emptyVaultNudgeTitle": {
"message": "导入现有密码"
},
@@ -5255,19 +5300,25 @@
"hasItemsVaultNudgeTitle": {
"message": "欢迎来到您的密码库!"
},
- "hasItemsVaultNudgeBody": {
- "message": "自动填充项目用于当前页面\n收藏夹项目用于轻松访问\n搜索密码库用于其他目的"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "为当前页面自动填充项目"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "收藏项目以便快速访问"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "在密码库中搜索其他内容"
},
"newLoginNudgeTitle": {
"message": "使用自动填充节省时间"
},
"newLoginNudgeBodyOne": {
- "message": "Include a",
+ "message": "包含",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
"newLoginNudgeBodyBold": {
- "message": "Website",
+ "message": "网站",
"description": "This is in multiple parts to allow for bold text in the middle of the sentence.",
"example": "Include a Website so this login appears as an autofill suggestion."
},
@@ -5306,5 +5357,25 @@
"message": "进一步了解 SSH 代理",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "快速创建密码"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "一键创建强大且唯一的密码",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "帮助您保持登录安全。",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "一键创建强大且唯一的密码,帮助您保持登录安全。",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "您没有查看此页面的权限。请尝试使用其他账户登录。"
}
}
diff --git a/apps/browser/src/_locales/zh_TW/messages.json b/apps/browser/src/_locales/zh_TW/messages.json
index ddea3dd7fc6..9d4eabb1b49 100644
--- a/apps/browser/src/_locales/zh_TW/messages.json
+++ b/apps/browser/src/_locales/zh_TW/messages.json
@@ -1071,6 +1071,10 @@
},
"description": "Aria label for the view button in notification bar confirmation message"
},
+ "notificationNewItemAria": {
+ "message": "New Item, opens in new window",
+ "description": "Aria label for the new item button in notification bar confirmation message when error is prompted"
+ },
"notificationEditTooltip": {
"message": "Edit before saving",
"description": "Tooltip and Aria label for edit button on cipher item"
@@ -1088,24 +1092,26 @@
}
}
},
- "loginSaveConfirmation": {
- "message": "$ITEMNAME$ saved to Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginSaveConfirmation": {
+ "message": "saved to Bitwarden.",
"description": "Shown to user after item is saved."
},
- "loginUpdatedConfirmation": {
- "message": "$ITEMNAME$ updated in Bitwarden.",
- "placeholders": {
- "itemName": {
- "content": "$1"
- }
- },
+ "notificationLoginUpdatedConfirmation": {
+ "message": "updated in Bitwarden.",
"description": "Shown to user after item is updated."
},
+ "selectItemAriaLabel": {
+ "message": "Select $ITEMTYPE$, $ITEMNAME$",
+ "description": "Used by screen readers. $1 is the item type (like vault or folder), $2 is the selected item name.",
+ "placeholders": {
+ "itemType": {
+ "content": "$1"
+ },
+ "itemName": {
+ "content": "$2"
+ }
+ }
+ },
"saveAsNewLoginAction": {
"message": "Save as new login",
"description": "Button text for saving login details as a new entry."
@@ -1114,6 +1120,10 @@
"message": "Update login",
"description": "Button text for updating an existing login entry."
},
+ "unlockToSave": {
+ "message": "Unlock to save this login",
+ "description": "User prompt to take action in order to save the login they just entered."
+ },
"saveLogin": {
"message": "Save login",
"description": "Prompt asking the user if they want to save their login details."
@@ -1589,6 +1599,24 @@
"autofillSuggestionsSectionTitle": {
"message": "自動填入建議"
},
+ "autofillSpotlightTitle": {
+ "message": "Easily find autofill suggestions"
+ },
+ "autofillSpotlightDesc": {
+ "message": "Turn off your browser's autofill settings, so they don't conflict with Bitwarden."
+ },
+ "turnOffBrowserAutofill": {
+ "message": "Turn off $BROWSER$ autofill",
+ "placeholders": {
+ "browser": {
+ "content": "$1",
+ "example": "Chrome"
+ }
+ }
+ },
+ "turnOffAutofill": {
+ "message": "Turn off autofill"
+ },
"showInlineMenuLabel": {
"message": "在表單欄位上顯示自動填入選單"
},
@@ -2199,15 +2227,6 @@
"vaultTimeoutAction1": {
"message": "逾時後動作"
},
- "newCustomizationOptionsCalloutTitle": {
- "message": "New customization options"
- },
- "newCustomizationOptionsCalloutContent": {
- "message": "Customize your vault experience with quick copy actions, compact mode, and more!"
- },
- "newCustomizationOptionsCalloutLink": {
- "message": "View all Appearance settings"
- },
"lock": {
"message": "鎖定",
"description": "Verb form: to make secure or inaccessible by"
@@ -2995,14 +3014,14 @@
"copyCustomFieldNameNotUnique": {
"message": "找不到唯一識別碼。"
},
- "convertOrganizationEncryptionDesc": {
- "message": "$ORGANIZATION$ 使用自我裝載金鑰伺服器 SSO。此組織的成員登入時將不再需要主密碼。",
- "placeholders": {
- "organization": {
- "content": "$1",
- "example": "My Org Name"
- }
- }
+ "removeMasterPasswordForOrganizationUserKeyConnector": {
+ "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ },
+ "organizationName": {
+ "message": "Organization name"
+ },
+ "keyConnectorDomain": {
+ "message": "Key Connector domain"
},
"leaveOrganization": {
"message": "離開組織"
@@ -3596,6 +3615,14 @@
"message": "使用 Send 可以與任何人安全地共用加密資訊。",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
+ "sendsTitleNoItems": {
+ "message": "Send sensitive information safely",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
+ "sendsBodyNoItems": {
+ "message": "Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"inputRequired": {
"message": "必須輸入內容。"
},
@@ -4533,6 +4560,12 @@
"downloadFromBitwardenNow": {
"message": "Download from bitwarden.com now"
},
+ "getItOnGooglePlay": {
+ "message": "Get it on Google Play"
+ },
+ "downloadOnTheAppStore": {
+ "message": "Download on the App Store"
+ },
"permanentlyDeleteAttachmentConfirmation": {
"message": "您確定要永久刪除此附檔嗎?"
},
@@ -4994,6 +5027,15 @@
"biometricsStatusHelptextUnavailableReasonUnknown": {
"message": "基於不明原因,生物辨識解鎖無法使用。"
},
+ "unlockVault": {
+ "message": "Unlock your vault in seconds"
+ },
+ "unlockVaultDesc": {
+ "message": "You can customize your unlock and timeout settings to more quickly access your vault."
+ },
+ "unlockPinSet": {
+ "message": "Unlock PIN set"
+ },
"authenticating": {
"message": "驗證中"
},
@@ -5243,6 +5285,9 @@
"secureDevicesBody": {
"message": "Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps."
},
+ "nudgeBadgeAria": {
+ "message": "1 notification"
+ },
"emptyVaultNudgeTitle": {
"message": "Import existing passwords"
},
@@ -5255,8 +5300,14 @@
"hasItemsVaultNudgeTitle": {
"message": "Welcome to your vault!"
},
- "hasItemsVaultNudgeBody": {
- "message": "Autofill items for the current page\nFavorite items for easy access\nSearch your vault for something else"
+ "hasItemsVaultNudgeBodyOne": {
+ "message": "Autofill items for the current page"
+ },
+ "hasItemsVaultNudgeBodyTwo": {
+ "message": "Favorite items for easy access"
+ },
+ "hasItemsVaultNudgeBodyThree": {
+ "message": "Search your vault for something else"
},
"newLoginNudgeTitle": {
"message": "Save time with autofill"
@@ -5306,5 +5357,25 @@
"message": "Learn more about SSH agent",
"description": "Two part message",
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
+ },
+ "generatorNudgeTitle": {
+ "message": "Quickly create passwords"
+ },
+ "generatorNudgeBodyOne": {
+ "message": "Easily create strong and unique passwords by clicking on",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyTwo": {
+ "message": "to help you keep your logins secure.",
+ "description": "Two part message",
+ "example": "Easily create strong and unique passwords by clicking on {icon} to help you keep your logins secure."
+ },
+ "generatorNudgeBodyAria": {
+ "message": "Easily create strong and unique passwords by clicking on the Generate password button to help you keep your logins secure.",
+ "description": "Aria label for the body content of the generator nudge"
+ },
+ "noPermissionsViewPage": {
+ "message": "You do not have permissions to view this page. Try logging in with a different account."
}
}
diff --git a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html
index de8ab4c7b08..b9f9b984c69 100644
--- a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html
+++ b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html
@@ -57,19 +57,19 @@
[disabled]="currentAccount.status === lockedStatus || !activeUserCanLock"
[title]="!activeUserCanLock ? ('unlockMethodNeeded' | i18n) : ''"
>
-
+
{{ "lockNow" | i18n }}