- {{ (cipher.isDeleted ? "permanentlyDelete" : "delete") | i18n }}
+ {{ (isDeleted ? "permanentlyDelete" : "delete") | i18n }}
-
+
{{ "copyUsername" | i18n }}
-
+
{{ "copyPassword" | i18n }}
@@ -119,9 +119,9 @@
@@ -151,19 +151,14 @@
{{ "eventLogs" | i18n }}
-
+
{{ "restore" | i18n }}
- {{ (cipher.isDeleted ? "permanentlyDelete" : "delete") | i18n }}
+ {{ (isDeleted ? "permanentlyDelete" : "delete") | i18n }}
diff --git a/apps/web/src/app/vault/components/vault-items/vault-cipher-row.component.ts b/apps/web/src/app/vault/components/vault-items/vault-cipher-row.component.ts
index 6078324a059..cb4d8ad70b1 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-cipher-row.component.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-cipher-row.component.ts
@@ -6,7 +6,10 @@ import { CollectionView } from "@bitwarden/admin-console/common";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { CipherType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import {
convertToPermission,
@@ -20,11 +23,11 @@ import { RowHeightClass } from "./vault-items.component";
templateUrl: "vault-cipher-row.component.html",
standalone: false,
})
-export class VaultCipherRowComponent implements OnInit {
+export class VaultCipherRowComponent implements OnInit {
protected RowHeightClass = RowHeightClass;
@Input() disabled: boolean;
- @Input() cipher: CipherView;
+ @Input() cipher: C;
@Input() showOwner: boolean;
@Input() showCollections: boolean;
@Input() showGroups: boolean;
@@ -46,7 +49,7 @@ export class VaultCipherRowComponent implements OnInit {
*/
@Input() canRestoreCipher: boolean;
- @Output() onEvent = new EventEmitter();
+ @Output() onEvent = new EventEmitter>();
@Input() checked: boolean;
@Output() checkedToggled = new EventEmitter();
@@ -74,33 +77,63 @@ export class VaultCipherRowComponent implements OnInit {
}
protected get clickAction() {
- if (this.cipher.decryptionFailure) {
+ if (this.decryptionFailure) {
return "showFailedToDecrypt";
}
+
return "view";
}
protected get showTotpCopyButton() {
- return (
- (this.cipher.login?.hasTotp ?? false) &&
- (this.cipher.organizationUseTotp || this.showPremiumFeatures)
- );
+ const login = CipherViewLikeUtils.getLogin(this.cipher);
+
+ const hasTotp = login?.totp ?? false;
+
+ return hasTotp && (this.cipher.organizationUseTotp || this.showPremiumFeatures);
}
protected get showFixOldAttachments() {
return this.cipher.hasOldAttachments && this.cipher.organizationId == null;
}
+ protected get hasAttachments() {
+ return CipherViewLikeUtils.hasAttachments(this.cipher);
+ }
+
protected get showAttachments() {
- return this.canEditCipher || this.cipher.attachments?.length > 0;
+ return this.canEditCipher || this.hasAttachments;
+ }
+
+ protected get canLaunch() {
+ return CipherViewLikeUtils.canLaunch(this.cipher);
+ }
+
+ protected get launchUri() {
+ return CipherViewLikeUtils.getLaunchUri(this.cipher);
+ }
+
+ protected get subtitle() {
+ return CipherViewLikeUtils.subtitle(this.cipher);
+ }
+
+ protected get isDeleted() {
+ return CipherViewLikeUtils.isDeleted(this.cipher);
+ }
+
+ protected get decryptionFailure() {
+ return CipherViewLikeUtils.decryptionFailure(this.cipher);
}
protected get showAssignToCollections() {
- return this.organizations?.length && this.canAssignCollections && !this.cipher.isDeleted;
+ return (
+ this.organizations?.length &&
+ this.canAssignCollections &&
+ !CipherViewLikeUtils.isDeleted(this.cipher)
+ );
}
protected get showClone() {
- return this.cloneable && !this.cipher.isDeleted;
+ return this.cloneable && !CipherViewLikeUtils.isDeleted(this.cipher);
}
protected get showEventLogs() {
@@ -108,7 +141,18 @@ export class VaultCipherRowComponent implements OnInit {
}
protected get isNotDeletedLoginCipher() {
- return this.cipher.type === this.CipherType.Login && !this.cipher.isDeleted;
+ return (
+ CipherViewLikeUtils.getType(this.cipher) === this.CipherType.Login &&
+ !CipherViewLikeUtils.isDeleted(this.cipher)
+ );
+ }
+
+ protected get hasPasswordToCopy() {
+ return CipherViewLikeUtils.hasCopyableValue(this.cipher, "password");
+ }
+
+ protected get hasUsernameToCopy() {
+ return CipherViewLikeUtils.hasCopyableValue(this.cipher, "username");
}
protected get permissionText() {
@@ -154,7 +198,7 @@ export class VaultCipherRowComponent implements OnInit {
}
protected get showLaunchUri(): boolean {
- return this.isNotDeletedLoginCipher && this.cipher.login.canLaunch;
+ return this.isNotDeletedLoginCipher && this.canLaunch;
}
protected get disableMenu() {
@@ -166,7 +210,7 @@ export class VaultCipherRowComponent implements OnInit {
this.showAttachments ||
this.showClone ||
this.canEditCipher ||
- (this.cipher.isDeleted && this.canRestoreCipher)
+ (CipherViewLikeUtils.isDeleted(this.cipher) && this.canRestoreCipher)
);
}
diff --git a/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts b/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
index 06c78ea0351..5d2b84aa10b 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
@@ -5,6 +5,7 @@ import { Component, EventEmitter, Input, Output } from "@angular/core";
import { CollectionAdminView, Unassigned, CollectionView } from "@bitwarden/admin-console/common";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { GroupView } from "../../../admin-console/organizations/core";
@@ -20,7 +21,7 @@ import { RowHeightClass } from "./vault-items.component";
templateUrl: "vault-collection-row.component.html",
standalone: false,
})
-export class VaultCollectionRowComponent {
+export class VaultCollectionRowComponent {
protected RowHeightClass = RowHeightClass;
protected Unassigned = "unassigned";
@@ -36,7 +37,7 @@ export class VaultCollectionRowComponent {
@Input() groups: GroupView[];
@Input() showPermissionsColumn: boolean;
- @Output() onEvent = new EventEmitter();
+ @Output() onEvent = new EventEmitter>();
@Input() checked: boolean;
@Output() checkedToggled = new EventEmitter();
diff --git a/apps/web/src/app/vault/components/vault-items/vault-item-event.ts b/apps/web/src/app/vault/components/vault-items/vault-item-event.ts
index 272d1585d95..130f86697c7 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-item-event.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-item-event.ts
@@ -1,17 +1,17 @@
import { CollectionView } from "@bitwarden/admin-console/common";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { VaultItem } from "./vault-item";
-export type VaultItemEvent =
- | { type: "viewAttachments"; item: CipherView }
+export type VaultItemEvent =
+ | { type: "viewAttachments"; item: C }
| { type: "bulkEditCollectionAccess"; items: CollectionView[] }
| { type: "viewCollectionAccess"; item: CollectionView; readonly: boolean }
- | { type: "viewEvents"; item: CipherView }
+ | { type: "viewEvents"; item: C }
| { type: "editCollection"; item: CollectionView; readonly: boolean }
- | { type: "clone"; item: CipherView }
- | { type: "restore"; items: CipherView[] }
- | { type: "delete"; items: VaultItem[] }
- | { type: "copyField"; item: CipherView; field: "username" | "password" | "totp" }
- | { type: "moveToFolder"; items: CipherView[] }
- | { type: "assignToCollections"; items: CipherView[] };
+ | { type: "clone"; item: C }
+ | { type: "restore"; items: C[] }
+ | { type: "delete"; items: VaultItem[] }
+ | { type: "copyField"; item: C; field: "username" | "password" | "totp" }
+ | { type: "moveToFolder"; items: C[] }
+ | { type: "assignToCollections"; items: C[] };
diff --git a/apps/web/src/app/vault/components/vault-items/vault-item.ts b/apps/web/src/app/vault/components/vault-items/vault-item.ts
index 6ac198392ad..bccb84fb0bf 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-item.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-item.ts
@@ -1,7 +1,7 @@
import { CollectionView } from "@bitwarden/admin-console/common";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
-export interface VaultItem {
+export interface VaultItem {
collection?: CollectionView;
- cipher?: CipherView;
+ cipher?: C;
}
diff --git a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
index 18dfa73ac5a..e82b03a8815 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
@@ -6,8 +6,11 @@ import { Observable, combineLatest, map, of, startWith, switchMap } from "rxjs";
import { CollectionView, Unassigned, CollectionAdminView } from "@bitwarden/admin-console/common";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { CipherAuthorizationService } from "@bitwarden/common/vault/services/cipher-authorization.service";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { SortDirection, TableDataSource } from "@bitwarden/components";
import { GroupView } from "../../../admin-console/organizations/core";
@@ -32,7 +35,7 @@ type ItemPermission = CollectionPermission | "NoAccess";
templateUrl: "vault-items.component.html",
standalone: false,
})
-export class VaultItemsComponent {
+export class VaultItemsComponent {
protected RowHeight = RowHeight;
@Input() disabled: boolean;
@@ -56,11 +59,11 @@ export class VaultItemsComponent {
@Input() addAccessToggle: boolean;
@Input() activeCollection: CollectionView | undefined;
- private _ciphers?: CipherView[] = [];
- @Input() get ciphers(): CipherView[] {
+ private _ciphers?: C[] = [];
+ @Input() get ciphers(): C[] {
return this._ciphers;
}
- set ciphers(value: CipherView[] | undefined) {
+ set ciphers(value: C[] | undefined) {
this._ciphers = value ?? [];
this.refreshItems();
}
@@ -74,11 +77,11 @@ export class VaultItemsComponent {
this.refreshItems();
}
- @Output() onEvent = new EventEmitter();
+ @Output() onEvent = new EventEmitter>();
- protected editableItems: VaultItem[] = [];
- protected dataSource = new TableDataSource();
- protected selection = new SelectionModel(true, [], true);
+ protected editableItems: VaultItem[] = [];
+ protected dataSource = new TableDataSource>();
+ protected selection = new SelectionModel>(true, [], true);
protected canDeleteSelected$: Observable;
protected canRestoreSelected$: Observable;
protected disableMenu$: Observable;
@@ -233,7 +236,7 @@ export class VaultItemsComponent {
: this.selection.select(...this.editableItems.slice(0, MaxSelectionCount));
}
- protected event(event: VaultItemEvent) {
+ protected event(event: VaultItemEvent) {
this.onEvent.emit(event);
}
@@ -263,7 +266,7 @@ export class VaultItemsComponent {
}
// TODO: PM-13944 Refactor to use cipherAuthorizationService.canClone$ instead
- protected canClone(vaultItem: VaultItem) {
+ protected canClone(vaultItem: VaultItem) {
if (vaultItem.cipher.organizationId == null) {
return true;
}
@@ -287,7 +290,7 @@ export class VaultItemsComponent {
return false;
}
- protected canEditCipher(cipher: CipherView) {
+ protected canEditCipher(cipher: C) {
if (cipher.organizationId == null) {
return true;
}
@@ -296,17 +299,17 @@ export class VaultItemsComponent {
return (organization.canEditAllCiphers && this.viewingOrgVault) || cipher.edit;
}
- protected canAssignCollections(cipher: CipherView) {
+ protected canAssignCollections(cipher: C) {
const organization = this.allOrganizations.find((o) => o.id === cipher.organizationId);
const editableCollections = this.allCollections.filter((c) => !c.readOnly);
return (
(organization?.canEditAllCiphers && this.viewingOrgVault) ||
- (cipher.canAssignToCollections && editableCollections.length > 0)
+ (CipherViewLikeUtils.canAssignToCollections(cipher) && editableCollections.length > 0)
);
}
- protected canManageCollection(cipher: CipherView) {
+ protected canManageCollection(cipher: C) {
// If the cipher is not part of an organization (personal item), user can manage it
if (cipher.organizationId == null) {
return true;
@@ -338,9 +341,11 @@ export class VaultItemsComponent {
}
private refreshItems() {
- const collections: VaultItem[] = this.collections.map((collection) => ({ collection }));
- const ciphers: VaultItem[] = this.ciphers.map((cipher) => ({ cipher }));
- const items: VaultItem[] = [].concat(collections).concat(ciphers);
+ const collections: VaultItem[] = this.collections.map((collection) => ({ collection }));
+ const ciphers: VaultItem[] = this.ciphers.map((cipher) => ({
+ cipher,
+ }));
+ const items: VaultItem[] = [].concat(collections).concat(ciphers);
// All ciphers are selectable, collections only if they can be edited or deleted
this.editableItems = items.filter(
@@ -419,7 +424,7 @@ export class VaultItemsComponent {
/**
* Sorts VaultItems, grouping collections before ciphers, and sorting each group alphabetically by name.
*/
- protected sortByName = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
+ protected sortByName = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
// Collections before ciphers
const collectionCompare = this.prioritizeCollections(a, b, direction);
if (collectionCompare !== 0) {
@@ -432,7 +437,7 @@ export class VaultItemsComponent {
/**
* Sorts VaultItems based on group names
*/
- protected sortByGroups = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
+ protected sortByGroups = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
if (
!(a.collection instanceof CollectionAdminView) &&
!(b.collection instanceof CollectionAdminView)
@@ -473,8 +478,8 @@ export class VaultItemsComponent {
* Sorts VaultItems based on their permissions, with higher permissions taking precedence.
* If permissions are equal, it falls back to sorting by name.
*/
- protected sortByPermissions = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
- const getPermissionPriority = (item: VaultItem): number => {
+ protected sortByPermissions = (a: VaultItem, b: VaultItem, direction: SortDirection) => {
+ const getPermissionPriority = (item: VaultItem): number => {
const permission = item.collection
? this.getCollectionPermission(item.collection)
: this.getCipherPermission(item.cipher);
@@ -508,8 +513,8 @@ export class VaultItemsComponent {
return this.compareNames(a, b);
};
- private compareNames(a: VaultItem, b: VaultItem): number {
- const getName = (item: VaultItem) => item.collection?.name || item.cipher?.name;
+ private compareNames(a: VaultItem, b: VaultItem): number {
+ const getName = (item: VaultItem) => item.collection?.name || item.cipher?.name;
return getName(a)?.localeCompare(getName(b)) ?? -1;
}
@@ -517,7 +522,11 @@ export class VaultItemsComponent {
* Sorts VaultItems by prioritizing collections over ciphers.
* Collections are always placed before ciphers, regardless of the sorting direction.
*/
- private prioritizeCollections(a: VaultItem, b: VaultItem, direction: SortDirection): number {
+ private prioritizeCollections(
+ a: VaultItem,
+ b: VaultItem,
+ direction: SortDirection,
+ ): number {
if (a.collection && !b.collection) {
return direction === "asc" ? -1 : 1;
}
@@ -561,7 +570,7 @@ export class VaultItemsComponent {
return "NoAccess";
}
- private getCipherPermission(cipher: CipherView): ItemPermission {
+ private getCipherPermission(cipher: C): ItemPermission {
if (!cipher.organizationId || cipher.collectionIds.length === 0) {
return CollectionPermission.Manage;
}
diff --git a/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts b/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
index e65d423a57b..785c07fb634 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
@@ -36,6 +36,7 @@ import { LoginUriView } from "@bitwarden/common/vault/models/view/login-uri.view
import { LoginView } from "@bitwarden/common/vault/models/view/login.view";
import { CipherAuthorizationService } from "@bitwarden/common/vault/services/cipher-authorization.service";
import { RestrictedItemTypesService } from "@bitwarden/common/vault/services/restricted-item-types.service";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { LayoutComponent } from "@bitwarden/components";
import { GroupView } from "../../../admin-console/organizations/core";
@@ -158,7 +159,7 @@ export default {
argTypes: { onEvent: { action: "onEvent" } },
} as Meta;
-type Story = StoryObj;
+type Story = StoryObj>;
export const Individual: Story = {
args: {
diff --git a/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.spec.ts b/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.spec.ts
index 2154ecff1b7..93189f2bf1c 100644
--- a/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.spec.ts
+++ b/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.spec.ts
@@ -85,7 +85,7 @@ describe("vault filter service", () => {
policyService.policyAppliesToUser$
.calledWith(PolicyType.SingleOrg, mockUserId)
.mockReturnValue(singleOrgPolicy);
- cipherService.cipherViews$.mockReturnValue(cipherViews);
+ cipherService.cipherListViews$.mockReturnValue(cipherViews);
vaultFilterService = new VaultFilterService(
organizationService,
diff --git a/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.ts b/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.ts
index f326034e806..1fe618c6c4e 100644
--- a/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.ts
+++ b/apps/web/src/app/vault/individual-vault/vault-filter/services/vault-filter.service.ts
@@ -38,6 +38,7 @@ import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { FolderView } from "@bitwarden/common/vault/models/view/folder.view";
import { ServiceUtils } from "@bitwarden/common/vault/service-utils";
import { COLLAPSED_GROUPINGS } from "@bitwarden/common/vault/services/key-state/collapsed-groupings.state";
+import { CipherListView } from "@bitwarden/sdk-internal";
import {
CipherTypeFilter,
@@ -85,7 +86,7 @@ export class VaultFilterService implements VaultFilterServiceAbstraction {
switchMap((userId) =>
combineLatest([
this.folderService.folderViews$(userId),
- this.cipherService.cipherViews$(userId),
+ this.cipherService.cipherListViews$(userId),
this._organizationFilter,
]),
),
@@ -280,7 +281,7 @@ export class VaultFilterService implements VaultFilterServiceAbstraction {
protected async filterFolders(
storedFolders: FolderView[],
- ciphers: CipherView[],
+ ciphers: CipherView[] | CipherListView[],
org?: Organization,
): Promise {
// If no org or "My Vault" is selected, show all folders
diff --git a/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.spec.ts b/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.spec.ts
index 3082d7cb809..00c540f6029 100644
--- a/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.spec.ts
+++ b/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.spec.ts
@@ -221,7 +221,7 @@ function createCipher(options: Partial = {}) {
cipher.favorite = options.favorite ?? false;
cipher.deletedDate = options.deletedDate;
- cipher.type = options.type;
+ cipher.type = options.type ?? CipherType.Login;
cipher.folderId = options.folderId;
cipher.collectionIds = options.collectionIds;
cipher.organizationId = options.organizationId;
diff --git a/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.ts b/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.ts
index a39918df4a7..1ed2e481fb8 100644
--- a/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.ts
+++ b/apps/web/src/app/vault/individual-vault/vault-filter/shared/models/filter-function.ts
@@ -1,40 +1,46 @@
import { Unassigned } from "@bitwarden/admin-console/common";
import { CipherType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { All, RoutedVaultFilterModel } from "./routed-vault-filter.model";
-export type FilterFunction = (cipher: CipherView) => boolean;
+export type FilterFunction = (cipher: CipherViewLike) => boolean;
export function createFilterFunction(filter: RoutedVaultFilterModel): FilterFunction {
return (cipher) => {
+ const type = CipherViewLikeUtils.getType(cipher);
+ const isDeleted = CipherViewLikeUtils.isDeleted(cipher);
+
if (filter.type === "favorites" && !cipher.favorite) {
return false;
}
- if (filter.type === "card" && cipher.type !== CipherType.Card) {
+ if (filter.type === "card" && type !== CipherType.Card) {
return false;
}
- if (filter.type === "identity" && cipher.type !== CipherType.Identity) {
+ if (filter.type === "identity" && type !== CipherType.Identity) {
return false;
}
- if (filter.type === "login" && cipher.type !== CipherType.Login) {
+ if (filter.type === "login" && type !== CipherType.Login) {
return false;
}
- if (filter.type === "note" && cipher.type !== CipherType.SecureNote) {
+ if (filter.type === "note" && type !== CipherType.SecureNote) {
return false;
}
- if (filter.type === "sshKey" && cipher.type !== CipherType.SshKey) {
+ if (filter.type === "sshKey" && type !== CipherType.SshKey) {
return false;
}
- if (filter.type === "trash" && !cipher.isDeleted) {
+ if (filter.type === "trash" && !isDeleted) {
return false;
}
// Hide trash unless explicitly selected
- if (filter.type !== "trash" && cipher.isDeleted) {
+ if (filter.type !== "trash" && isDeleted) {
return false;
}
// No folder
- if (filter.folderId === Unassigned && cipher.folderId !== null) {
+ if (filter.folderId === Unassigned && cipher.folderId != null) {
return false;
}
// Folder
diff --git a/apps/web/src/app/vault/individual-vault/vault-onboarding/vault-onboarding.component.ts b/apps/web/src/app/vault/individual-vault/vault-onboarding/vault-onboarding.component.ts
index b4eda51435f..8dc442abe2e 100644
--- a/apps/web/src/app/vault/individual-vault/vault-onboarding/vault-onboarding.component.ts
+++ b/apps/web/src/app/vault/individual-vault/vault-onboarding/vault-onboarding.component.ts
@@ -24,7 +24,7 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl
import { UserId } from "@bitwarden/common/types/guid";
import { CipherType } from "@bitwarden/common/vault/enums/cipher-type";
import { VaultMessages } from "@bitwarden/common/vault/enums/vault-messages.enum";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { LinkModule } from "@bitwarden/components";
import { OnboardingModule } from "../../../shared/components/onboarding/onboarding.module";
@@ -44,7 +44,7 @@ import { VaultOnboardingService, VaultOnboardingTasks } from "./services/vault-o
templateUrl: "vault-onboarding.component.html",
})
export class VaultOnboardingComponent implements OnInit, OnChanges, OnDestroy {
- @Input() ciphers: CipherView[];
+ @Input() ciphers: CipherViewLike[];
@Input() orgs: Organization[];
@Output() onAddCipher = new EventEmitter();
diff --git a/apps/web/src/app/vault/individual-vault/vault.component.ts b/apps/web/src/app/vault/individual-vault/vault.component.ts
index 380e0280b5a..c8c2f681bb4 100644
--- a/apps/web/src/app/vault/individual-vault/vault.component.ts
+++ b/apps/web/src/app/vault/individual-vault/vault.component.ts
@@ -67,8 +67,13 @@ import { TreeNode } from "@bitwarden/common/vault/models/domain/tree-node";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { ServiceUtils } from "@bitwarden/common/vault/service-utils";
import { RestrictedItemTypesService } from "@bitwarden/common/vault/services/restricted-item-types.service";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { filterOutNullish } from "@bitwarden/common/vault/utils/observable-utilities";
import { DialogRef, DialogService, Icons, ToastService } from "@bitwarden/components";
+import { CipherListView } from "@bitwarden/sdk-internal";
import {
AddEditFolderDialogComponent,
AddEditFolderDialogResult,
@@ -149,7 +154,7 @@ const SearchTextDebounceInterval = 200;
DefaultCipherFormConfigService,
],
})
-export class VaultComponent implements OnInit, OnDestroy {
+export class VaultComponent implements OnInit, OnDestroy {
@ViewChild("vaultFilter", { static: true }) filterComponent: VaultFilterComponent;
trashCleanupWarning: string = null;
@@ -165,7 +170,7 @@ export class VaultComponent implements OnInit, OnDestroy {
protected canAccessPremium: boolean;
protected allCollections: CollectionView[];
protected allOrganizations: Organization[] = [];
- protected ciphers: CipherView[];
+ protected ciphers: C[];
protected collections: CollectionView[];
protected isEmpty: boolean;
protected selectedCollection: TreeNode | undefined;
@@ -350,11 +355,15 @@ export class VaultComponent implements OnInit, OnDestroy {
this.currentSearchText$ = this.route.queryParams.pipe(map((queryParams) => queryParams.search));
+ const _ciphers = this.cipherService
+ .cipherListViews$(activeUserId)
+ .pipe(filter((c) => c !== null));
+
/**
* This observable filters the ciphers based on the active user ID and the restricted item types.
*/
const allowedCiphers$ = combineLatest([
- this.cipherService.cipherViews$(activeUserId).pipe(filter((c) => c !== null)),
+ _ciphers,
this.restrictedItemTypesService.restricted$,
]).pipe(
map(([ciphers, restrictedTypes]) =>
@@ -374,15 +383,15 @@ export class VaultComponent implements OnInit, OnDestroy {
const allCiphers = [...failedCiphers, ...ciphers];
if (await this.searchService.isSearchable(activeUserId, searchText)) {
- return await this.searchService.searchCiphers(
+ return await this.searchService.searchCiphers(
activeUserId,
searchText,
[filterFunction],
- allCiphers,
+ allCiphers as C[],
);
}
- return allCiphers.filter(filterFunction);
+ return ciphers.filter(filterFunction) as C[];
}),
shareReplay({ refCount: true, bufferSize: 1 }),
);
@@ -566,7 +575,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.vaultFilterService.clearOrganizationFilter();
}
- async onVaultItemsEvent(event: VaultItemEvent) {
+ async onVaultItemsEvent(event: VaultItemEvent) {
this.processingEvent = true;
try {
switch (event.type) {
@@ -654,7 +663,7 @@ export class VaultComponent implements OnInit, OnDestroy {
* @param cipher
* @returns
*/
- async editCipherAttachments(cipher: CipherView) {
+ async editCipherAttachments(cipher: C) {
if (cipher?.reprompt !== 0 && !(await this.passwordRepromptService.showPasswordPrompt())) {
await this.go({ cipherId: null, itemId: null });
return;
@@ -761,7 +770,7 @@ export class VaultComponent implements OnInit, OnDestroy {
await this.openVaultItemDialog("form", cipherFormConfig);
}
- async editCipher(cipher: CipherView, cloneMode?: boolean) {
+ async editCipher(cipher: CipherView | CipherListView, cloneMode?: boolean) {
return this.editCipherId(cipher?.id, cloneMode);
}
@@ -929,7 +938,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async bulkAssignToCollections(ciphers: CipherView[]) {
+ async bulkAssignToCollections(ciphers: C[]) {
if (!(await this.repromptCipher(ciphers))) {
return;
}
@@ -955,9 +964,28 @@ export class VaultComponent implements OnInit, OnDestroy {
);
}
+ let ciphersToAssign: CipherView[];
+
+ // Convert `CipherListView` to `CipherView` if necessary
+ if (ciphers.some(CipherViewLikeUtils.isCipherListView)) {
+ const userId = await firstValueFrom(this.accountService.activeAccount$.pipe(getUserId));
+ ciphersToAssign = await firstValueFrom(
+ this.cipherService
+ .cipherViews$(userId)
+ .pipe(
+ map(
+ (cipherViews) =>
+ cipherViews.filter((c) => ciphers.some((cc) => cc.id === c.id)) as CipherView[],
+ ),
+ ),
+ );
+ } else {
+ ciphersToAssign = ciphers as CipherView[];
+ }
+
const dialog = AssignCollectionsWebComponent.open(this.dialogService, {
data: {
- ciphers,
+ ciphers: ciphersToAssign,
organizationId: orgId as OrganizationId,
availableCollections,
activeCollection: this.activeFilter?.selectedCollectionNode?.node,
@@ -970,8 +998,8 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async cloneCipher(cipher: CipherView) {
- if (cipher.login?.hasFido2Credentials) {
+ async cloneCipher(cipher: CipherView | CipherListView) {
+ if (CipherViewLikeUtils.hasFido2Credentials(cipher)) {
const confirmed = await this.dialogService.openSimpleDialog({
title: { key: "passkeyNotCopied" },
content: { key: "passkeyNotCopiedAlert" },
@@ -986,8 +1014,8 @@ export class VaultComponent implements OnInit, OnDestroy {
await this.editCipher(cipher, true);
}
- restore = async (c: CipherView): Promise => {
- if (!c.isDeleted) {
+ restore = async (c: C): Promise => {
+ if (!CipherViewLikeUtils.isDeleted(c)) {
return;
}
@@ -1014,7 +1042,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
};
- async bulkRestore(ciphers: CipherView[]) {
+ async bulkRestore(ciphers: C[]) {
if (ciphers.some((c) => !c.edit)) {
this.showMissingPermissionsError();
return;
@@ -1044,8 +1072,8 @@ export class VaultComponent implements OnInit, OnDestroy {
this.refresh();
}
- private async handleDeleteEvent(items: VaultItem[]) {
- const ciphers = items.filter((i) => i.collection === undefined).map((i) => i.cipher);
+ private async handleDeleteEvent(items: VaultItem[]) {
+ const ciphers: C[] = items.filter((i) => i.collection === undefined).map((i) => i.cipher);
const collections = items.filter((i) => i.cipher === undefined).map((i) => i.collection);
if (ciphers.length === 1 && collections.length === 0) {
await this.deleteCipher(ciphers[0]);
@@ -1062,7 +1090,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async deleteCipher(c: CipherView): Promise {
+ async deleteCipher(c: C): Promise {
if (!(await this.repromptCipher([c]))) {
return;
}
@@ -1072,7 +1100,7 @@ export class VaultComponent implements OnInit, OnDestroy {
return;
}
- const permanent = c.isDeleted;
+ const permanent = CipherViewLikeUtils.isDeleted(c);
const confirmed = await this.dialogService.openSimpleDialog({
title: { key: permanent ? "permanentlyDeleteItem" : "deleteItem" },
@@ -1099,11 +1127,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async bulkDelete(
- ciphers: CipherView[],
- collections: CollectionView[],
- organizations: Organization[],
- ) {
+ async bulkDelete(ciphers: C[], collections: CollectionView[], organizations: Organization[]) {
if (!(await this.repromptCipher(ciphers))) {
return;
}
@@ -1142,7 +1166,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async bulkMove(ciphers: CipherView[]) {
+ async bulkMove(ciphers: C[]) {
if (!(await this.repromptCipher(ciphers))) {
return;
}
@@ -1167,22 +1191,32 @@ export class VaultComponent implements OnInit, OnDestroy {
}
}
- async copy(cipher: CipherView, field: "username" | "password" | "totp") {
+ async copy(cipher: C, field: "username" | "password" | "totp") {
let aType;
let value;
let typeI18nKey;
+ const login = CipherViewLikeUtils.getLogin(cipher);
+
+ if (!login) {
+ this.toastService.showToast({
+ variant: "error",
+ title: null,
+ message: this.i18nService.t("unexpectedError"),
+ });
+ }
+
if (field === "username") {
aType = "Username";
- value = cipher.login.username;
+ value = login.username;
typeI18nKey = "username";
} else if (field === "password") {
aType = "Password";
- value = cipher.login.password;
+ value = await this.getPasswordFromCipherViewLike(cipher);
typeI18nKey = "password";
} else if (field === "totp") {
aType = "TOTP";
- const totpResponse = await firstValueFrom(this.totpService.getCode$(cipher.login.totp));
+ const totpResponse = await firstValueFrom(this.totpService.getCode$(login.totp));
value = totpResponse.code;
typeI18nKey = "verificationCodeTotp";
} else {
@@ -1228,7 +1262,7 @@ export class VaultComponent implements OnInit, OnDestroy {
: this.cipherService.softDeleteWithServer(id, userId);
}
- protected async repromptCipher(ciphers: CipherView[]) {
+ protected async repromptCipher(ciphers: C[]) {
const notProtected = !ciphers.find((cipher) => cipher.reprompt !== CipherRepromptType.None);
return notProtected || (await this.passwordRepromptService.showPasswordPrompt());
@@ -1264,6 +1298,21 @@ export class VaultComponent implements OnInit, OnDestroy {
message: this.i18nService.t("missingPermissions"),
});
}
+
+ /**
+ * Returns the password for a `CipherViewLike` object.
+ * `CipherListView` does not contain the password, the full `CipherView` needs to be fetched.
+ */
+ private async getPasswordFromCipherViewLike(cipher: C): Promise {
+ if (!CipherViewLikeUtils.isCipherListView(cipher)) {
+ return Promise.resolve(cipher.login?.password);
+ }
+
+ const activeUserId = await firstValueFrom(this.accountService.activeAccount$.pipe(getUserId));
+ const _cipher = await this.cipherService.get(cipher.id, activeUserId);
+ const cipherView = await this.cipherService.decrypt(_cipher, activeUserId);
+ return cipherView.login?.password;
+ }
}
/**
diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json
index 475fb004033..4c4a97e6404 100644
--- a/apps/web/src/locales/en/messages.json
+++ b/apps/web/src/locales/en/messages.json
@@ -864,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
diff --git a/libs/angular/src/vault/components/icon.component.ts b/libs/angular/src/vault/components/icon.component.ts
index fd178db23b6..0718b6fc76c 100644
--- a/libs/angular/src/vault/components/icon.component.ts
+++ b/libs/angular/src/vault/components/icon.component.ts
@@ -13,7 +13,7 @@ import {
import { DomainSettingsService } from "@bitwarden/common/autofill/services/domain-settings.service";
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
import { buildCipherIcon, CipherIconDetails } from "@bitwarden/common/vault/icon/build-cipher-icon";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
@Component({
selector: "app-vault-icon",
@@ -25,7 +25,7 @@ export class IconComponent {
/**
* The cipher to display the icon for.
*/
- cipher = input.required();
+ cipher = input.required();
imageLoaded = signal(false);
diff --git a/libs/angular/src/vault/components/vault-items.component.ts b/libs/angular/src/vault/components/vault-items.component.ts
index cf017899774..75ca5608208 100644
--- a/libs/angular/src/vault/components/vault-items.component.ts
+++ b/libs/angular/src/vault/components/vault-items.component.ts
@@ -21,20 +21,23 @@ import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { SearchService } from "@bitwarden/common/vault/abstractions/search.service";
import { CipherType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { RestrictedItemTypesService } from "@bitwarden/common/vault/services/restricted-item-types.service";
import { CIPHER_MENU_ITEMS } from "@bitwarden/common/vault/types/cipher-menu-items";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
@Directive()
-export class VaultItemsComponent implements OnInit, OnDestroy {
+export class VaultItemsComponent implements OnInit, OnDestroy {
@Input() activeCipherId: string = null;
- @Output() onCipherClicked = new EventEmitter();
- @Output() onCipherRightClicked = new EventEmitter();
+ @Output() onCipherClicked = new EventEmitter();
+ @Output() onCipherRightClicked = new EventEmitter();
@Output() onAddCipher = new EventEmitter();
@Output() onAddCipherOptions = new EventEmitter();
loaded = false;
- ciphers: CipherView[] = [];
+ ciphers: C[] = [];
deleted = false;
organization: Organization;
CipherType = CipherType;
@@ -55,7 +58,7 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
protected searchPending = false;
/** Construct filters as an observable so it can be appended to the cipher stream. */
- private _filter$ = new BehaviorSubject<(cipher: CipherView) => boolean | null>(null);
+ private _filter$ = new BehaviorSubject<(cipher: C) => boolean | null>(null);
private destroy$ = new Subject();
private isSearchable: boolean = false;
private _searchText$ = new BehaviorSubject("");
@@ -71,7 +74,7 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
return this._filter$.value;
}
- set filter(value: (cipher: CipherView) => boolean | null) {
+ set filter(value: (cipher: C) => boolean | null) {
this._filter$.next(value);
}
@@ -102,13 +105,13 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
this.destroy$.complete();
}
- async load(filter: (cipher: CipherView) => boolean = null, deleted = false) {
+ async load(filter: (cipher: C) => boolean = null, deleted = false) {
this.deleted = deleted ?? false;
await this.applyFilter(filter);
this.loaded = true;
}
- async reload(filter: (cipher: CipherView) => boolean = null, deleted = false) {
+ async reload(filter: (cipher: C) => boolean = null, deleted = false) {
this.loaded = false;
await this.load(filter, deleted);
}
@@ -117,15 +120,15 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
await this.reload(this.filter, this.deleted);
}
- async applyFilter(filter: (cipher: CipherView) => boolean = null) {
+ async applyFilter(filter: (cipher: C) => boolean = null) {
this.filter = filter;
}
- selectCipher(cipher: CipherView) {
+ selectCipher(cipher: C) {
this.onCipherClicked.emit(cipher);
}
- rightClickCipher(cipher: CipherView) {
+ rightClickCipher(cipher: C) {
this.onCipherRightClicked.emit(cipher);
}
@@ -141,7 +144,8 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
return !this.searchPending && this.isSearchable;
}
- protected deletedFilter: (cipher: CipherView) => boolean = (c) => c.isDeleted === this.deleted;
+ protected deletedFilter: (cipher: C) => boolean = (c) =>
+ CipherViewLikeUtils.isDeleted(c) === this.deleted;
/**
* Creates stream of dependencies that results in the list of ciphers to display
@@ -156,7 +160,7 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
.pipe(
switchMap((userId) =>
combineLatest([
- this.cipherService.cipherViews$(userId).pipe(filter((ciphers) => ciphers != null)),
+ this.cipherService.cipherListViews$(userId).pipe(filter((ciphers) => ciphers != null)),
this.cipherService.failedToDecryptCiphers$(userId),
this._searchText$,
this._filter$,
@@ -165,12 +169,12 @@ export class VaultItemsComponent implements OnInit, OnDestroy {
]),
),
switchMap(([indexedCiphers, failedCiphers, searchText, filter, userId, restricted]) => {
- let allCiphers = indexedCiphers ?? [];
+ let allCiphers = (indexedCiphers ?? []) as C[];
const _failedCiphers = failedCiphers ?? [];
- allCiphers = [..._failedCiphers, ...allCiphers];
+ allCiphers = [..._failedCiphers, ...allCiphers] as C[];
- const restrictedTypeFilter = (cipher: CipherView) =>
+ const restrictedTypeFilter = (cipher: CipherViewLike) =>
!this.restrictedItemTypesService.isCipherRestricted(cipher, restricted);
return this.searchService.searchCiphers(
diff --git a/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts b/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
index 3122bdac2e0..8302ff541aa 100644
--- a/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
+++ b/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
@@ -25,7 +25,7 @@ export class EmptyVaultNudgeService extends DefaultSingleNudgeService {
nudgeStatus$(nudgeType: NudgeType, userId: UserId): Observable {
return combineLatest([
this.getNudgeStatus$(nudgeType, userId),
- this.cipherService.cipherViews$(userId),
+ this.cipherService.cipherListViews$(userId),
this.organizationService.organizations$(userId),
this.collectionService.decryptedCollections$,
]).pipe(
diff --git a/libs/angular/src/vault/vault-filter/models/vault-filter.model.ts b/libs/angular/src/vault/vault-filter/models/vault-filter.model.ts
index 8f63c31d87a..fa383dd28da 100644
--- a/libs/angular/src/vault/vault-filter/models/vault-filter.model.ts
+++ b/libs/angular/src/vault/vault-filter/models/vault-filter.model.ts
@@ -1,11 +1,14 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { CipherType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { CipherStatus } from "./cipher-status.model";
-export type VaultFilterFunction = (cipher: CipherView) => boolean;
+export type VaultFilterFunction = (cipher: CipherViewLike) => boolean;
export class VaultFilter {
cipherType?: CipherType;
@@ -44,10 +47,10 @@ export class VaultFilter {
cipherPassesFilter = cipher.favorite;
}
if (this.status === "trash" && cipherPassesFilter) {
- cipherPassesFilter = cipher.isDeleted;
+ cipherPassesFilter = CipherViewLikeUtils.isDeleted(cipher);
}
if (this.cipherType != null && cipherPassesFilter) {
- cipherPassesFilter = cipher.type === this.cipherType;
+ cipherPassesFilter = CipherViewLikeUtils.getType(cipher) === this.cipherType;
}
if (this.selectedFolder && this.selectedFolderId == null && cipherPassesFilter) {
cipherPassesFilter = cipher.folderId == null;
@@ -68,7 +71,7 @@ export class VaultFilter {
cipherPassesFilter = cipher.organizationId === this.selectedOrganizationId;
}
if (this.myVaultOnly && cipherPassesFilter) {
- cipherPassesFilter = cipher.organizationId === null;
+ cipherPassesFilter = cipher.organizationId == null;
}
return cipherPassesFilter;
};
diff --git a/libs/common/src/enums/feature-flag.enum.ts b/libs/common/src/enums/feature-flag.enum.ts
index da14f7dada3..1af2ab1f0a9 100644
--- a/libs/common/src/enums/feature-flag.enum.ts
+++ b/libs/common/src/enums/feature-flag.enum.ts
@@ -53,6 +53,7 @@ export enum FeatureFlag {
PM8851_BrowserOnboardingNudge = "pm-8851-browser-onboarding-nudge",
PM9111ExtensionPersistAddEditForm = "pm-9111-extension-persist-add-edit-form",
PM19941MigrateCipherDomainToSdk = "pm-19941-migrate-cipher-domain-to-sdk",
+ PM22134SdkCipherListView = "pm-22134-sdk-cipher-list-view",
CipherKeyEncryption = "cipher-key-encryption",
EndUserNotifications = "pm-10609-end-user-notifications",
RemoveCardItemTypePolicy = "pm-16442-remove-card-item-type-policy",
@@ -100,6 +101,7 @@ export const DefaultFeatureFlagValue = {
[FeatureFlag.EndUserNotifications]: FALSE,
[FeatureFlag.PM19941MigrateCipherDomainToSdk]: FALSE,
[FeatureFlag.RemoveCardItemTypePolicy]: FALSE,
+ [FeatureFlag.PM22134SdkCipherListView]: FALSE,
[FeatureFlag.PM19315EndUserActivationMvp]: FALSE,
/* Auth */
diff --git a/libs/common/src/vault/abstractions/cipher.service.ts b/libs/common/src/vault/abstractions/cipher.service.ts
index 9f5c173826e..d1d686a66af 100644
--- a/libs/common/src/vault/abstractions/cipher.service.ts
+++ b/libs/common/src/vault/abstractions/cipher.service.ts
@@ -5,6 +5,7 @@ import { Observable } from "rxjs";
// This import has been flagged as unallowed for this class. It may be involved in a circular dependency loop.
// eslint-disable-next-line no-restricted-imports
import { UserKeyRotationDataProvider } from "@bitwarden/key-management";
+import { CipherListView } from "@bitwarden/sdk-internal";
import { UriMatchStrategySetting } from "../../models/domain/domain-service";
import { SymmetricCryptoKey } from "../../platform/models/domain/symmetric-crypto-key";
@@ -20,6 +21,7 @@ import { AttachmentView } from "../models/view/attachment.view";
import { CipherView } from "../models/view/cipher.view";
import { FieldView } from "../models/view/field.view";
import { AddEditCipherInfo } from "../types/add-edit-cipher-info";
+import { CipherViewLike } from "../utils/cipher-view-like-utils";
export type EncryptionContext = {
cipher: Cipher;
@@ -29,6 +31,7 @@ export type EncryptionContext = {
export abstract class CipherService implements UserKeyRotationDataProvider {
abstract cipherViews$(userId: UserId): Observable;
+ abstract cipherListViews$(userId: UserId): Observable;
abstract ciphers$(userId: UserId): Observable>;
abstract localData$(userId: UserId): Observable>;
/**
@@ -65,12 +68,12 @@ export abstract class CipherService implements UserKeyRotationDataProvider;
- abstract filterCiphersForUrl(
- ciphers: CipherView[],
+ abstract filterCiphersForUrl(
+ ciphers: C[],
url: string,
includeOtherTypes?: CipherType[],
defaultMatch?: UriMatchStrategySetting,
- ): Promise;
+ ): Promise;
abstract getAllFromApiForOrganization(organizationId: string): Promise;
/**
* Gets ciphers belonging to the specified organization that the user has explicit collection level access to.
@@ -198,9 +201,9 @@ export abstract class CipherService implements UserKeyRotationDataProvider;
- abstract sortCiphersByLastUsed(a: CipherView, b: CipherView): number;
- abstract sortCiphersByLastUsedThenName(a: CipherView, b: CipherView): number;
- abstract getLocaleSortingFunction(): (a: CipherView, b: CipherView) => number;
+ abstract sortCiphersByLastUsed(a: CipherViewLike, b: CipherViewLike): number;
+ abstract sortCiphersByLastUsedThenName(a: CipherViewLike, b: CipherViewLike): number;
+ abstract getLocaleSortingFunction(): (a: CipherViewLike, b: CipherViewLike) => number;
abstract softDelete(id: string | string[], userId: UserId): Promise;
abstract softDeleteWithServer(id: string, userId: UserId, asAdmin?: boolean): Promise;
abstract softDeleteManyWithServer(ids: string[], userId: UserId, asAdmin?: boolean): Promise;
@@ -251,4 +254,10 @@ export abstract class CipherService implements UserKeyRotationDataProvider;
+
+ /**
+ * Decrypts the full `CipherView` for a given `CipherViewLike`.
+ * When a `CipherView` instance is passed, it returns it as is.
+ */
+ abstract getFullCipherView(c: CipherViewLike): Promise;
}
diff --git a/libs/common/src/vault/abstractions/search.service.ts b/libs/common/src/vault/abstractions/search.service.ts
index c981aa748a4..ed8bb2c3baf 100644
--- a/libs/common/src/vault/abstractions/search.service.ts
+++ b/libs/common/src/vault/abstractions/search.service.ts
@@ -5,6 +5,7 @@ import { Observable } from "rxjs";
import { SendView } from "../../tools/send/models/view/send.view";
import { IndexedEntityId, UserId } from "../../types/guid";
import { CipherView } from "../models/view/cipher.view";
+import { CipherViewLike } from "../utils/cipher-view-like-utils";
export abstract class SearchService {
indexedEntityId$: (userId: UserId) => Observable;
@@ -16,12 +17,16 @@ export abstract class SearchService {
ciphersToIndex: CipherView[],
indexedEntityGuid?: string,
) => Promise;
- searchCiphers: (
+ searchCiphers: (
userId: UserId,
query: string,
- filter?: ((cipher: CipherView) => boolean) | ((cipher: CipherView) => boolean)[],
- ciphers?: CipherView[],
- ) => Promise;
- searchCiphersBasic: (ciphers: CipherView[], query: string, deleted?: boolean) => CipherView[];
+ filter?: ((cipher: C) => boolean) | ((cipher: C) => boolean)[],
+ ciphers?: C[],
+ ) => Promise;
+ searchCiphersBasic: (
+ ciphers: C[],
+ query: string,
+ deleted?: boolean,
+ ) => C[];
searchSends: (sends: SendView[], query: string) => SendView[];
}
diff --git a/libs/common/src/vault/icon/build-cipher-icon.ts b/libs/common/src/vault/icon/build-cipher-icon.ts
index b7456e1ae96..a081511d792 100644
--- a/libs/common/src/vault/icon/build-cipher-icon.ts
+++ b/libs/common/src/vault/icon/build-cipher-icon.ts
@@ -1,6 +1,6 @@
import { Utils } from "../../platform/misc/utils";
import { CipherType } from "../enums/cipher-type";
-import { CipherView } from "../models/view/cipher.view";
+import { CipherViewLike, CipherViewLikeUtils } from "../utils/cipher-view-like-utils";
export interface CipherIconDetails {
imageEnabled: boolean;
@@ -14,7 +14,7 @@ export interface CipherIconDetails {
export function buildCipherIcon(
iconsServerUrl: string | null,
- cipher: CipherView,
+ cipher: CipherViewLike,
showFavicon: boolean,
): CipherIconDetails {
let icon: string = "bwi-globe";
@@ -36,12 +36,16 @@ export function buildCipherIcon(
showFavicon = false;
}
- switch (cipher.type) {
+ const cipherType = CipherViewLikeUtils.getType(cipher);
+ const uri = CipherViewLikeUtils.uri(cipher);
+ const card = CipherViewLikeUtils.getCard(cipher);
+
+ switch (cipherType) {
case CipherType.Login:
icon = "bwi-globe";
- if (cipher.login.uri) {
- let hostnameUri = cipher.login.uri;
+ if (uri) {
+ let hostnameUri = uri;
let isWebsite = false;
if (hostnameUri.indexOf("androidapp://") === 0) {
@@ -84,8 +88,8 @@ export function buildCipherIcon(
break;
case CipherType.Card:
icon = "bwi-credit-card";
- if (showFavicon && cipher.card.brand in cardIcons) {
- icon = `credit-card-icon ${cardIcons[cipher.card.brand]}`;
+ if (showFavicon && card?.brand && card.brand in cardIcons) {
+ icon = `credit-card-icon ${cardIcons[card.brand]}`;
}
break;
case CipherType.Identity:
diff --git a/libs/common/src/vault/services/cipher-authorization.service.ts b/libs/common/src/vault/services/cipher-authorization.service.ts
index ab3676930b5..2933e94c302 100644
--- a/libs/common/src/vault/services/cipher-authorization.service.ts
+++ b/libs/common/src/vault/services/cipher-authorization.service.ts
@@ -8,13 +8,7 @@ import { AccountService } from "@bitwarden/common/auth/abstractions/account.serv
import { CollectionId } from "@bitwarden/common/types/guid";
import { getUserId } from "../../auth/services/account.service";
-import { Cipher } from "../models/domain/cipher";
-import { CipherView } from "../models/view/cipher.view";
-
-/**
- * Represents either a cipher or a cipher view.
- */
-type CipherLike = Cipher | CipherView;
+import { CipherLike } from "../types/cipher-like";
/**
* Service for managing user cipher authorization.
@@ -95,7 +89,7 @@ export class DefaultCipherAuthorizationService implements CipherAuthorizationSer
}
}
- return cipher.permissions.delete;
+ return !!cipher.permissions?.delete;
}),
);
}
@@ -118,7 +112,7 @@ export class DefaultCipherAuthorizationService implements CipherAuthorizationSer
}
}
- return cipher.permissions.restore;
+ return !!cipher.permissions?.restore;
}),
);
}
diff --git a/libs/common/src/vault/services/cipher.service.ts b/libs/common/src/vault/services/cipher.service.ts
index c967f2614c8..8bef5289a95 100644
--- a/libs/common/src/vault/services/cipher.service.ts
+++ b/libs/common/src/vault/services/cipher.service.ts
@@ -71,6 +71,7 @@ import { CipherView } from "../models/view/cipher.view";
import { FieldView } from "../models/view/field.view";
import { PasswordHistoryView } from "../models/view/password-history.view";
import { AddEditCipherInfo } from "../types/add-edit-cipher-info";
+import { CipherViewLike, CipherViewLikeUtils } from "../utils/cipher-view-like-utils";
import {
ADD_EDIT_CIPHER_INFO_KEY,
@@ -123,6 +124,43 @@ export class CipherService implements CipherServiceAbstraction {
return this.encryptedCiphersState(userId).state$.pipe(map((ciphers) => ciphers ?? {}));
}
+ /**
+ * Observable that emits an array of decrypted ciphers for given userId.
+ * This observable will not emit until the encrypted ciphers have either been loaded from state or after sync.
+ *
+ * This uses the SDK for decryption, when the `PM22134SdkCipherListView` feature flag is disabled the full `cipherViews$` observable will be emitted.
+ * Usage of the {@link CipherViewLike} type is recommended to ensure both `CipherView` and `CipherListView` are supported.
+ */
+ cipherListViews$ = perUserCache$((userId: UserId) => {
+ return this.configService.getFeatureFlag$(FeatureFlag.PM22134SdkCipherListView).pipe(
+ switchMap((useSdk) => {
+ if (!useSdk) {
+ return this.cipherViews$(userId);
+ }
+
+ return combineLatest([
+ this.encryptedCiphersState(userId).state$,
+ this.localData$(userId),
+ this.keyService.cipherDecryptionKeys$(userId, true),
+ ]).pipe(
+ filter(([cipherDataState, _, keys]) => cipherDataState != null && keys != null),
+ map(([cipherDataState, localData]) =>
+ Object.values(cipherDataState).map(
+ (cipherData) => new Cipher(cipherData, localData?.[cipherData.id as CipherId]),
+ ),
+ ),
+ switchMap(async (ciphers) => {
+ // TODO: remove this once failed decrypted ciphers are handled in the SDK
+ await this.setFailedDecryptedCiphers([], userId);
+ return this.cipherEncryptionService
+ .decryptMany(ciphers, userId)
+ .then((ciphers) => ciphers.sort(this.getLocaleSortingFunction()));
+ }),
+ );
+ }),
+ );
+ });
+
/**
* Observable that emits an array of decrypted ciphers for the active user.
* This observable will not emit until the encrypted ciphers have either been loaded from state or after sync.
@@ -543,18 +581,23 @@ export class CipherService implements CipherServiceAbstraction {
filter((c) => c != null),
switchMap(
async (ciphers) =>
- await this.filterCiphersForUrl(ciphers, url, includeOtherTypes, defaultMatch),
+ await this.filterCiphersForUrl(
+ ciphers,
+ url,
+ includeOtherTypes,
+ defaultMatch,
+ ),
),
),
);
}
- async filterCiphersForUrl(
- ciphers: CipherView[],
+ async filterCiphersForUrl(
+ ciphers: C[],
url: string,
includeOtherTypes?: CipherType[],
defaultMatch: UriMatchStrategySetting = null,
- ): Promise {
+ ): Promise {
if (url == null && includeOtherTypes == null) {
return [];
}
@@ -565,22 +608,20 @@ export class CipherService implements CipherServiceAbstraction {
defaultMatch ??= await firstValueFrom(this.domainSettingsService.defaultUriMatchStrategy$);
return ciphers.filter((cipher) => {
- const cipherIsLogin = cipher.type === CipherType.Login && cipher.login !== null;
+ const type = CipherViewLikeUtils.getType(cipher);
+ const login = CipherViewLikeUtils.getLogin(cipher);
+ const cipherIsLogin = login !== null;
- if (cipher.deletedDate !== null) {
+ if (CipherViewLikeUtils.isDeleted(cipher)) {
return false;
}
- if (
- Array.isArray(includeOtherTypes) &&
- includeOtherTypes.includes(cipher.type) &&
- !cipherIsLogin
- ) {
+ if (Array.isArray(includeOtherTypes) && includeOtherTypes.includes(type) && !cipherIsLogin) {
return true;
}
if (cipherIsLogin) {
- return cipher.login.matchesUri(url, equivalentDomains, defaultMatch);
+ return CipherViewLikeUtils.matchesUri(cipher, url, equivalentDomains, defaultMatch);
}
return false;
@@ -1173,7 +1214,7 @@ export class CipherService implements CipherServiceAbstraction {
return await this.deleteAttachment(id, cipherData.revisionDate, attachmentId, userId);
}
- sortCiphersByLastUsed(a: CipherView, b: CipherView): number {
+ sortCiphersByLastUsed(a: CipherViewLike, b: CipherViewLike): number {
const aLastUsed =
a.localData && a.localData.lastUsedDate ? (a.localData.lastUsedDate as number) : null;
const bLastUsed =
@@ -1197,7 +1238,7 @@ export class CipherService implements CipherServiceAbstraction {
return 0;
}
- sortCiphersByLastUsedThenName(a: CipherView, b: CipherView): number {
+ sortCiphersByLastUsedThenName(a: CipherViewLike, b: CipherViewLike): number {
const result = this.sortCiphersByLastUsed(a, b);
if (result !== 0) {
return result;
@@ -1206,7 +1247,7 @@ export class CipherService implements CipherServiceAbstraction {
return this.getLocaleSortingFunction()(a, b);
}
- getLocaleSortingFunction(): (a: CipherView, b: CipherView) => number {
+ getLocaleSortingFunction(): (a: CipherViewLike, b: CipherViewLike) => number {
return (a, b) => {
let aName = a.name;
let bName = b.name;
@@ -1225,16 +1266,22 @@ export class CipherService implements CipherServiceAbstraction {
? this.i18nService.collator.compare(aName, bName)
: aName.localeCompare(bName);
- if (result !== 0 || a.type !== CipherType.Login || b.type !== CipherType.Login) {
+ const aType = CipherViewLikeUtils.getType(a);
+ const bType = CipherViewLikeUtils.getType(b);
+
+ if (result !== 0 || aType !== CipherType.Login || bType !== CipherType.Login) {
return result;
}
- if (a.login.username != null) {
- aName += a.login.username;
+ const aLogin = CipherViewLikeUtils.getLogin(a);
+ const bLogin = CipherViewLikeUtils.getLogin(b);
+
+ if (aLogin.username != null) {
+ aName += aLogin.username;
}
- if (b.login.username != null) {
- bName += b.login.username;
+ if (bLogin.username != null) {
+ bName += bLogin.username;
}
return this.i18nService.collator
@@ -1902,4 +1949,17 @@ export class CipherService implements CipherServiceAbstraction {
return decryptedViews.sort(this.getLocaleSortingFunction());
}
+
+ /** Fetches the full `CipherView` when a `CipherListView` is passed. */
+ async getFullCipherView(c: CipherViewLike): Promise {
+ if (CipherViewLikeUtils.isCipherListView(c)) {
+ const activeUserId = await firstValueFrom(
+ this.accountService.activeAccount$.pipe(map((a) => a?.id)),
+ );
+ const cipher = await this.get(c.id!, activeUserId);
+ return this.decrypt(cipher, activeUserId);
+ }
+
+ return Promise.resolve(c);
+ }
}
diff --git a/libs/common/src/vault/services/restricted-item-types.service.ts b/libs/common/src/vault/services/restricted-item-types.service.ts
index 6b848e6626b..8ccc94d365c 100644
--- a/libs/common/src/vault/services/restricted-item-types.service.ts
+++ b/libs/common/src/vault/services/restricted-item-types.service.ts
@@ -9,17 +9,15 @@ import { getUserId } from "@bitwarden/common/auth/services/account.service";
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
import { CipherType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
-import { Cipher } from "../models/domain/cipher";
+import { CipherLike } from "../types/cipher-like";
+import { CipherViewLikeUtils } from "../utils/cipher-view-like-utils";
export type RestrictedCipherType = {
cipherType: CipherType;
allowViewOrgIds: string[];
};
-type CipherLike = Cipher | CipherView;
-
export class RestrictedItemTypesService {
/**
* Emits an array of RestrictedCipherType objects:
@@ -94,7 +92,9 @@ export class RestrictedItemTypesService {
* - Otherwise → restricted
*/
isCipherRestricted(cipher: CipherLike, restrictedTypes: RestrictedCipherType[]): boolean {
- const restriction = restrictedTypes.find((r) => r.cipherType === cipher.type);
+ const restriction = restrictedTypes.find(
+ (r) => r.cipherType === CipherViewLikeUtils.getType(cipher),
+ );
// If cipher type is not restricted by any organization, allow it
if (!restriction) {
diff --git a/libs/common/src/vault/services/search.service.ts b/libs/common/src/vault/services/search.service.ts
index 8e54fa695bd..614fba4a7ca 100644
--- a/libs/common/src/vault/services/search.service.ts
+++ b/libs/common/src/vault/services/search.service.ts
@@ -19,6 +19,7 @@ import { SearchService as SearchServiceAbstraction } from "../abstractions/searc
import { FieldType } from "../enums";
import { CipherType } from "../enums/cipher-type";
import { CipherView } from "../models/view/cipher.view";
+import { CipherViewLike, CipherViewLikeUtils } from "../utils/cipher-view-like-utils";
export type SerializedLunrIndex = {
version: string;
@@ -197,13 +198,13 @@ export class SearchService implements SearchServiceAbstraction {
]);
}
- async searchCiphers(
+ async searchCiphers(
userId: UserId,
query: string,
- filter: ((cipher: CipherView) => boolean) | ((cipher: CipherView) => boolean)[] = null,
- ciphers: CipherView[],
- ): Promise {
- const results: CipherView[] = [];
+ filter: ((cipher: C) => boolean) | ((cipher: C) => boolean)[] = null,
+ ciphers: C[],
+ ): Promise {
+ const results: C[] = [];
if (query != null) {
query = SearchService.normalizeSearchQuery(query.trim().toLowerCase());
}
@@ -218,7 +219,7 @@ export class SearchService implements SearchServiceAbstraction {
if (filter != null && Array.isArray(filter) && filter.length > 0) {
ciphers = ciphers.filter((c) => filter.every((f) => f == null || f(c)));
} else if (filter != null) {
- ciphers = ciphers.filter(filter as (cipher: CipherView) => boolean);
+ ciphers = ciphers.filter(filter as (cipher: C) => boolean);
}
if (!(await this.isSearchable(userId, query))) {
@@ -238,7 +239,7 @@ export class SearchService implements SearchServiceAbstraction {
return this.searchCiphersBasic(ciphers, query);
}
- const ciphersMap = new Map();
+ const ciphersMap = new Map();
ciphers.forEach((c) => ciphersMap.set(c.id, c));
let searchResults: lunr.Index.Result[] = null;
@@ -272,10 +273,10 @@ export class SearchService implements SearchServiceAbstraction {
return results;
}
- searchCiphersBasic(ciphers: CipherView[], query: string, deleted = false) {
+ searchCiphersBasic(ciphers: C[], query: string, deleted = false) {
query = SearchService.normalizeSearchQuery(query.trim().toLowerCase());
return ciphers.filter((c) => {
- if (deleted !== c.isDeleted) {
+ if (deleted !== CipherViewLikeUtils.isDeleted(c)) {
return false;
}
if (c.name != null && c.name.toLowerCase().indexOf(query) > -1) {
@@ -284,13 +285,17 @@ export class SearchService implements SearchServiceAbstraction {
if (query.length >= 8 && c.id.startsWith(query)) {
return true;
}
- if (c.subTitle != null && c.subTitle.toLowerCase().indexOf(query) > -1) {
+ const subtitle = CipherViewLikeUtils.subtitle(c);
+ if (subtitle != null && subtitle.toLowerCase().indexOf(query) > -1) {
return true;
}
+
+ const login = CipherViewLikeUtils.getLogin(c);
+
if (
- c.login &&
- c.login.hasUris &&
- c.login.uris.some((loginUri) => loginUri?.uri?.toLowerCase().indexOf(query) > -1)
+ login &&
+ login.uris.length &&
+ login.uris.some((loginUri) => loginUri?.uri?.toLowerCase().indexOf(query) > -1)
) {
return true;
}
diff --git a/libs/common/src/vault/types/cipher-like.ts b/libs/common/src/vault/types/cipher-like.ts
new file mode 100644
index 00000000000..61fb4ef86a5
--- /dev/null
+++ b/libs/common/src/vault/types/cipher-like.ts
@@ -0,0 +1,9 @@
+import { Cipher } from "../models/domain/cipher";
+import { CipherViewLike } from "../utils/cipher-view-like-utils";
+
+/**
+ * Represents either a Cipher, CipherView or CipherListView.
+ *
+ * {@link CipherViewLikeUtils} provides logic to perform operations on each type.
+ */
+export type CipherLike = Cipher | CipherViewLike;
diff --git a/libs/common/src/vault/utils/cipher-view-like-utils.spec.ts b/libs/common/src/vault/utils/cipher-view-like-utils.spec.ts
new file mode 100644
index 00000000000..f302340ef9e
--- /dev/null
+++ b/libs/common/src/vault/utils/cipher-view-like-utils.spec.ts
@@ -0,0 +1,624 @@
+import { CipherListView } from "@bitwarden/sdk-internal";
+
+import { CipherType } from "../enums";
+import { Attachment } from "../models/domain/attachment";
+import { AttachmentView } from "../models/view/attachment.view";
+import { CipherView } from "../models/view/cipher.view";
+import { Fido2CredentialView } from "../models/view/fido2-credential.view";
+import { IdentityView } from "../models/view/identity.view";
+import { LoginUriView } from "../models/view/login-uri.view";
+import { LoginView } from "../models/view/login.view";
+
+import { CipherViewLikeUtils } from "./cipher-view-like-utils";
+
+describe("CipherViewLikeUtils", () => {
+ const createCipherView = (type: CipherType = CipherType.Login): CipherView => {
+ const cipherView = new CipherView();
+ // Always set a type to avoid issues within `CipherViewLikeUtils`
+ cipherView.type = type;
+
+ return cipherView;
+ };
+
+ describe("isCipherListView", () => {
+ it("returns true when the cipher is a CipherListView", () => {
+ const cipherListViewLogin = {
+ type: {
+ login: {},
+ },
+ } as CipherListView;
+ const cipherListViewSshKey = {
+ type: "sshKey",
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.isCipherListView(cipherListViewLogin)).toBe(true);
+ expect(CipherViewLikeUtils.isCipherListView(cipherListViewSshKey)).toBe(true);
+ });
+
+ it("returns false when the cipher is not a CipherListView", () => {
+ const cipherView = createCipherView();
+ cipherView.type = CipherType.SecureNote;
+
+ expect(CipherViewLikeUtils.isCipherListView(cipherView)).toBe(false);
+ });
+ });
+
+ describe("getLogin", () => {
+ it("returns null when the cipher is not a login", () => {
+ const cipherView = createCipherView(CipherType.SecureNote);
+
+ expect(CipherViewLikeUtils.getLogin(cipherView)).toBeNull();
+ expect(CipherViewLikeUtils.getLogin({ type: "identity" } as CipherListView)).toBeNull();
+ });
+
+ describe("CipherView", () => {
+ it("returns the login object", () => {
+ const cipherView = createCipherView(CipherType.Login);
+
+ expect(CipherViewLikeUtils.getLogin(cipherView)).toEqual(cipherView.login);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns the login object", () => {
+ const cipherListView = {
+ type: {
+ login: {
+ username: "testuser",
+ hasFido2: false,
+ },
+ },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.getLogin(cipherListView)).toEqual(
+ (cipherListView.type as any).login,
+ );
+ });
+ });
+ });
+
+ describe("getCard", () => {
+ it("returns null when the cipher is not a card", () => {
+ const cipherView = createCipherView(CipherType.SecureNote);
+
+ expect(CipherViewLikeUtils.getCard(cipherView)).toBeNull();
+ expect(CipherViewLikeUtils.getCard({ type: "identity" } as CipherListView)).toBeNull();
+ });
+
+ describe("CipherView", () => {
+ it("returns the card object", () => {
+ const cipherView = createCipherView(CipherType.Card);
+
+ expect(CipherViewLikeUtils.getCard(cipherView)).toEqual(cipherView.card);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns the card object", () => {
+ const cipherListView = {
+ type: {
+ card: {
+ brand: "Visa",
+ },
+ },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.getCard(cipherListView)).toEqual(
+ (cipherListView.type as any).card,
+ );
+ });
+ });
+ });
+
+ describe("isDeleted", () => {
+ it("returns true when the cipher is deleted", () => {
+ const cipherListView = { deletedDate: "2024-02-02", type: "identity" } as CipherListView;
+ const cipherView = createCipherView();
+ cipherView.deletedDate = new Date();
+
+ expect(CipherViewLikeUtils.isDeleted(cipherListView)).toBe(true);
+ expect(CipherViewLikeUtils.isDeleted(cipherView)).toBe(true);
+ });
+
+ it("returns false when the cipher is not deleted", () => {
+ const cipherListView = { deletedDate: undefined, type: "identity" } as CipherListView;
+ const cipherView = createCipherView();
+
+ expect(CipherViewLikeUtils.isDeleted(cipherListView)).toBe(false);
+ expect(CipherViewLikeUtils.isDeleted(cipherView)).toBe(false);
+ });
+ });
+
+ describe("canAssignToCollections", () => {
+ describe("CipherView", () => {
+ let cipherView: CipherView;
+
+ beforeEach(() => {
+ cipherView = createCipherView();
+ });
+
+ it("returns true when the cipher is not assigned to an organization", () => {
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherView)).toBe(true);
+ });
+
+ it("returns false when the cipher is assigned to an organization and cannot be edited", () => {
+ cipherView.organizationId = "org-id";
+ cipherView.edit = false;
+ cipherView.viewPassword = false;
+
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherView)).toBe(false);
+ });
+
+ it("returns true when the cipher is assigned to an organization and can be edited", () => {
+ cipherView.organizationId = "org-id";
+ cipherView.edit = true;
+ cipherView.viewPassword = true;
+
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherView)).toBe(true);
+ });
+ });
+
+ describe("CipherListView", () => {
+ let cipherListView: CipherListView;
+
+ beforeEach(() => {
+ cipherListView = {
+ organizationId: undefined,
+ edit: false,
+ viewPassword: false,
+ type: { login: {} },
+ } as CipherListView;
+ });
+
+ it("returns true when the cipher is not assigned to an organization", () => {
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherListView)).toBe(true);
+ });
+
+ it("returns false when the cipher is assigned to an organization and cannot be edited", () => {
+ cipherListView.organizationId = "org-id";
+
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherListView)).toBe(false);
+ });
+
+ it("returns true when the cipher is assigned to an organization and can be edited", () => {
+ cipherListView.organizationId = "org-id";
+ cipherListView.edit = true;
+ cipherListView.viewPassword = true;
+
+ expect(CipherViewLikeUtils.canAssignToCollections(cipherListView)).toBe(true);
+ });
+ });
+ });
+
+ describe("getType", () => {
+ describe("CipherView", () => {
+ it("returns the type of the cipher", () => {
+ const cipherView = createCipherView();
+ cipherView.type = CipherType.Login;
+
+ expect(CipherViewLikeUtils.getType(cipherView)).toBe(CipherType.Login);
+
+ cipherView.type = CipherType.SecureNote;
+ expect(CipherViewLikeUtils.getType(cipherView)).toBe(CipherType.SecureNote);
+
+ cipherView.type = CipherType.SshKey;
+ expect(CipherViewLikeUtils.getType(cipherView)).toBe(CipherType.SshKey);
+
+ cipherView.type = CipherType.Identity;
+ expect(CipherViewLikeUtils.getType(cipherView)).toBe(CipherType.Identity);
+
+ cipherView.type = CipherType.Card;
+ expect(CipherViewLikeUtils.getType(cipherView)).toBe(CipherType.Card);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("converts the `CipherViewListType` to `CipherType`", () => {
+ const cipherListView = {
+ type: { login: {} },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.getType(cipherListView)).toBe(CipherType.Login);
+
+ cipherListView.type = { card: { brand: "Visa" } };
+ expect(CipherViewLikeUtils.getType(cipherListView)).toBe(CipherType.Card);
+
+ cipherListView.type = "sshKey";
+ expect(CipherViewLikeUtils.getType(cipherListView)).toBe(CipherType.SshKey);
+
+ cipherListView.type = "identity";
+ expect(CipherViewLikeUtils.getType(cipherListView)).toBe(CipherType.Identity);
+
+ cipherListView.type = "secureNote";
+ expect(CipherViewLikeUtils.getType(cipherListView)).toBe(CipherType.SecureNote);
+ });
+ });
+ });
+
+ describe("subtitle", () => {
+ describe("CipherView", () => {
+ it("returns the subtitle of the cipher", () => {
+ const cipherView = createCipherView();
+ cipherView.login = new LoginView();
+ cipherView.login.username = "Test Username";
+
+ expect(CipherViewLikeUtils.subtitle(cipherView)).toBe("Test Username");
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns the subtitle of the cipher", () => {
+ const cipherListView = {
+ subtitle: "Test Subtitle",
+ type: "identity",
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.subtitle(cipherListView)).toBe("Test Subtitle");
+ });
+ });
+ });
+
+ describe("hasAttachments", () => {
+ describe("CipherView", () => {
+ it("returns true when the cipher has attachments", () => {
+ const cipherView = createCipherView();
+ cipherView.attachments = [new AttachmentView({ id: "1" } as Attachment)];
+
+ expect(CipherViewLikeUtils.hasAttachments(cipherView)).toBe(true);
+ });
+
+ it("returns false when the cipher has no attachments", () => {
+ const cipherView = new CipherView();
+ (cipherView.attachments as any) = null;
+
+ expect(CipherViewLikeUtils.hasAttachments(cipherView)).toBe(false);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns true when there are attachments", () => {
+ const cipherListView = { attachments: 1, type: "secureNote" } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasAttachments(cipherListView)).toBe(true);
+ });
+
+ it("returns false when there are no attachments", () => {
+ const cipherListView = { attachments: 0, type: "secureNote" } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasAttachments(cipherListView)).toBe(false);
+ });
+ });
+ });
+
+ describe("canLaunch", () => {
+ it("returns false when the cipher is not a login", () => {
+ const cipherView = createCipherView(CipherType.SecureNote);
+
+ expect(CipherViewLikeUtils.canLaunch(cipherView)).toBe(false);
+ expect(CipherViewLikeUtils.canLaunch({ type: "identity" } as CipherListView)).toBe(false);
+ });
+
+ describe("CipherView", () => {
+ it("returns true when the login has URIs that can be launched", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ cipherView.login.uris = [{ uri: "https://example.com" } as LoginUriView];
+
+ expect(CipherViewLikeUtils.canLaunch(cipherView)).toBe(true);
+ });
+
+ it("returns true when the uri does not have a protocol", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ const uriView = new LoginUriView();
+ uriView.uri = "bitwarden.com";
+ cipherView.login.uris = [uriView];
+
+ expect(CipherViewLikeUtils.canLaunch(cipherView)).toBe(true);
+ });
+
+ it("returns false when the login has no URIs", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+
+ expect(CipherViewLikeUtils.canLaunch(cipherView)).toBe(false);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns true when the login has URIs that can be launched", () => {
+ const cipherListView = {
+ type: { login: { uris: [{ uri: "https://example.com" }] } },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.canLaunch(cipherListView)).toBe(true);
+ });
+
+ it("returns true when the uri does not have a protocol", () => {
+ const cipherListView = {
+ type: { login: { uris: [{ uri: "bitwarden.com" }] } },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.canLaunch(cipherListView)).toBe(true);
+ });
+
+ it("returns false when the login has no URIs", () => {
+ const cipherListView = { type: { login: {} } } as CipherListView;
+
+ expect(CipherViewLikeUtils.canLaunch(cipherListView)).toBe(false);
+ });
+ });
+ });
+
+ describe("getLaunchUri", () => {
+ it("returns undefined when the cipher is not a login", () => {
+ const cipherView = createCipherView(CipherType.SecureNote);
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherView)).toBeUndefined();
+ expect(
+ CipherViewLikeUtils.getLaunchUri({ type: "identity" } as CipherListView),
+ ).toBeUndefined();
+ });
+
+ describe("CipherView", () => {
+ it("returns the first launch-able URI", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ cipherView.login.uris = [
+ { uri: "" } as LoginUriView,
+ { uri: "https://example.com" } as LoginUriView,
+ { uri: "https://another.com" } as LoginUriView,
+ ];
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherView)).toBe("https://example.com");
+ });
+
+ it("returns undefined when there are no URIs", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherView)).toBeUndefined();
+ });
+
+ it("appends protocol when there are none", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ const uriView = new LoginUriView();
+ uriView.uri = "bitwarden.com";
+ cipherView.login.uris = [uriView];
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherView)).toBe("http://bitwarden.com");
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns the first launch-able URI", () => {
+ const cipherListView = {
+ type: { login: { uris: [{ uri: "" }, { uri: "https://example.com" }] } },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherListView)).toBe("https://example.com");
+ });
+
+ it("returns undefined when there are no URIs", () => {
+ const cipherListView = { type: { login: {} } } as CipherListView;
+
+ expect(CipherViewLikeUtils.getLaunchUri(cipherListView)).toBeUndefined();
+ });
+ });
+ });
+
+ describe("matchesUri", () => {
+ const emptySet = new Set();
+
+ it("returns false when the cipher is not a login", () => {
+ const cipherView = createCipherView(CipherType.SecureNote);
+
+ expect(CipherViewLikeUtils.matchesUri(cipherView, "https://example.com", emptySet)).toBe(
+ false,
+ );
+ });
+
+ describe("CipherView", () => {
+ it("returns true when the URI matches", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ const uri = new LoginUriView();
+ uri.uri = "https://example.com";
+ cipherView.login.uris = [uri];
+
+ expect(CipherViewLikeUtils.matchesUri(cipherView, "https://example.com", emptySet)).toBe(
+ true,
+ );
+ });
+
+ it("returns false when the URI does not match", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ const uri = new LoginUriView();
+ uri.uri = "https://www.bitwarden.com";
+ cipherView.login.uris = [uri];
+
+ expect(
+ CipherViewLikeUtils.matchesUri(cipherView, "https://www.another.com", emptySet),
+ ).toBe(false);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns true when the URI matches", () => {
+ const cipherListView = {
+ type: { login: { uris: [{ uri: "https://example.com" }] } },
+ } as CipherListView;
+
+ expect(
+ CipherViewLikeUtils.matchesUri(cipherListView, "https://example.com", emptySet),
+ ).toBe(true);
+ });
+
+ it("returns false when the URI does not match", () => {
+ const cipherListView = {
+ type: { login: { uris: [{ uri: "https://bitwarden.com" }] } },
+ } as CipherListView;
+
+ expect(
+ CipherViewLikeUtils.matchesUri(cipherListView, "https://another.com", emptySet),
+ ).toBe(false);
+ });
+ });
+ });
+
+ describe("hasCopyableValue", () => {
+ describe("CipherView", () => {
+ it("returns true for login fields", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ cipherView.login.username = "testuser";
+ cipherView.login.password = "testpass";
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "username")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "password")).toBe(true);
+ });
+
+ it("returns true for card fields", () => {
+ const cipherView = createCipherView(CipherType.Card);
+ cipherView.card = { number: "1234-5678-9012-3456", code: "123" } as any;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "cardNumber")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "securityCode")).toBe(true);
+ });
+
+ it("returns true for identity fields", () => {
+ const cipherView = createCipherView(CipherType.Identity);
+ cipherView.identity = new IdentityView();
+ cipherView.identity.email = "example@bitwarden.com";
+ cipherView.identity.phone = "123-456-7890";
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "email")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "phone")).toBe(true);
+ });
+
+ it("returns false when values are not populated", () => {
+ const cipherView = createCipherView(CipherType.Login);
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "email")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "password")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "securityCode")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherView, "username")).toBe(false);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns true for copyable fields in a login cipher", () => {
+ const cipherListView = {
+ type: { login: { username: "testuser" } },
+ copyableFields: ["LoginUsername", "LoginPassword"],
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "username")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "password")).toBe(true);
+ });
+
+ it("returns true for copyable fields in a card cipher", () => {
+ const cipherListView = {
+ type: { card: { brand: "MasterCard" } },
+ copyableFields: ["CardNumber", "CardSecurityCode"],
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "cardNumber")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "securityCode")).toBe(true);
+ });
+
+ it("returns true for copyable fields in an sshKey ciphers", () => {
+ const cipherListView = {
+ type: "sshKey",
+ copyableFields: ["SshKey"],
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "privateKey")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "publicKey")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "keyFingerprint")).toBe(true);
+ });
+
+ it("returns true for copyable fields in an identity cipher", () => {
+ const cipherListView = {
+ type: "identity",
+ copyableFields: ["IdentityUsername", "IdentityEmail", "IdentityPhone"],
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "username")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "email")).toBe(true);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "phone")).toBe(true);
+ });
+
+ it("returns false for when missing a field", () => {
+ const cipherListView = {
+ type: { login: {} },
+ copyableFields: ["LoginUsername"],
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "password")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "phone")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "address")).toBe(false);
+ expect(CipherViewLikeUtils.hasCopyableValue(cipherListView, "publicKey")).toBe(false);
+ });
+ });
+ });
+
+ describe("hasFido2Credentials", () => {
+ describe("CipherView", () => {
+ it("returns true when the login has FIDO2 credentials", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+ cipherView.login.fido2Credentials = [new Fido2CredentialView()];
+
+ expect(CipherViewLikeUtils.hasFido2Credentials(cipherView)).toBe(true);
+ });
+
+ it("returns false when the login has no FIDO2 credentials", () => {
+ const cipherView = createCipherView(CipherType.Login);
+ cipherView.login = new LoginView();
+
+ expect(CipherViewLikeUtils.hasFido2Credentials(cipherView)).toBe(false);
+ });
+ });
+
+ describe("CipherListView", () => {
+ it("returns true when the login has FIDO2 credentials", () => {
+ const cipherListView = {
+ type: { login: { fido2Credentials: [{ credentialId: "fido2-1" }] } },
+ } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasFido2Credentials(cipherListView)).toBe(true);
+ });
+
+ it("returns false when the login has no FIDO2 credentials", () => {
+ const cipherListView = { type: { login: {} } } as CipherListView;
+
+ expect(CipherViewLikeUtils.hasFido2Credentials(cipherListView)).toBe(false);
+ });
+ });
+ });
+
+ describe("decryptionFailure", () => {
+ it("returns true when the cipher has a decryption failure", () => {
+ const cipherView = createCipherView();
+ cipherView.decryptionFailure = true;
+
+ expect(CipherViewLikeUtils.decryptionFailure(cipherView)).toBe(true);
+ });
+
+ it("returns false when the cipher does not have a decryption failure", () => {
+ const cipherView = createCipherView();
+ cipherView.decryptionFailure = false;
+
+ expect(CipherViewLikeUtils.decryptionFailure(cipherView)).toBe(false);
+ });
+
+ it("returns false when the cipher is a CipherListView without decryptionFailure", () => {
+ const cipherListView = { type: "secureNote" } as CipherListView;
+
+ expect(CipherViewLikeUtils.decryptionFailure(cipherListView)).toBe(false);
+ });
+ });
+});
diff --git a/libs/common/src/vault/utils/cipher-view-like-utils.ts b/libs/common/src/vault/utils/cipher-view-like-utils.ts
new file mode 100644
index 00000000000..1c7a4382a04
--- /dev/null
+++ b/libs/common/src/vault/utils/cipher-view-like-utils.ts
@@ -0,0 +1,301 @@
+import {
+ UriMatchStrategy,
+ UriMatchStrategySetting,
+} from "@bitwarden/common/models/domain/domain-service";
+import {
+ CardListView,
+ CipherListView,
+ CopyableCipherFields,
+ LoginListView,
+ LoginUriView as LoginListUriView,
+} from "@bitwarden/sdk-internal";
+
+import { CipherType } from "../enums";
+import { Cipher } from "../models/domain/cipher";
+import { CardView } from "../models/view/card.view";
+import { CipherView } from "../models/view/cipher.view";
+import { LoginUriView } from "../models/view/login-uri.view";
+import { LoginView } from "../models/view/login.view";
+
+/**
+ * Type union of {@link CipherView} and {@link CipherListView}.
+ */
+export type CipherViewLike = CipherView | CipherListView;
+
+/**
+ * Utility class for working with ciphers that can be either a {@link CipherView} or a {@link CipherListView}.
+ */
+export class CipherViewLikeUtils {
+ /** @returns true when the given cipher is an instance of {@link CipherListView}. */
+ static isCipherListView = (cipher: CipherViewLike | Cipher): cipher is CipherListView => {
+ return typeof cipher.type === "object" || typeof cipher.type === "string";
+ };
+
+ /** @returns The login object from the input cipher. If the cipher is not of type Login, returns null. */
+ static getLogin = (cipher: CipherViewLike): LoginListView | LoginView | null => {
+ if (this.isCipherListView(cipher)) {
+ if (typeof cipher.type !== "object") {
+ return null;
+ }
+
+ return "login" in cipher.type ? cipher.type.login : null;
+ }
+
+ return cipher.type === CipherType.Login ? cipher.login : null;
+ };
+
+ /** @returns The first URI for a login cipher. If the cipher is not of type Login or has no associated URIs, returns null. */
+ static uri = (cipher: CipherViewLike) => {
+ const login = this.getLogin(cipher);
+ if (!login) {
+ return null;
+ }
+
+ if ("uri" in login) {
+ return login.uri;
+ }
+
+ return login.uris?.length ? login.uris[0].uri : null;
+ };
+
+ /** @returns The login object from the input cipher. If the cipher is not of type Login, returns null. */
+ static getCard = (cipher: CipherViewLike): CardListView | CardView | null => {
+ if (this.isCipherListView(cipher)) {
+ if (typeof cipher.type !== "object") {
+ return null;
+ }
+
+ return "card" in cipher.type ? cipher.type.card : null;
+ }
+
+ return cipher.type === CipherType.Card ? cipher.card : null;
+ };
+
+ /** @returns `true` when the cipher has been deleted, `false` otherwise. */
+ static isDeleted = (cipher: CipherViewLike): boolean => {
+ if (this.isCipherListView(cipher)) {
+ return !!cipher.deletedDate;
+ }
+
+ return cipher.isDeleted;
+ };
+
+ /** @returns `true` when the user can assign the cipher to a collection, `false` otherwise. */
+ static canAssignToCollections = (cipher: CipherViewLike): boolean => {
+ if (this.isCipherListView(cipher)) {
+ if (!cipher.organizationId) {
+ return true;
+ }
+
+ return cipher.edit && cipher.viewPassword;
+ }
+
+ return cipher.canAssignToCollections;
+ };
+
+ /**
+ * Returns the type of the cipher.
+ * For consistency, when the given cipher is a {@link CipherListView} the {@link CipherType} equivalent will be returned.
+ */
+ static getType = (cipher: CipherViewLike | Cipher): CipherType => {
+ if (!this.isCipherListView(cipher)) {
+ return cipher.type;
+ }
+
+ // CipherListViewType is a string, so we need to map it to CipherType.
+ switch (true) {
+ case cipher.type === "secureNote":
+ return CipherType.SecureNote;
+ case cipher.type === "sshKey":
+ return CipherType.SshKey;
+ case cipher.type === "identity":
+ return CipherType.Identity;
+ case typeof cipher.type === "object" && "card" in cipher.type:
+ return CipherType.Card;
+ case typeof cipher.type === "object" && "login" in cipher.type:
+ return CipherType.Login;
+ default:
+ throw new Error(`Unknown cipher type: ${cipher.type}`);
+ }
+ };
+
+ /** @returns The subtitle of the cipher. */
+ static subtitle = (cipher: CipherViewLike): string | undefined => {
+ if (!this.isCipherListView(cipher)) {
+ return cipher.subTitle;
+ }
+
+ return cipher.subtitle;
+ };
+
+ /** @returns `true` when the cipher has attachments, false otherwise. */
+ static hasAttachments = (cipher: CipherViewLike): boolean => {
+ if (this.isCipherListView(cipher)) {
+ return typeof cipher.attachments === "number" && cipher.attachments > 0;
+ }
+
+ return cipher.hasAttachments;
+ };
+
+ /**
+ * @returns `true` when one of the URIs for the cipher can be launched.
+ * When a non-login cipher is passed, it will return false.
+ */
+ static canLaunch = (cipher: CipherViewLike): boolean => {
+ const login = this.getLogin(cipher);
+
+ if (!login) {
+ return false;
+ }
+
+ return !!login.uris?.map((u) => toLoginUriView(u)).some((uri) => uri.canLaunch);
+ };
+
+ /**
+ * @returns The first launch-able URI for the cipher.
+ * When a non-login cipher is passed or none of the URLs, it will return undefined.
+ */
+ static getLaunchUri = (cipher: CipherViewLike): string | undefined => {
+ const login = this.getLogin(cipher);
+
+ if (!login) {
+ return undefined;
+ }
+
+ return login.uris?.map((u) => toLoginUriView(u)).find((uri) => uri.canLaunch)?.launchUri;
+ };
+
+ /**
+ * @returns `true` when the `targetUri` matches for any URI on the cipher.
+ * Uses the existing logic from `LoginView.matchesUri` for both `CipherView` and `CipherListView`
+ */
+ static matchesUri = (
+ cipher: CipherViewLike,
+ targetUri: string,
+ equivalentDomains: Set,
+ defaultUriMatch: UriMatchStrategySetting = UriMatchStrategy.Domain,
+ ): boolean => {
+ if (CipherViewLikeUtils.getType(cipher) !== CipherType.Login) {
+ return false;
+ }
+
+ if (!this.isCipherListView(cipher)) {
+ return cipher.login.matchesUri(targetUri, equivalentDomains, defaultUriMatch);
+ }
+
+ const login = this.getLogin(cipher);
+ if (!login?.uris?.length) {
+ return false;
+ }
+
+ const loginUriViews = login.uris
+ .filter((u) => !!u.uri)
+ .map((u) => {
+ const view = new LoginUriView();
+ view.match = u.match ?? defaultUriMatch;
+ view.uri = u.uri!; // above `filter` ensures `u.uri` is not null or undefined
+ return view;
+ });
+
+ return loginUriViews.some((uriView) =>
+ uriView.matchesUri(targetUri, equivalentDomains, defaultUriMatch),
+ );
+ };
+
+ /** @returns true when the `copyField` is populated on the given cipher. */
+ static hasCopyableValue = (cipher: CipherViewLike, copyField: string): boolean => {
+ // `CipherListView` instances do not contain the values to be copied, but rather a list of copyable fields.
+ // When the copy action is performed on a `CipherListView`, the full cipher will need to be decrypted.
+ if (this.isCipherListView(cipher)) {
+ let _copyField = copyField;
+
+ if (_copyField === "username" && this.getType(cipher) === CipherType.Login) {
+ _copyField = "usernameLogin";
+ } else if (_copyField === "username" && this.getType(cipher) === CipherType.Identity) {
+ _copyField = "usernameIdentity";
+ }
+
+ return cipher.copyableFields.includes(copyActionToCopyableFieldMap[_copyField]);
+ }
+
+ // When the full cipher is available, check the specific field
+ switch (copyField) {
+ case "username":
+ return !!cipher.login?.username || !!cipher.identity?.username;
+ case "password":
+ return !!cipher.login?.password;
+ case "totp":
+ return !!cipher.login?.totp;
+ case "cardNumber":
+ return !!cipher.card?.number;
+ case "securityCode":
+ return !!cipher.card?.code;
+ case "email":
+ return !!cipher.identity?.email;
+ case "phone":
+ return !!cipher.identity?.phone;
+ case "address":
+ return !!cipher.identity?.fullAddressForCopy;
+ case "secureNote":
+ return !!cipher.notes;
+ case "privateKey":
+ return !!cipher.sshKey?.privateKey;
+ case "publicKey":
+ return !!cipher.sshKey?.publicKey;
+ case "keyFingerprint":
+ return !!cipher.sshKey?.keyFingerprint;
+ default:
+ return false;
+ }
+ };
+
+ /** @returns true when the cipher has fido2 credentials */
+ static hasFido2Credentials = (cipher: CipherViewLike): boolean => {
+ const login = this.getLogin(cipher);
+
+ return !!login?.fido2Credentials?.length;
+ };
+
+ /**
+ * Returns the `decryptionFailure` property from the cipher when available.
+ * TODO: https://bitwarden.atlassian.net/browse/PM-22515 - alter for `CipherListView` if needed
+ */
+ static decryptionFailure = (cipher: CipherViewLike): boolean => {
+ return "decryptionFailure" in cipher ? cipher.decryptionFailure : false;
+ };
+}
+
+/**
+ * Mapping between the generic copy actions and the specific fields in a `CipherViewLike`.
+ */
+const copyActionToCopyableFieldMap: Record = {
+ usernameLogin: "LoginUsername",
+ password: "LoginPassword",
+ totp: "LoginTotp",
+ cardNumber: "CardNumber",
+ securityCode: "CardSecurityCode",
+ usernameIdentity: "IdentityUsername",
+ email: "IdentityEmail",
+ phone: "IdentityPhone",
+ address: "IdentityAddress",
+ secureNote: "SecureNotes",
+ privateKey: "SshKey",
+ publicKey: "SshKey",
+ keyFingerprint: "SshKey",
+};
+
+/** Converts a `LoginListUriView` to a `LoginUriView`. */
+const toLoginUriView = (uri: LoginListUriView | LoginUriView): LoginUriView => {
+ if (uri instanceof LoginUriView) {
+ return uri;
+ }
+
+ const loginUriView = new LoginUriView();
+ if (uri.match) {
+ loginUriView.match = uri.match;
+ }
+ if (uri.uri) {
+ loginUriView.uri = uri.uri;
+ }
+ return loginUriView;
+};
diff --git a/libs/vault/src/components/copy-cipher-field.directive.spec.ts b/libs/vault/src/components/copy-cipher-field.directive.spec.ts
index 0847e7147a9..a3650c68c9b 100644
--- a/libs/vault/src/components/copy-cipher-field.directive.spec.ts
+++ b/libs/vault/src/components/copy-cipher-field.directive.spec.ts
@@ -1,3 +1,9 @@
+import { mock } from "jest-mock-extended";
+import { of } from "rxjs";
+
+import { Account, AccountService } from "@bitwarden/common/auth/abstractions/account.service";
+import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
+import { CipherType } from "@bitwarden/common/vault/enums";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { BitIconButtonComponent, MenuItemDirective } from "@bitwarden/components";
import { CopyCipherFieldService } from "@bitwarden/vault";
@@ -9,23 +15,31 @@ describe("CopyCipherFieldDirective", () => {
copy: jest.fn().mockResolvedValue(null),
totpAllowed: jest.fn().mockResolvedValue(true),
};
+ let mockAccountService: AccountService;
+ let mockCipherService: CipherService;
let copyCipherFieldDirective: CopyCipherFieldDirective;
beforeEach(() => {
copyFieldService.copy.mockClear();
copyFieldService.totpAllowed.mockClear();
+ mockAccountService = mock();
+ mockAccountService.activeAccount$ = of({ id: "test-account-id" } as Account);
+ mockCipherService = mock();
copyCipherFieldDirective = new CopyCipherFieldDirective(
copyFieldService as unknown as CopyCipherFieldService,
+ mockAccountService,
+ mockCipherService,
);
copyCipherFieldDirective.cipher = new CipherView();
+ copyCipherFieldDirective.cipher.type = CipherType.Login;
});
describe("disabled state", () => {
it("should be enabled when the field is available", async () => {
copyCipherFieldDirective.action = "username";
- copyCipherFieldDirective.cipher.login.username = "test-username";
+ (copyCipherFieldDirective.cipher as CipherView).login.username = "test-username";
await copyCipherFieldDirective.ngOnChanges();
@@ -35,6 +49,7 @@ describe("CopyCipherFieldDirective", () => {
it("should be disabled when the field is not available", async () => {
// create empty cipher
copyCipherFieldDirective.cipher = new CipherView();
+ copyCipherFieldDirective.cipher.type = CipherType.Login;
copyCipherFieldDirective.action = "username";
@@ -52,11 +67,15 @@ describe("CopyCipherFieldDirective", () => {
copyCipherFieldDirective = new CopyCipherFieldDirective(
copyFieldService as unknown as CopyCipherFieldService,
+ mockAccountService,
+ mockCipherService,
undefined,
iconButton as unknown as BitIconButtonComponent,
);
copyCipherFieldDirective.action = "password";
+ copyCipherFieldDirective.cipher = new CipherView();
+ copyCipherFieldDirective.cipher.type = CipherType.Login;
await copyCipherFieldDirective.ngOnChanges();
@@ -70,6 +89,8 @@ describe("CopyCipherFieldDirective", () => {
copyCipherFieldDirective = new CopyCipherFieldDirective(
copyFieldService as unknown as CopyCipherFieldService,
+ mockAccountService,
+ mockCipherService,
menuItemDirective as unknown as MenuItemDirective,
);
@@ -83,9 +104,11 @@ describe("CopyCipherFieldDirective", () => {
describe("login", () => {
beforeEach(() => {
- copyCipherFieldDirective.cipher.login.username = "test-username";
- copyCipherFieldDirective.cipher.login.password = "test-password";
- copyCipherFieldDirective.cipher.login.totp = "test-totp";
+ const cipher = copyCipherFieldDirective.cipher as CipherView;
+ cipher.type = CipherType.Login;
+ cipher.login.username = "test-username";
+ cipher.login.password = "test-password";
+ cipher.login.totp = "test-totp";
});
it.each([
@@ -107,10 +130,12 @@ describe("CopyCipherFieldDirective", () => {
describe("identity", () => {
beforeEach(() => {
- copyCipherFieldDirective.cipher.identity.username = "test-username";
- copyCipherFieldDirective.cipher.identity.email = "test-email";
- copyCipherFieldDirective.cipher.identity.phone = "test-phone";
- copyCipherFieldDirective.cipher.identity.address1 = "test-address-1";
+ const cipher = copyCipherFieldDirective.cipher as CipherView;
+ cipher.type = CipherType.Identity;
+ cipher.identity.username = "test-username";
+ cipher.identity.email = "test-email";
+ cipher.identity.phone = "test-phone";
+ cipher.identity.address1 = "test-address-1";
});
it.each([
@@ -133,8 +158,10 @@ describe("CopyCipherFieldDirective", () => {
describe("card", () => {
beforeEach(() => {
- copyCipherFieldDirective.cipher.card.number = "test-card-number";
- copyCipherFieldDirective.cipher.card.code = "test-card-code";
+ const cipher = copyCipherFieldDirective.cipher as CipherView;
+ cipher.type = CipherType.Card;
+ cipher.card.number = "test-card-number";
+ cipher.card.code = "test-card-code";
});
it.each([
@@ -155,7 +182,9 @@ describe("CopyCipherFieldDirective", () => {
describe("secure note", () => {
beforeEach(() => {
- copyCipherFieldDirective.cipher.notes = "test-secure-note";
+ const cipher = copyCipherFieldDirective.cipher as CipherView;
+ cipher.type = CipherType.SecureNote;
+ cipher.notes = "test-secure-note";
});
it("copies secure note field to clipboard", async () => {
@@ -173,9 +202,11 @@ describe("CopyCipherFieldDirective", () => {
describe("ssh key", () => {
beforeEach(() => {
- copyCipherFieldDirective.cipher.sshKey.privateKey = "test-private-key";
- copyCipherFieldDirective.cipher.sshKey.publicKey = "test-public-key";
- copyCipherFieldDirective.cipher.sshKey.keyFingerprint = "test-key-fingerprint";
+ const cipher = copyCipherFieldDirective.cipher as CipherView;
+ cipher.type = CipherType.SshKey;
+ cipher.sshKey.privateKey = "test-private-key";
+ cipher.sshKey.publicKey = "test-public-key";
+ cipher.sshKey.keyFingerprint = "test-key-fingerprint";
});
it.each([
diff --git a/libs/vault/src/components/copy-cipher-field.directive.ts b/libs/vault/src/components/copy-cipher-field.directive.ts
index 0ab7400a6dd..59ad8bf38e8 100644
--- a/libs/vault/src/components/copy-cipher-field.directive.ts
+++ b/libs/vault/src/components/copy-cipher-field.directive.ts
@@ -1,6 +1,14 @@
import { Directive, HostBinding, HostListener, Input, OnChanges, Optional } from "@angular/core";
+import { firstValueFrom } from "rxjs";
+import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
+import { getUserId } from "@bitwarden/common/auth/services/account.service";
+import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { MenuItemDirective, BitIconButtonComponent } from "@bitwarden/components";
import { CopyAction, CopyCipherFieldService } from "@bitwarden/vault";
@@ -27,10 +35,12 @@ export class CopyCipherFieldDirective implements OnChanges {
})
action!: Exclude;
- @Input({ required: true }) cipher!: CipherView;
+ @Input({ required: true }) cipher!: CipherViewLike;
constructor(
private copyCipherFieldService: CopyCipherFieldService,
+ private accountService: AccountService,
+ private cipherService: CipherService,
@Optional() private menuItemDirective?: MenuItemDirective,
@Optional() private iconButtonComponent?: BitIconButtonComponent,
) {}
@@ -49,7 +59,7 @@ export class CopyCipherFieldDirective implements OnChanges {
@HostListener("click")
async copy() {
- const value = this.getValueToCopy();
+ const value = await this.getValueToCopy();
await this.copyCipherFieldService.copy(value ?? "", this.action, this.cipher);
}
@@ -60,7 +70,7 @@ export class CopyCipherFieldDirective implements OnChanges {
private async updateDisabledState() {
this.disabled =
!this.cipher ||
- !this.getValueToCopy() ||
+ !this.hasValueToCopy() ||
(this.action === "totp" && !(await this.copyCipherFieldService.totpAllowed(this.cipher)))
? true
: null;
@@ -76,32 +86,51 @@ export class CopyCipherFieldDirective implements OnChanges {
}
}
- private getValueToCopy() {
+ /** Returns `true` when the cipher has the associated value as populated. */
+ private hasValueToCopy() {
+ return CipherViewLikeUtils.hasCopyableValue(this.cipher, this.action);
+ }
+
+ /** Returns the value of the cipher to be copied. */
+ private async getValueToCopy() {
+ let _cipher: CipherView;
+
+ if (CipherViewLikeUtils.isCipherListView(this.cipher)) {
+ // When the cipher is of type `CipherListView`, the full cipher needs to be decrypted
+ const activeAccountId = await firstValueFrom(
+ this.accountService.activeAccount$.pipe(getUserId),
+ );
+ const encryptedCipher = await this.cipherService.get(this.cipher.id!, activeAccountId);
+ _cipher = await this.cipherService.decrypt(encryptedCipher, activeAccountId);
+ } else {
+ _cipher = this.cipher;
+ }
+
switch (this.action) {
case "username":
- return this.cipher.login?.username || this.cipher.identity?.username;
+ return _cipher.login?.username || _cipher.identity?.username;
case "password":
- return this.cipher.login?.password;
+ return _cipher.login?.password;
case "totp":
- return this.cipher.login?.totp;
+ return _cipher.login?.totp;
case "cardNumber":
- return this.cipher.card?.number;
+ return _cipher.card?.number;
case "securityCode":
- return this.cipher.card?.code;
+ return _cipher.card?.code;
case "email":
- return this.cipher.identity?.email;
+ return _cipher.identity?.email;
case "phone":
- return this.cipher.identity?.phone;
+ return _cipher.identity?.phone;
case "address":
- return this.cipher.identity?.fullAddressForCopy;
+ return _cipher.identity?.fullAddressForCopy;
case "secureNote":
- return this.cipher.notes;
+ return _cipher.notes;
case "privateKey":
- return this.cipher.sshKey?.privateKey;
+ return _cipher.sshKey?.privateKey;
case "publicKey":
- return this.cipher.sshKey?.publicKey;
+ return _cipher.sshKey?.publicKey;
case "keyFingerprint":
- return this.cipher.sshKey?.keyFingerprint;
+ return _cipher.sshKey?.keyFingerprint;
default:
return null;
}
diff --git a/libs/vault/src/services/copy-cipher-field.service.spec.ts b/libs/vault/src/services/copy-cipher-field.service.spec.ts
index 5b038376aee..3bd8f911f3e 100644
--- a/libs/vault/src/services/copy-cipher-field.service.spec.ts
+++ b/libs/vault/src/services/copy-cipher-field.service.spec.ts
@@ -8,7 +8,7 @@ import { EventType } from "@bitwarden/common/enums";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { TotpService } from "@bitwarden/common/vault/abstractions/totp.service";
-import { CipherRepromptType } from "@bitwarden/common/vault/enums";
+import { CipherRepromptType, CipherType } from "@bitwarden/common/vault/enums";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { LoginView } from "@bitwarden/common/vault/models/view/login.view";
import { ToastService } from "@bitwarden/components";
@@ -128,6 +128,7 @@ describe("CopyCipherFieldService", () => {
describe("totp", () => {
beforeEach(() => {
actionType = "totp";
+ cipher.type = CipherType.Login;
cipher.login = new LoginView();
cipher.login.totp = "secret-totp";
cipher.reprompt = CipherRepromptType.None;
diff --git a/libs/vault/src/services/copy-cipher-field.service.ts b/libs/vault/src/services/copy-cipher-field.service.ts
index 3f94b27cef8..606614f2143 100644
--- a/libs/vault/src/services/copy-cipher-field.service.ts
+++ b/libs/vault/src/services/copy-cipher-field.service.ts
@@ -9,7 +9,10 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { TotpService } from "@bitwarden/common/vault/abstractions/totp.service";
import { CipherRepromptType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import {
+ CipherViewLike,
+ CipherViewLikeUtils,
+} from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { ToastService } from "@bitwarden/components";
import { PasswordRepromptService } from "@bitwarden/vault";
@@ -103,7 +106,7 @@ export class CopyCipherFieldService {
async copy(
valueToCopy: string,
actionType: CopyAction,
- cipher: CipherView,
+ cipher: CipherViewLike,
skipReprompt: boolean = false,
): Promise {
const action = CopyActions[actionType];
@@ -153,13 +156,16 @@ export class CopyCipherFieldService {
/**
* Determines if TOTP generation is allowed for a cipher and user.
*/
- async totpAllowed(cipher: CipherView): Promise {
+ async totpAllowed(cipher: CipherViewLike): Promise {
const activeAccount = await firstValueFrom(this.accountService.activeAccount$);
if (!activeAccount?.id) {
return false;
}
+
+ const login = CipherViewLikeUtils.getLogin(cipher);
+
return (
- (cipher?.login?.hasTotp ?? false) &&
+ !!login?.totp &&
(cipher.organizationUseTotp ||
(await firstValueFrom(
this.billingAccountProfileStateService.hasPremiumFromAnySource$(activeAccount.id),
diff --git a/libs/vault/src/services/password-reprompt.service.ts b/libs/vault/src/services/password-reprompt.service.ts
index 6583d0787fc..e6a6b20b320 100644
--- a/libs/vault/src/services/password-reprompt.service.ts
+++ b/libs/vault/src/services/password-reprompt.service.ts
@@ -4,7 +4,7 @@ import { firstValueFrom, lastValueFrom } from "rxjs";
import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction";
import { Utils } from "@bitwarden/common/platform/misc/utils";
import { CipherRepromptType } from "@bitwarden/common/vault/enums";
-import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
+import { CipherViewLike } from "@bitwarden/common/vault/utils/cipher-view-like-utils";
import { DialogService } from "@bitwarden/components";
import { PasswordRepromptComponent } from "../components/password-reprompt.component";
@@ -28,7 +28,7 @@ export class PasswordRepromptService {
return ["TOTP", "Password", "H_Field", "Card Number", "Security Code"];
}
- async passwordRepromptCheck(cipher: CipherView) {
+ async passwordRepromptCheck(cipher: CipherViewLike) {
if (cipher.reprompt === CipherRepromptType.None) {
return true;
}
From 9ca265c543394a62a590ed2e1263aea9a597268b Mon Sep 17 00:00:00 2001
From: rr-bw <102181210+rr-bw@users.noreply.github.com>
Date: Thu, 17 Jul 2025 14:24:53 -0700
Subject: [PATCH 06/54] feat(redirectToVaultIfUnlockedGuard): [Auth/PM-20623]
RedirectToVaultIfUnlocked Guard (#15236)
Adds a `redirect-to-vault-if-unlocked.guard.ts` that does the following:
- If there is no active user, allow access to the route
- If the user is specifically Unlocked, redirect the user to /vault
- Otherwise, allow access to the route (fallback/default)
---
apps/browser/src/popup/app-routing.module.ts | 3 +
libs/angular/src/auth/guards/index.ts | 1 +
.../redirect-to-vault-if-unlocked/README.md | 19 ++++
...edirect-to-vault-if-unlocked.guard.spec.ts | 98 +++++++++++++++++++
.../redirect-to-vault-if-unlocked.guard.ts | 36 +++++++
...auth_request_login_readme.md => README.md} | 55 ++++++++---
6 files changed, 196 insertions(+), 16 deletions(-)
create mode 100644 libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/README.md
create mode 100644 libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.spec.ts
create mode 100644 libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.ts
rename libs/auth/src/angular/login-via-auth-request/{auth_request_login_readme.md => README.md} (77%)
diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts
index 47ba2326557..9e55cfce2ce 100644
--- a/apps/browser/src/popup/app-routing.module.ts
+++ b/apps/browser/src/popup/app-routing.module.ts
@@ -12,6 +12,7 @@ import {
authGuard,
lockGuard,
redirectGuard,
+ redirectToVaultIfUnlockedGuard,
tdeDecryptionRequiredGuard,
unauthGuardFn,
} from "@bitwarden/angular/auth/guards";
@@ -454,6 +455,7 @@ const routes: Routes = [
},
{
path: "login-with-device",
+ canActivate: [redirectToVaultIfUnlockedGuard()],
data: {
pageIcon: DevicesIcon,
pageTitle: {
@@ -502,6 +504,7 @@ const routes: Routes = [
},
{
path: "admin-approval-requested",
+ canActivate: [redirectToVaultIfUnlockedGuard()],
data: {
pageIcon: DevicesIcon,
pageTitle: {
diff --git a/libs/angular/src/auth/guards/index.ts b/libs/angular/src/auth/guards/index.ts
index 8a4d0be8167..a0aadd3a4d1 100644
--- a/libs/angular/src/auth/guards/index.ts
+++ b/libs/angular/src/auth/guards/index.ts
@@ -4,3 +4,4 @@ export * from "./lock.guard";
export * from "./redirect/redirect.guard";
export * from "./tde-decryption-required.guard";
export * from "./unauth.guard";
+export * from "./redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard";
diff --git a/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/README.md b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/README.md
new file mode 100644
index 00000000000..c72ddc86e15
--- /dev/null
+++ b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/README.md
@@ -0,0 +1,19 @@
+# RedirectToVaultIfUnlocked Guard
+
+The `redirectToVaultIfUnlocked` redirects the user to `/vault` if they are `Unlocked`. Otherwise, it allows access to the route.
+
+This is particularly useful for routes that can handle BOTH unauthenticated AND authenticated-but-locked users (which makes the `authGuard` unusable on those routes).
+
+
+
+### Special Use Case - Authenticating in the Extension Popout
+
+Imagine a user is going through the Login with Device flow in the Extension pop*out*:
+
+- They open the pop*out* while on `/login-with-device`
+- The approve the login from another device
+- They are authenticated and routed to `/vault` while in the pop*out*
+
+If the `redirectToVaultIfUnlocked` were NOT applied, if this user now opens the pop*up* they would be shown the `/login-with-device`, not their `/vault`.
+
+But by adding the `redirectToVaultIfUnlocked` to `/login-with-device` we make sure to check if the user has already `Unlocked`, and if so, route them to `/vault` upon opening the pop*up*.
diff --git a/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.spec.ts b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.spec.ts
new file mode 100644
index 00000000000..004499beede
--- /dev/null
+++ b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.spec.ts
@@ -0,0 +1,98 @@
+import { TestBed } from "@angular/core/testing";
+import { Router, provideRouter } from "@angular/router";
+import { mock } from "jest-mock-extended";
+import { BehaviorSubject, of } from "rxjs";
+
+import { EmptyComponent } from "@bitwarden/angular/platform/guard/feature-flag.guard.spec";
+import { Account, AccountService } from "@bitwarden/common/auth/abstractions/account.service";
+import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
+import { AuthenticationStatus } from "@bitwarden/common/auth/enums/authentication-status";
+import { UserId } from "@bitwarden/common/types/guid";
+
+import { redirectToVaultIfUnlockedGuard } from "./redirect-to-vault-if-unlocked.guard";
+
+describe("redirectToVaultIfUnlockedGuard", () => {
+ const activeUser: Account = {
+ id: "userId" as UserId,
+ email: "test@email.com",
+ emailVerified: true,
+ name: "Test User",
+ };
+
+ const setup = (activeUser: Account | null, authStatus: AuthenticationStatus | null) => {
+ const accountService = mock();
+ const authService = mock();
+
+ accountService.activeAccount$ = new BehaviorSubject(activeUser);
+ authService.authStatusFor$.mockReturnValue(of(authStatus));
+
+ const testBed = TestBed.configureTestingModule({
+ providers: [
+ { provide: AccountService, useValue: accountService },
+ { provide: AuthService, useValue: authService },
+ provideRouter([
+ { path: "", component: EmptyComponent },
+ { path: "vault", component: EmptyComponent },
+ {
+ path: "guarded-route",
+ component: EmptyComponent,
+ canActivate: [redirectToVaultIfUnlockedGuard()],
+ },
+ ]),
+ ],
+ });
+
+ return {
+ router: testBed.inject(Router),
+ };
+ };
+
+ it("should be created", () => {
+ const { router } = setup(null, null);
+ expect(router).toBeTruthy();
+ });
+
+ it("should redirect to /vault if the user is AuthenticationStatus.Unlocked", async () => {
+ // Arrange
+ const { router } = setup(activeUser, AuthenticationStatus.Unlocked);
+
+ // Act
+ await router.navigate(["guarded-route"]);
+
+ // Assert
+ expect(router.url).toBe("/vault");
+ });
+
+ it("should allow navigation to continue to the route if there is no active user", async () => {
+ // Arrange
+ const { router } = setup(null, null);
+
+ // Act
+ await router.navigate(["guarded-route"]);
+
+ // Assert
+ expect(router.url).toBe("/guarded-route");
+ });
+
+ it("should allow navigation to continue to the route if the user is AuthenticationStatus.LoggedOut", async () => {
+ // Arrange
+ const { router } = setup(null, AuthenticationStatus.LoggedOut);
+
+ // Act
+ await router.navigate(["guarded-route"]);
+
+ // Assert
+ expect(router.url).toBe("/guarded-route");
+ });
+
+ it("should allow navigation to continue to the route if the user is AuthenticationStatus.Locked", async () => {
+ // Arrange
+ const { router } = setup(null, AuthenticationStatus.Locked);
+
+ // Act
+ await router.navigate(["guarded-route"]);
+
+ // Assert
+ expect(router.url).toBe("/guarded-route");
+ });
+});
diff --git a/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.ts b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.ts
new file mode 100644
index 00000000000..c39bce06a45
--- /dev/null
+++ b/libs/angular/src/auth/guards/redirect-to-vault-if-unlocked/redirect-to-vault-if-unlocked.guard.ts
@@ -0,0 +1,36 @@
+import { inject } from "@angular/core";
+import { CanActivateFn, Router } from "@angular/router";
+import { firstValueFrom } from "rxjs";
+
+import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
+import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
+import { AuthenticationStatus } from "@bitwarden/common/auth/enums/authentication-status";
+
+/**
+ * Redirects the user to `/vault` if they are `Unlocked`. Otherwise, it allows access to the route.
+ * See ./redirect-to-vault-if-unlocked/README.md for more details.
+ */
+export function redirectToVaultIfUnlockedGuard(): CanActivateFn {
+ return async () => {
+ const accountService = inject(AccountService);
+ const authService = inject(AuthService);
+ const router = inject(Router);
+
+ const activeUser = await firstValueFrom(accountService.activeAccount$);
+
+ // If there is no active user, allow access to the route
+ if (!activeUser) {
+ return true;
+ }
+
+ const authStatus = await firstValueFrom(authService.authStatusFor$(activeUser.id));
+
+ // If user is Unlocked, redirect to vault
+ if (authStatus === AuthenticationStatus.Unlocked) {
+ return router.createUrlTree(["/vault"]);
+ }
+
+ // If user is LoggedOut or Locked, allow access to the route
+ return true;
+ };
+}
diff --git a/libs/auth/src/angular/login-via-auth-request/auth_request_login_readme.md b/libs/auth/src/angular/login-via-auth-request/README.md
similarity index 77%
rename from libs/auth/src/angular/login-via-auth-request/auth_request_login_readme.md
rename to libs/auth/src/angular/login-via-auth-request/README.md
index 240316f788c..3396ba8698b 100644
--- a/libs/auth/src/angular/login-via-auth-request/auth_request_login_readme.md
+++ b/libs/auth/src/angular/login-via-auth-request/README.md
@@ -1,11 +1,22 @@
-# Authentication Flows Documentation
+# Login via Auth Request Documentation
+
+
+
+**Table of Contents**
+
+> - [Standard Auth Request Flows](#standard-auth-request-flows)
+> - [Admin Auth Request Flow](#admin-auth-request-flow)
+> - [Summary Table](#summary-table)
+> - [State Management](#state-management)
+
+
## Standard Auth Request Flows
### Flow 1: Unauthed user requests approval from device; Approving device has a masterKey in memory
1. Unauthed user clicks "Login with device"
-2. Navigates to /login-with-device which creates a StandardAuthRequest
+2. Navigates to `/login-with-device` which creates a `StandardAuthRequest`
3. Receives approval from a device with authRequestPublicKey(masterKey)
4. Decrypts masterKey
5. Decrypts userKey
@@ -14,7 +25,7 @@
### Flow 2: Unauthed user requests approval from device; Approving device does NOT have a masterKey in memory
1. Unauthed user clicks "Login with device"
-2. Navigates to /login-with-device which creates a StandardAuthRequest
+2. Navigates to `/login-with-device` which creates a `StandardAuthRequest`
3. Receives approval from a device with authRequestPublicKey(userKey)
4. Decrypts userKey
5. Proceeds to vault
@@ -34,9 +45,9 @@ get into this flow:
### Flow 3: Authed SSO TD user requests approval from device; Approving device has a masterKey in memory
1. SSO TD user authenticates via SSO
-2. Navigates to /login-initiated
+2. Navigates to `/login-initiated`
3. Clicks "Approve from your other device"
-4. Navigates to /login-with-device which creates a StandardAuthRequest
+4. Navigates to `/login-with-device` which creates a `StandardAuthRequest`
5. Receives approval from device with authRequestPublicKey(masterKey)
6. Decrypts masterKey
7. Decrypts userKey
@@ -46,22 +57,24 @@ get into this flow:
### Flow 4: Authed SSO TD user requests approval from device; Approving device does NOT have a masterKey in memory
1. SSO TD user authenticates via SSO
-2. Navigates to /login-initiated
+2. Navigates to `/login-initiated`
3. Clicks "Approve from your other device"
-4. Navigates to /login-with-device which creates a StandardAuthRequest
+4. Navigates to `/login-with-device` which creates a `StandardAuthRequest`
5. Receives approval from device with authRequestPublicKey(userKey)
6. Decrypts userKey
7. Establishes trust (if required)
8. Proceeds to vault
+
+
## Admin Auth Request Flow
### Flow: Authed SSO TD user requests admin approval
1. SSO TD user authenticates via SSO
-2. Navigates to /login-initiated
+2. Navigates to `/login-initiated`
3. Clicks "Request admin approval"
-4. Navigates to /admin-approval-requested which creates an AdminAuthRequest
+4. Navigates to `/admin-approval-requested` which creates an `AdminAuthRequest`
5. Receives approval from device with authRequestPublicKey(userKey)
6. Decrypts userKey
7. Establishes trust (if required)
@@ -70,21 +83,25 @@ get into this flow:
**Note:** TDE users are required to be enrolled in admin account recovery, which gives the admin access to the user's
userKey. This is how admins are able to send over the authRequestPublicKey(userKey) to the user to allow them to unlock.
+
+
## Summary Table
-| Flow | Auth Status | Clicks Button [active route] | Navigates to | Approving device has masterKey in memory\* |
-| --------------- | ----------- | --------------------------------------------------- | ------------------------- | ------------------------------------------------- |
-| Standard Flow 1 | unauthed | "Login with device" [/login] | /login-with-device | yes |
-| Standard Flow 2 | unauthed | "Login with device" [/login] | /login-with-device | no |
-| Standard Flow 3 | authed | "Approve from your other device" [/login-initiated] | /login-with-device | yes |
-| Standard Flow 4 | authed | "Approve from your other device" [/login-initiated] | /login-with-device | no |
-| Admin Flow | authed | "Request admin approval" [/login-initiated] | /admin-approval-requested | NA - admin requests always send encrypted userKey |
+| Flow | Auth Status | Clicks Button [active route] | Navigates to | Approving device has masterKey in memory\* |
+| --------------- | ----------- | ----------------------------------------------------- | --------------------------- | ------------------------------------------------- |
+| Standard Flow 1 | unauthed | "Login with device" [`/login`] | `/login-with-device` | yes |
+| Standard Flow 2 | unauthed | "Login with device" [`/login`] | `/login-with-device` | no |
+| Standard Flow 3 | authed | "Approve from your other device" [`/login-initiated`] | `/login-with-device` | yes |
+| Standard Flow 4 | authed | "Approve from your other device" [`/login-initiated`] | `/login-with-device` | no |
+| Admin Flow | authed | "Request admin approval" [`/login-initiated`] | `/admin-approval-requested` | NA - admin requests always send encrypted userKey |
**Note:** The phrase "in memory" here is important. It is possible for a user to have a master password for their
account, but not have a masterKey IN MEMORY for a specific device. For example, if a user registers an account with a
master password, then joins an SSO TD org, then logs in to a device via SSO and admin auth request, they are now logged
into that device but that device does not have masterKey IN MEMORY.
+
+
## State Management
### View Cache
@@ -102,6 +119,8 @@ The cache is used to:
2. Allow resumption of pending auth requests
3. Enable processing of approved requests after extension close and reopen.
+
+
### Component State Variables
Key state variables maintained during the authentication process:
@@ -149,6 +168,8 @@ protected flow = Flow.StandardAuthRequest
- Affects UI rendering and request handling
- Set based on route and authentication state
+
+
### State Flow Examples
#### Standard Auth Request Cache Flow
@@ -186,6 +207,8 @@ protected flow = Flow.StandardAuthRequest
- Either resumes monitoring or starts new request
- Clears state after successful approval
+
+
### State Cleanup
State cleanup occurs in several scenarios:
From 99b1e7adf11a4b5e03566fce60c086ac7ace1cc4 Mon Sep 17 00:00:00 2001
From: rr-bw <102181210+rr-bw@users.noreply.github.com>
Date: Thu, 17 Jul 2025 14:40:57 -0700
Subject: [PATCH 07/54] feat(extension-login-approvals) [Auth/PM-14939
follow-up] add missing translations to browser when using extension tab
(table view) (#15667)
---
apps/browser/src/_locales/en/messages.json | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 7b1262627b6..37d64c3416b 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -3479,6 +3479,12 @@
"youDeniedLoginAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
},
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3645,6 +3651,31 @@
"loginRequest": {
"message": "Login request"
},
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
"justNow": {
"message": "Just now"
},
From f56e05404bed06b402350f54ff72dcdfa9fa3451 Mon Sep 17 00:00:00 2001
From: Addison Beck
Date: Fri, 18 Jul 2025 08:34:47 -0400
Subject: [PATCH 08/54] build: reset desktop version to 7.0 (#15674)
---
apps/desktop/package.json | 2 +-
apps/desktop/src/package-lock.json | 2 +-
apps/desktop/src/package.json | 2 +-
package-lock.json | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/apps/desktop/package.json b/apps/desktop/package.json
index 005b823253f..2ab88fed621 100644
--- a/apps/desktop/package.json
+++ b/apps/desktop/package.json
@@ -1,7 +1,7 @@
{
"name": "@bitwarden/desktop",
"description": "A secure and free password manager for all of your devices.",
- "version": "2025.7.1",
+ "version": "2025.7.0",
"keywords": [
"bitwarden",
"password",
diff --git a/apps/desktop/src/package-lock.json b/apps/desktop/src/package-lock.json
index 2cc106d07b0..01872408a10 100644
--- a/apps/desktop/src/package-lock.json
+++ b/apps/desktop/src/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@bitwarden/desktop",
- "version": "2025.7.1",
+ "version": "2025.7.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
diff --git a/apps/desktop/src/package.json b/apps/desktop/src/package.json
index 8457cb23f74..0128692f3b4 100644
--- a/apps/desktop/src/package.json
+++ b/apps/desktop/src/package.json
@@ -2,7 +2,7 @@
"name": "@bitwarden/desktop",
"productName": "Bitwarden",
"description": "A secure and free password manager for all of your devices.",
- "version": "2025.7.1",
+ "version": "2025.7.0",
"author": "Bitwarden Inc. (https://bitwarden.com)",
"homepage": "https://bitwarden.com",
"license": "GPL-3.0",
diff --git a/package-lock.json b/package-lock.json
index 541c596c78a..e6d4a0b9b89 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -282,7 +282,7 @@
},
"apps/desktop": {
"name": "@bitwarden/desktop",
- "version": "2025.7.1",
+ "version": "2025.7.0",
"hasInstallScript": true,
"license": "GPL-3.0"
},
From 93f71482895791b70069f53f04fdc488d167c91a Mon Sep 17 00:00:00 2001
From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com>
Date: Fri, 18 Jul 2025 09:47:17 -0400
Subject: [PATCH 09/54] fix(EmergencyAccess): [Auth/PM-23860] - Restore contact
removal functionality (#15666)
* PM-23860 - EmergencyAccessService - convert types from response model to actual constructed type to avoid structural typing issue at runtime
* PM-23860 - EmergencyAccessService tests - add tests to both methods to prevent this from being possible again.
---
.../models/emergency-access.ts | 40 +++++
.../services/emergency-access.service.spec.ts | 139 +++++++++++++++++-
.../services/emergency-access.service.ts | 12 +-
3 files changed, 183 insertions(+), 8 deletions(-)
diff --git a/apps/web/src/app/auth/emergency-access/models/emergency-access.ts b/apps/web/src/app/auth/emergency-access/models/emergency-access.ts
index b8ae5907bb9..51edca6e671 100644
--- a/apps/web/src/app/auth/emergency-access/models/emergency-access.ts
+++ b/apps/web/src/app/auth/emergency-access/models/emergency-access.ts
@@ -5,6 +5,10 @@ import { KdfType } from "@bitwarden/key-management";
import { EmergencyAccessStatusType } from "../enums/emergency-access-status-type";
import { EmergencyAccessType } from "../enums/emergency-access-type";
+import {
+ EmergencyAccessGranteeDetailsResponse,
+ EmergencyAccessGrantorDetailsResponse,
+} from "../response/emergency-access.response";
export class GranteeEmergencyAccess {
id: string;
@@ -16,6 +20,24 @@ export class GranteeEmergencyAccess {
waitTimeDays: number;
creationDate: string;
avatarColor: string;
+
+ constructor(partial: Partial = {}) {
+ Object.assign(this, partial);
+ }
+
+ static fromResponse(response: EmergencyAccessGranteeDetailsResponse) {
+ return new GranteeEmergencyAccess({
+ id: response.id,
+ granteeId: response.granteeId,
+ name: response.name,
+ email: response.email,
+ type: response.type,
+ status: response.status,
+ waitTimeDays: response.waitTimeDays,
+ creationDate: response.creationDate,
+ avatarColor: response.avatarColor,
+ });
+ }
}
export class GrantorEmergencyAccess {
@@ -28,6 +50,24 @@ export class GrantorEmergencyAccess {
waitTimeDays: number;
creationDate: string;
avatarColor: string;
+
+ constructor(partial: Partial = {}) {
+ Object.assign(this, partial);
+ }
+
+ static fromResponse(response: EmergencyAccessGrantorDetailsResponse) {
+ return new GrantorEmergencyAccess({
+ id: response.id,
+ grantorId: response.grantorId,
+ name: response.name,
+ email: response.email,
+ type: response.type,
+ status: response.status,
+ waitTimeDays: response.waitTimeDays,
+ creationDate: response.creationDate,
+ avatarColor: response.avatarColor,
+ });
+ }
}
export class TakeoverTypeEmergencyAccess {
diff --git a/apps/web/src/app/auth/emergency-access/services/emergency-access.service.spec.ts b/apps/web/src/app/auth/emergency-access/services/emergency-access.service.spec.ts
index 752e9dc1ce0..05373534ce7 100644
--- a/apps/web/src/app/auth/emergency-access/services/emergency-access.service.spec.ts
+++ b/apps/web/src/app/auth/emergency-access/services/emergency-access.service.spec.ts
@@ -22,9 +22,11 @@ import { KdfType, KeyService } from "@bitwarden/key-management";
import { EmergencyAccessStatusType } from "../enums/emergency-access-status-type";
import { EmergencyAccessType } from "../enums/emergency-access-type";
+import { GranteeEmergencyAccess, GrantorEmergencyAccess } from "../models/emergency-access";
import { EmergencyAccessPasswordRequest } from "../request/emergency-access-password.request";
import {
EmergencyAccessGranteeDetailsResponse,
+ EmergencyAccessGrantorDetailsResponse,
EmergencyAccessTakeoverResponse,
} from "../response/emergency-access.response";
@@ -242,11 +244,19 @@ describe("EmergencyAccessService", () => {
const mockEmergencyAccess = {
data: [
- createMockEmergencyAccess("0", "EA 0", EmergencyAccessStatusType.Invited),
- createMockEmergencyAccess("1", "EA 1", EmergencyAccessStatusType.Accepted),
- createMockEmergencyAccess("2", "EA 2", EmergencyAccessStatusType.Confirmed),
- createMockEmergencyAccess("3", "EA 3", EmergencyAccessStatusType.RecoveryInitiated),
- createMockEmergencyAccess("4", "EA 4", EmergencyAccessStatusType.RecoveryApproved),
+ createMockEmergencyAccessGranteeDetails("0", "EA 0", EmergencyAccessStatusType.Invited),
+ createMockEmergencyAccessGranteeDetails("1", "EA 1", EmergencyAccessStatusType.Accepted),
+ createMockEmergencyAccessGranteeDetails("2", "EA 2", EmergencyAccessStatusType.Confirmed),
+ createMockEmergencyAccessGranteeDetails(
+ "3",
+ "EA 3",
+ EmergencyAccessStatusType.RecoveryInitiated,
+ ),
+ createMockEmergencyAccessGranteeDetails(
+ "4",
+ "EA 4",
+ EmergencyAccessStatusType.RecoveryApproved,
+ ),
],
} as ListResponse;
@@ -295,9 +305,113 @@ describe("EmergencyAccessService", () => {
).rejects.toThrow("New user key is required for rotation.");
});
});
+
+ describe("getEmergencyAccessTrusted", () => {
+ it("should return an empty array if no emergency access is granted", async () => {
+ emergencyAccessApiService.getEmergencyAccessTrusted.mockResolvedValue({
+ data: [],
+ } as ListResponse);
+
+ const result = await emergencyAccessService.getEmergencyAccessTrusted();
+
+ expect(result).toEqual([]);
+ });
+
+ it("should return an empty array if the API returns an empty response", async () => {
+ emergencyAccessApiService.getEmergencyAccessTrusted.mockResolvedValue(
+ null as unknown as ListResponse,
+ );
+
+ const result = await emergencyAccessService.getEmergencyAccessTrusted();
+
+ expect(result).toEqual([]);
+ });
+
+ it("should return a list of trusted emergency access contacts", async () => {
+ const mockEmergencyAccess = [
+ createMockEmergencyAccessGranteeDetails("1", "EA 1", EmergencyAccessStatusType.Invited),
+ createMockEmergencyAccessGranteeDetails("2", "EA 2", EmergencyAccessStatusType.Invited),
+ createMockEmergencyAccessGranteeDetails("3", "EA 3", EmergencyAccessStatusType.Accepted),
+ createMockEmergencyAccessGranteeDetails("4", "EA 4", EmergencyAccessStatusType.Confirmed),
+ createMockEmergencyAccessGranteeDetails(
+ "5",
+ "EA 5",
+ EmergencyAccessStatusType.RecoveryInitiated,
+ ),
+ ];
+ emergencyAccessApiService.getEmergencyAccessTrusted.mockResolvedValue({
+ data: mockEmergencyAccess,
+ } as ListResponse);
+
+ const result = await emergencyAccessService.getEmergencyAccessTrusted();
+
+ expect(result).toHaveLength(mockEmergencyAccess.length);
+
+ result.forEach((access, index) => {
+ expect(access).toBeInstanceOf(GranteeEmergencyAccess);
+
+ expect(access.id).toBe(mockEmergencyAccess[index].id);
+ expect(access.name).toBe(mockEmergencyAccess[index].name);
+ expect(access.status).toBe(mockEmergencyAccess[index].status);
+ expect(access.type).toBe(mockEmergencyAccess[index].type);
+ });
+ });
+ });
+
+ describe("getEmergencyAccessGranted", () => {
+ it("should return an empty array if no emergency access is granted", async () => {
+ emergencyAccessApiService.getEmergencyAccessGranted.mockResolvedValue({
+ data: [],
+ } as ListResponse);
+
+ const result = await emergencyAccessService.getEmergencyAccessGranted();
+
+ expect(result).toEqual([]);
+ });
+
+ it("should return an empty array if the API returns an empty response", async () => {
+ emergencyAccessApiService.getEmergencyAccessGranted.mockResolvedValue(
+ null as unknown as ListResponse,
+ );
+
+ const result = await emergencyAccessService.getEmergencyAccessGranted();
+
+ expect(result).toEqual([]);
+ });
+
+ it("should return a list of granted emergency access contacts", async () => {
+ const mockEmergencyAccess = [
+ createMockEmergencyAccessGrantorDetails("1", "EA 1", EmergencyAccessStatusType.Invited),
+ createMockEmergencyAccessGrantorDetails("2", "EA 2", EmergencyAccessStatusType.Invited),
+ createMockEmergencyAccessGrantorDetails("3", "EA 3", EmergencyAccessStatusType.Accepted),
+ createMockEmergencyAccessGrantorDetails("4", "EA 4", EmergencyAccessStatusType.Confirmed),
+ createMockEmergencyAccessGrantorDetails(
+ "5",
+ "EA 5",
+ EmergencyAccessStatusType.RecoveryInitiated,
+ ),
+ ];
+ emergencyAccessApiService.getEmergencyAccessGranted.mockResolvedValue({
+ data: mockEmergencyAccess,
+ } as ListResponse);
+
+ const result = await emergencyAccessService.getEmergencyAccessGranted();
+
+ expect(result).toHaveLength(mockEmergencyAccess.length);
+
+ result.forEach((access, index) => {
+ expect(access).toBeInstanceOf(GrantorEmergencyAccess);
+
+ expect(access.id).toBe(mockEmergencyAccess[index].id);
+ expect(access.name).toBe(mockEmergencyAccess[index].name);
+ expect(access.status).toBe(mockEmergencyAccess[index].status);
+ expect(access.type).toBe(mockEmergencyAccess[index].type);
+ });
+ });
+ });
});
-function createMockEmergencyAccess(
+function createMockEmergencyAccessGranteeDetails(
id: string,
name: string,
status: EmergencyAccessStatusType,
@@ -309,3 +423,16 @@ function createMockEmergencyAccess(
emergencyAccess.status = status;
return emergencyAccess;
}
+
+function createMockEmergencyAccessGrantorDetails(
+ id: string,
+ name: string,
+ status: EmergencyAccessStatusType,
+): EmergencyAccessGrantorDetailsResponse {
+ const emergencyAccess = new EmergencyAccessGrantorDetailsResponse({});
+ emergencyAccess.id = id;
+ emergencyAccess.name = name;
+ emergencyAccess.type = 0;
+ emergencyAccess.status = status;
+ return emergencyAccess;
+}
diff --git a/apps/web/src/app/auth/emergency-access/services/emergency-access.service.ts b/apps/web/src/app/auth/emergency-access/services/emergency-access.service.ts
index 673ab7443f9..a814af32505 100644
--- a/apps/web/src/app/auth/emergency-access/services/emergency-access.service.ts
+++ b/apps/web/src/app/auth/emergency-access/services/emergency-access.service.ts
@@ -77,14 +77,22 @@ export class EmergencyAccessService
* Gets all emergency access that the user has been granted.
*/
async getEmergencyAccessTrusted(): Promise {
- return (await this.emergencyAccessApiService.getEmergencyAccessTrusted()).data;
+ const listResponse = await this.emergencyAccessApiService.getEmergencyAccessTrusted();
+ if (!listResponse || listResponse.data.length === 0) {
+ return [];
+ }
+ return listResponse.data.map((response) => GranteeEmergencyAccess.fromResponse(response));
}
/**
* Gets all emergency access that the user has granted.
*/
async getEmergencyAccessGranted(): Promise {
- return (await this.emergencyAccessApiService.getEmergencyAccessGranted()).data;
+ const listResponse = await this.emergencyAccessApiService.getEmergencyAccessGranted();
+ if (!listResponse || listResponse.data.length === 0) {
+ return [];
+ }
+ return listResponse.data.map((response) => GrantorEmergencyAccess.fromResponse(response));
}
/**
From 4d1171dd5a7824dcec02504a394143d2f64217e8 Mon Sep 17 00:00:00 2001
From: Bryan Cunningham
Date: Fri, 18 Jul 2025 10:04:12 -0400
Subject: [PATCH 10/54] [CL-456] Add container story (#15621)
* add container story
* Update libs/components/src/container/container.component.ts
Co-authored-by: Vicki League
* use lorem ipsum for example
---------
Co-authored-by: Vicki League
---
.../src/container/container.component.ts | 2 +-
libs/components/src/container/container.mdx | 13 +++++++
.../src/container/container.stories.ts | 34 +++++++++++++++++++
3 files changed, 48 insertions(+), 1 deletion(-)
create mode 100644 libs/components/src/container/container.mdx
create mode 100644 libs/components/src/container/container.stories.ts
diff --git a/libs/components/src/container/container.component.ts b/libs/components/src/container/container.component.ts
index 2f9e15c06b8..9f6a4cbef94 100644
--- a/libs/components/src/container/container.component.ts
+++ b/libs/components/src/container/container.component.ts
@@ -1,7 +1,7 @@
import { Component } from "@angular/core";
/**
- * Generic container that constrains page content width.
+ * bit-container is a minimally styled component that limits the max width of its content to the tailwind theme variable '4xl'. '4xl' is equal to the value of 56rem
*/
@Component({
selector: "bit-container",
diff --git a/libs/components/src/container/container.mdx b/libs/components/src/container/container.mdx
new file mode 100644
index 00000000000..35e0c69587f
--- /dev/null
+++ b/libs/components/src/container/container.mdx
@@ -0,0 +1,13 @@
+import { Meta, Primary, Title, Description } from "@storybook/addon-docs";
+
+import * as stories from "./container.stories";
+
+
+
+```ts
+import { ContainerComponent } from "@bitwarden/components";
+```
+
+
+
+
diff --git a/libs/components/src/container/container.stories.ts b/libs/components/src/container/container.stories.ts
new file mode 100644
index 00000000000..7d9078db638
--- /dev/null
+++ b/libs/components/src/container/container.stories.ts
@@ -0,0 +1,34 @@
+import { Meta, moduleMetadata, StoryObj } from "@storybook/angular";
+
+import { ContainerComponent } from "./container.component";
+
+export default {
+ title: "Component Library/Container",
+ component: ContainerComponent,
+ decorators: [
+ moduleMetadata({
+ imports: [ContainerComponent],
+ }),
+ ],
+ parameters: {
+ design: {
+ type: "figma",
+ url: "https://www.figma.com/design/Zt3YSeb6E6lebAffrNLa0h/Tailwind-Component-Library?node-id=21662-47329&t=k6OTDDPZOTtypRqo-11",
+ },
+ },
+} as Meta;
+
+type Story = StoryObj;
+
+export const Container: Story = {
+ render: (args) => ({
+ props: args,
+ template: /*html*/ `
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed malesuada felis nulla, dignissim suscipit metus posuere vel. Duis eget porttitor arcu. Praesent tempor sodales nisi ut rhoncus. Curabitur vel enim eget est elementum finibus nec vitae erat. Duis dapibus, purus varius porttitor facilisis, justo nibh scelerisque tortor, consequat eleifend augue mi et nisi. Pellentesque convallis eget sem vitae malesuada. In hac habitasse platea dictumst. Suspendisse vulputate, neque in feugiat ultricies, mi diam malesuada tellus, at ultrices nisi enim nec nunc. Integer sapien mi, facilisis sed ultrices eget, dapibus sed velit. Aenean convallis nulla id lacus mattis gravida.
+
+
Etiam quis ipsum in risus euismod sagittis ac vel lorem. Donec eget mollis augue. Maecenas vitae libero ornare felis sagittis consequat et nec urna. Integer velit sapien, mollis non magna consectetur, laoreet placerat risus. Pellentesque bibendum ante in diam commodo imperdiet. Donec ante ligula, interdum eu facilisis non, commodo eu dolor. Cras rutrum imperdiet tortor eget finibus. Donec fringilla vitae libero sed tincidunt. Quisque nulla quam, consectetur et dictum sit amet, ultrices quis tortor. Cras lacinia, lacus sed venenatis luctus, risus odio ultricies lacus, eu lacinia sapien nisl vel augue. Nunc fermentum ac nisl at dictum. Nulla gravida, odio ut pellentesque commodo, sapien urna ultrices enim, ut euismod odio nisi ac justo. Pellentesque auctor erat sit amet semper convallis. In finibus enim in lorem commodo, id pretium ligula finibus. Cras vehicula nisl eget gravida dapibus.
+
+ `,
+ }),
+};
From 8e185e023afbe83e4037b9a0f40dbab92d226a3e Mon Sep 17 00:00:00 2001
From: rr-bw <102181210+rr-bw@users.noreply.github.com>
Date: Fri, 18 Jul 2025 07:07:22 -0700
Subject: [PATCH 11/54] fix(extension-login-approval): [Auth/PM-14939
follow-up-2] feature flag route in Extension (#15668)
---
apps/browser/src/popup/app-routing.module.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts
index 9e55cfce2ce..52a60d9c23d 100644
--- a/apps/browser/src/popup/app-routing.module.ts
+++ b/apps/browser/src/popup/app-routing.module.ts
@@ -268,7 +268,7 @@ const routes: Routes = [
{
path: "device-management",
component: ExtensionDeviceManagementComponent,
- canActivate: [authGuard],
+ canActivate: [canAccessFeature(FeatureFlag.PM14938_BrowserExtensionLoginApproval), authGuard],
data: { elevation: 1 } satisfies RouteDataProperties,
},
{
From 8811ec41abf31a500d82ae4364c6af1641e17361 Mon Sep 17 00:00:00 2001
From: Colton Hurst
Date: Fri, 18 Jul 2025 10:30:19 -0400
Subject: [PATCH 12/54] [PM-22788] Add Autotype Crate and Windowing Functions
(#15317)
* [PM-22783] Add initial feature flag and settings toggle for autotype MVP
* [PM-22783] Undo Cargo.lock changes
* [PM-22783] Disable console.log block
* [PM-22783] Lint fix
* [PM-22783] Small updates
* [PM-22783] Build fix
* [PM-22783] Use combineLatest in updating the desktop autotype service
* [PM-22783] Check if the user is on Windows
* [PM-22783] Undo access selector html change, linting keeps removing this
* [PM-22783] Fix failing test
* [PM-22788] Add initial desktop native autotype crate based on spike ticket investigation
* [PM-22788] cargo fmt
* [PM-22783] Update autotypeEnabled to be stored in service
* [PM-22783] Add todo comments
* [PM-22783] Add SlimConfigService and MainDesktopAutotypeService
* [PM-22783] Small fixes
* [PM-22788] Add get_foreground_window_title() and cleanup
* [PM-22788] Add comment
* [PM-22788] Lint and cross platform build fixes
* [PM-22788] Update windows.rs in autotype_internal
* [PM-22788] Update windows.rs and dummy.rs in autotype_internal
* [PM-22788] cargo fmt
* [PM-22788] Edit napi result types
* [PM-22788] Edit napi result types again
* [PM-22788] Add autofill as a codeowner of the desktop_native/autotype directory
* [PM-22788] Refactor autotype code
* [PM-22788] Move autotype dependency out of windows only due to abstraction change
* [PM-22788] Fix lint errors
* [PM-22788] Updates based on PR comments
* [PM-22788] cargo fmt
---
.github/CODEOWNERS | 1 +
apps/desktop/desktop_native/Cargo.lock | 29 ++++---
apps/desktop/desktop_native/Cargo.toml | 4 +-
.../desktop_native/autotype/Cargo.toml | 10 +++
.../desktop_native/autotype/src/lib.rs | 12 +++
.../desktop_native/autotype/src/linux.rs | 3 +
.../desktop_native/autotype/src/macos.rs | 3 +
.../desktop_native/autotype/src/windows.rs | 75 +++++++++++++++++++
apps/desktop/desktop_native/napi/Cargo.toml | 1 +
apps/desktop/desktop_native/napi/index.d.ts | 3 +
apps/desktop/desktop_native/napi/src/lib.rs | 12 +++
.../main/main-desktop-autotype.service.ts | 6 ++
12 files changed, 147 insertions(+), 12 deletions(-)
create mode 100644 apps/desktop/desktop_native/autotype/Cargo.toml
create mode 100644 apps/desktop/desktop_native/autotype/src/lib.rs
create mode 100644 apps/desktop/desktop_native/autotype/src/linux.rs
create mode 100644 apps/desktop/desktop_native/autotype/src/macos.rs
create mode 100644 apps/desktop/desktop_native/autotype/src/windows.rs
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 9502a9c404d..ef2e26916e5 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -134,6 +134,7 @@ libs/common/src/autofill @bitwarden/team-autofill-dev
apps/desktop/macos/autofill-extension @bitwarden/team-autofill-dev
apps/desktop/src/app/components/fido2placeholder.component.ts @bitwarden/team-autofill-dev
apps/desktop/desktop_native/windows_plugin_authenticator @bitwarden/team-autofill-dev
+apps/desktop/desktop_native/autotype @bitwarden/team-autofill-dev
# DuckDuckGo integration
apps/desktop/native-messaging-test-runner @bitwarden/team-autofill-dev
apps/desktop/src/services/duckduckgo-message-handler.service.ts @bitwarden/team-autofill-dev
diff --git a/apps/desktop/desktop_native/Cargo.lock b/apps/desktop/desktop_native/Cargo.lock
index 4c514016675..70814c74106 100644
--- a/apps/desktop/desktop_native/Cargo.lock
+++ b/apps/desktop/desktop_native/Cargo.lock
@@ -349,6 +349,14 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
+[[package]]
+name = "autotype"
+version = "0.0.0"
+dependencies = [
+ "windows 0.61.1",
+ "windows-core 0.61.0",
+]
+
[[package]]
name = "backtrace"
version = "0.3.75"
@@ -912,6 +920,7 @@ name = "desktop_napi"
version = "0.0.0"
dependencies = [
"anyhow",
+ "autotype",
"base64",
"desktop_core",
"hex",
@@ -3677,7 +3686,7 @@ dependencies = [
"windows-implement 0.60.0",
"windows-interface 0.59.1",
"windows-link",
- "windows-result 0.3.2",
+ "windows-result 0.3.4",
"windows-strings",
]
@@ -3737,9 +3746,9 @@ dependencies = [
[[package]]
name = "windows-link"
-version = "0.1.1"
+version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
[[package]]
name = "windows-numerics"
@@ -3753,12 +3762,12 @@ dependencies = [
[[package]]
name = "windows-registry"
-version = "0.5.1"
+version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ad1da3e436dc7653dfdf3da67332e22bff09bb0e28b0239e1624499c7830842e"
+checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
dependencies = [
"windows-link",
- "windows-result 0.3.2",
+ "windows-result 0.3.4",
"windows-strings",
]
@@ -3773,18 +3782,18 @@ dependencies = [
[[package]]
name = "windows-result"
-version = "0.3.2"
+version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
+checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
dependencies = [
"windows-link",
]
[[package]]
name = "windows-strings"
-version = "0.4.0"
+version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
+checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
dependencies = [
"windows-link",
]
diff --git a/apps/desktop/desktop_native/Cargo.toml b/apps/desktop/desktop_native/Cargo.toml
index 8e12dded52c..21835c61585 100644
--- a/apps/desktop/desktop_native/Cargo.toml
+++ b/apps/desktop/desktop_native/Cargo.toml
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
-members = ["napi", "core", "proxy", "macos_provider", "windows_plugin_authenticator"]
+members = ["napi", "core", "proxy", "macos_provider", "windows_plugin_authenticator", "autotype"]
[workspace.package]
version = "0.0.0"
@@ -60,7 +60,7 @@ widestring = "=1.2.0"
windows = "=0.61.1"
windows-core = "=0.61.0"
windows-future = "=0.2.0"
-windows-registry = "=0.5.1"
+windows-registry = "=0.5.3"
zbus = "=5.5.0"
zbus_polkit = "=5.0.0"
zeroizing-alloc = "=0.1.0"
diff --git a/apps/desktop/desktop_native/autotype/Cargo.toml b/apps/desktop/desktop_native/autotype/Cargo.toml
new file mode 100644
index 00000000000..c8267c3e2ea
--- /dev/null
+++ b/apps/desktop/desktop_native/autotype/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "autotype"
+version.workspace = true
+license.workspace = true
+edition.workspace = true
+publish.workspace = true
+
+[target.'cfg(windows)'.dependencies]
+windows = { workspace = true, features = ["Win32_UI_Input_KeyboardAndMouse", "Win32_UI_WindowsAndMessaging"] }
+windows-core = { workspace = true }
diff --git a/apps/desktop/desktop_native/autotype/src/lib.rs b/apps/desktop/desktop_native/autotype/src/lib.rs
new file mode 100644
index 00000000000..e3083422eb2
--- /dev/null
+++ b/apps/desktop/desktop_native/autotype/src/lib.rs
@@ -0,0 +1,12 @@
+#[cfg_attr(target_os = "linux", path = "linux.rs")]
+#[cfg_attr(target_os = "macos", path = "macos.rs")]
+#[cfg_attr(target_os = "windows", path = "windows.rs")]
+mod windowing;
+
+/// Gets the title bar string for the foreground window.
+///
+/// TODO: The error handling will be improved in a future PR: PM-23615
+#[allow(clippy::result_unit_err)]
+pub fn get_foreground_window_title() -> std::result::Result {
+ windowing::get_foreground_window_title()
+}
diff --git a/apps/desktop/desktop_native/autotype/src/linux.rs b/apps/desktop/desktop_native/autotype/src/linux.rs
new file mode 100644
index 00000000000..aa06da21a49
--- /dev/null
+++ b/apps/desktop/desktop_native/autotype/src/linux.rs
@@ -0,0 +1,3 @@
+pub fn get_foreground_window_title() -> std::result::Result {
+ todo!("Bitwarden does not yet support Linux autotype");
+}
diff --git a/apps/desktop/desktop_native/autotype/src/macos.rs b/apps/desktop/desktop_native/autotype/src/macos.rs
new file mode 100644
index 00000000000..12a4ca08d3e
--- /dev/null
+++ b/apps/desktop/desktop_native/autotype/src/macos.rs
@@ -0,0 +1,3 @@
+pub fn get_foreground_window_title() -> std::result::Result {
+ todo!("Bitwarden does not yet support Mac OS autotype");
+}
diff --git a/apps/desktop/desktop_native/autotype/src/windows.rs b/apps/desktop/desktop_native/autotype/src/windows.rs
new file mode 100644
index 00000000000..d86d5dd35ae
--- /dev/null
+++ b/apps/desktop/desktop_native/autotype/src/windows.rs
@@ -0,0 +1,75 @@
+use std::ffi::OsString;
+use std::os::windows::ffi::OsStringExt;
+
+use windows::Win32::Foundation::HWND;
+use windows::Win32::UI::WindowsAndMessaging::{
+ GetForegroundWindow, GetWindowTextLengthW, GetWindowTextW,
+};
+
+/// Gets the title bar string for the foreground window.
+pub fn get_foreground_window_title() -> std::result::Result {
+ let Ok(window_handle) = get_foreground_window() else {
+ return Err(());
+ };
+ let Ok(Some(window_title)) = get_window_title(window_handle) else {
+ return Err(());
+ };
+
+ Ok(window_title)
+}
+
+/// Gets the foreground window handle.
+///
+/// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getforegroundwindow
+fn get_foreground_window() -> Result {
+ let foreground_window_handle = unsafe { GetForegroundWindow() };
+
+ if foreground_window_handle.is_invalid() {
+ return Err(());
+ }
+
+ Ok(foreground_window_handle)
+}
+
+/// Gets the length of the window title bar text.
+///
+/// TODO: Future improvement is to use GetLastError for better error handling
+///
+/// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getwindowtextlengthw
+fn get_window_title_length(window_handle: HWND) -> Result {
+ if window_handle.is_invalid() {
+ return Err(());
+ }
+
+ match usize::try_from(unsafe { GetWindowTextLengthW(window_handle) }) {
+ Ok(length) => Ok(length),
+ Err(_) => Err(()),
+ }
+}
+
+/// Gets the window title bar title.
+///
+/// TODO: Future improvement is to use GetLastError for better error handling
+///
+/// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getwindowtextw
+fn get_window_title(window_handle: HWND) -> Result
@@ -57,16 +58,17 @@
-
+ @if (canEditCollection || canDeleteCollection || canViewCollectionInfo) {
+
+ }
diff --git a/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts b/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
index 5d2b84aa10b..8271cc5a266 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-collection-row.component.ts
@@ -105,12 +105,4 @@ export class VaultCollectionRowComponent {
protected deleteCollection() {
this.onEvent.next({ type: "delete", items: [{ collection: this.collection }] });
}
-
- protected get showCheckbox() {
- if (this.collection?.id === Unassigned) {
- return false; // Never show checkbox for Unassigned
- }
-
- return this.canEditCollection || this.canDeleteCollection;
- }
}
diff --git a/apps/web/src/app/vault/individual-vault/vault-header/vault-header.component.html b/apps/web/src/app/vault/individual-vault/vault-header/vault-header.component.html
index 711d1166d7b..413b4792f4e 100644
--- a/apps/web/src/app/vault/individual-vault/vault-header/vault-header.component.html
+++ b/apps/web/src/app/vault/individual-vault/vault-header/vault-header.component.html
@@ -22,41 +22,48 @@
-
-
-
+ @if (collection != null && (canEditCollection || canDeleteCollection)) {
+
-
- {{ "editInfo" | i18n }}
-
-
-
- {{ "access" | i18n }}
-
-
-
-
- {{ "delete" | i18n }}
-
-
-
-
+ aria-haspopup="true"
+ >
+
+
+
+ {{ "editInfo" | i18n }}
+
+
+
+ {{ "access" | i18n }}
+
+
+
+
+ {{ "delete" | i18n }}
+
+
+
+
+ }
;
/** Whether 'Collection' option is shown in the 'New' dropdown */
- @Input() canCreateCollections: boolean;
+ @Input() canCreateCollections: boolean = false;
/** Emits an event when the new item button is clicked in the header */
@Output() onAddCipher = new EventEmitter();
@@ -106,7 +104,7 @@ export class VaultHeaderComponent {
return this.collection.node.organizationId;
}
- if (this.filter.organizationId !== undefined) {
+ if (this.filter?.organizationId !== undefined) {
return this.filter.organizationId;
}
@@ -119,10 +117,14 @@ export class VaultHeaderComponent {
}
protected get showBreadcrumbs() {
- return this.filter.collectionId !== undefined && this.filter.collectionId !== All;
+ return this.filter?.collectionId !== undefined && this.filter.collectionId !== All;
}
protected get title() {
+ if (this.filter === undefined) {
+ return "";
+ }
+
if (this.filter.collectionId === Unassigned) {
return this.i18nService.t("unassigned");
}
@@ -144,7 +146,7 @@ export class VaultHeaderComponent {
}
protected get icon() {
- return this.filter.collectionId && this.filter.collectionId !== All
+ return this.filter?.collectionId && this.filter.collectionId !== All
? "bwi-collection-shared"
: "";
}
diff --git a/libs/admin-console/src/common/collections/models/collection-admin.view.ts b/libs/admin-console/src/common/collections/models/collection-admin.view.ts
index cfc9996cd7a..dd7a57013ca 100644
--- a/libs/admin-console/src/common/collections/models/collection-admin.view.ts
+++ b/libs/admin-console/src/common/collections/models/collection-admin.view.ts
@@ -1,5 +1,3 @@
-// FIXME: Update this file to be type safe and remove this and next line
-// @ts-strict-ignore
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { CollectionAccessSelectionView } from "./collection-access-selection.view";
@@ -16,12 +14,12 @@ export class CollectionAdminView extends CollectionView {
* Flag indicating the collection has no active user or group assigned to it with CanManage permissions
* In this case, the collection can be managed by admins/owners or custom users with appropriate permissions
*/
- unmanaged: boolean;
+ unmanaged: boolean = false;
/**
* Flag indicating the user has been explicitly assigned to this Collection
*/
- assigned: boolean;
+ assigned: boolean = false;
constructor(response?: CollectionAccessDetailsResponse) {
super(response);
@@ -45,6 +43,10 @@ export class CollectionAdminView extends CollectionView {
* Returns true if the user can edit a collection (including user and group access) from the Admin Console.
*/
override canEdit(org: Organization): boolean {
+ if (this.isDefaultCollection) {
+ return false;
+ }
+
return (
org?.canEditAnyCollection ||
(this.unmanaged && org?.canEditUnmanagedCollections) ||
@@ -56,6 +58,10 @@ export class CollectionAdminView extends CollectionView {
* Returns true if the user can delete a collection from the Admin Console.
*/
override canDelete(org: Organization): boolean {
+ if (this.isDefaultCollection) {
+ return false;
+ }
+
return org?.canDeleteAnyCollection || super.canDelete(org);
}
@@ -63,6 +69,10 @@ export class CollectionAdminView extends CollectionView {
* Whether the user can modify user access to this collection
*/
canEditUserAccess(org: Organization): boolean {
+ if (this.isDefaultCollection) {
+ return false;
+ }
+
return (
(org.permissions.manageUsers && org.allowAdminAccessToAllCollectionItems) || this.canEdit(org)
);
@@ -72,6 +82,10 @@ export class CollectionAdminView extends CollectionView {
* Whether the user can modify group access to this collection
*/
canEditGroupAccess(org: Organization): boolean {
+ if (this.isDefaultCollection) {
+ return false;
+ }
+
return (
(org.permissions.manageGroups && org.allowAdminAccessToAllCollectionItems) ||
this.canEdit(org)
@@ -82,11 +96,13 @@ export class CollectionAdminView extends CollectionView {
* Returns true if the user can view collection info and access in a read-only state from the Admin Console
*/
override canViewCollectionInfo(org: Organization | undefined): boolean {
- if (this.isUnassignedCollection) {
+ if (this.isUnassignedCollection || this.isDefaultCollection) {
return false;
}
+ const isAdmin = org?.isAdmin ?? false;
+ const permissions = org?.permissions.editAnyCollection ?? false;
- return this.manage || org?.isAdmin || org?.permissions.editAnyCollection;
+ return this.manage || isAdmin || permissions;
}
/**
diff --git a/libs/admin-console/src/common/collections/models/collection.view.ts b/libs/admin-console/src/common/collections/models/collection.view.ts
index 7baf2e2b718..bce1d558f96 100644
--- a/libs/admin-console/src/common/collections/models/collection.view.ts
+++ b/libs/admin-console/src/common/collections/models/collection.view.ts
@@ -1,27 +1,25 @@
-// FIXME: Update this file to be type safe and remove this and next line
-// @ts-strict-ignore
import { Jsonify } from "type-fest";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { View } from "@bitwarden/common/models/view/view";
import { ITreeNodeObject } from "@bitwarden/common/vault/models/domain/tree-node";
-import { Collection, CollectionType } from "./collection";
+import { Collection, CollectionType, CollectionTypes } from "./collection";
import { CollectionAccessDetailsResponse } from "./collection.response";
export const NestingDelimiter = "/";
export class CollectionView implements View, ITreeNodeObject {
- id: string = null;
- organizationId: string = null;
- name: string = null;
- externalId: string = null;
+ id: string | undefined;
+ organizationId: string | undefined;
+ name: string | undefined;
+ externalId: string | undefined;
// readOnly applies to the items within a collection
- readOnly: boolean = null;
- hidePasswords: boolean = null;
- manage: boolean = null;
- assigned: boolean = null;
- type: CollectionType = null;
+ readOnly: boolean = false;
+ hidePasswords: boolean = false;
+ manage: boolean = false;
+ assigned: boolean = false;
+ type: CollectionType = CollectionTypes.SharedCollection;
constructor(c?: Collection | CollectionAccessDetailsResponse) {
if (!c) {
@@ -57,7 +55,11 @@ export class CollectionView implements View, ITreeNodeObject {
* Returns true if the user can edit a collection (including user and group access) from the individual vault.
* Does not include admin permissions - see {@link CollectionAdminView.canEdit}.
*/
- canEdit(org: Organization): boolean {
+ canEdit(org: Organization | undefined): boolean {
+ if (this.isDefaultCollection) {
+ return false;
+ }
+
if (org != null && org.id !== this.organizationId) {
throw new Error(
"Id of the organization provided does not match the org id of the collection.",
@@ -71,7 +73,7 @@ export class CollectionView implements View, ITreeNodeObject {
* Returns true if the user can delete a collection from the individual vault.
* Does not include admin permissions - see {@link CollectionAdminView.canDelete}.
*/
- canDelete(org: Organization): boolean {
+ canDelete(org: Organization | undefined): boolean {
if (org != null && org.id !== this.organizationId) {
throw new Error(
"Id of the organization provided does not match the org id of the collection.",
@@ -81,7 +83,7 @@ export class CollectionView implements View, ITreeNodeObject {
const canDeleteManagedCollections = !org?.limitCollectionDeletion || org.isAdmin;
// Only use individual permissions, not admin permissions
- return canDeleteManagedCollections && this.manage;
+ return canDeleteManagedCollections && this.manage && !this.isDefaultCollection;
}
/**
@@ -94,4 +96,8 @@ export class CollectionView implements View, ITreeNodeObject {
static fromJSON(obj: Jsonify) {
return Object.assign(new CollectionView(new Collection()), obj);
}
+
+ get isDefaultCollection() {
+ return this.type == CollectionTypes.DefaultUserCollection;
+ }
}
diff --git a/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts b/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
index 8302ff541aa..d90ae06a75f 100644
--- a/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
+++ b/libs/angular/src/vault/services/custom-nudges-services/empty-vault-nudge.service.ts
@@ -42,7 +42,7 @@ export class EmptyVaultNudgeService extends DefaultSingleNudgeService {
const orgIds = new Set(orgs.map((org) => org.id));
const canCreateCollections = orgs.some((org) => org.canCreateNewCollections);
const hasManageCollections = collections.some(
- (c) => c.manage && orgIds.has(c.organizationId),
+ (c) => c.manage && orgIds.has(c.organizationId!),
);
// When the user has dismissed the nudge or spotlight, return the nudge status directly
diff --git a/libs/angular/src/vault/services/custom-nudges-services/vault-settings-import-nudge.service.ts b/libs/angular/src/vault/services/custom-nudges-services/vault-settings-import-nudge.service.ts
index 2d86c76dff7..df0403ba4ab 100644
--- a/libs/angular/src/vault/services/custom-nudges-services/vault-settings-import-nudge.service.ts
+++ b/libs/angular/src/vault/services/custom-nudges-services/vault-settings-import-nudge.service.ts
@@ -46,7 +46,7 @@ export class VaultSettingsImportNudgeService extends DefaultSingleNudgeService {
const orgIds = new Set(orgs.map((org) => org.id));
const canCreateCollections = orgs.some((org) => org.canCreateNewCollections);
const hasManageCollections = collections.some(
- (c) => c.manage && orgIds.has(c.organizationId),
+ (c) => c.manage && orgIds.has(c.organizationId!),
);
// When the user has dismissed the nudge or spotlight, return the nudge status directly
diff --git a/libs/angular/src/vault/vault-filter/services/vault-filter.service.ts b/libs/angular/src/vault/vault-filter/services/vault-filter.service.ts
index fea57743055..0d633be868e 100644
--- a/libs/angular/src/vault/vault-filter/services/vault-filter.service.ts
+++ b/libs/angular/src/vault/vault-filter/services/vault-filter.service.ts
@@ -191,6 +191,9 @@ export function sortDefaultCollections(
.sort((a, b) => {
const aName = orgs.find((o) => o.id === a.organizationId)?.name ?? a.organizationId;
const bName = orgs.find((o) => o.id === b.organizationId)?.name ?? b.organizationId;
+ if (!aName || !bName) {
+ throw new Error("Collection does not have an organizationId.");
+ }
return collator.compare(aName, bName);
});
return [
diff --git a/libs/common/src/vault/models/domain/tree-node.ts b/libs/common/src/vault/models/domain/tree-node.ts
index 7af1d9e6ab4..7ba8e593908 100644
--- a/libs/common/src/vault/models/domain/tree-node.ts
+++ b/libs/common/src/vault/models/domain/tree-node.ts
@@ -16,6 +16,6 @@ export class TreeNode {
}
export interface ITreeNodeObject {
- id: string;
- name: string;
+ id: string | undefined;
+ name: string | undefined;
}
diff --git a/libs/importer/src/importers/base-importer.ts b/libs/importer/src/importers/base-importer.ts
index 9033997a475..463d61dbbdf 100644
--- a/libs/importer/src/importers/base-importer.ts
+++ b/libs/importer/src/importers/base-importer.ts
@@ -279,7 +279,7 @@ export abstract class BaseImporter {
result.collections = result.folders.map((f) => {
const collection = new CollectionView();
collection.name = f.name;
- collection.id = f.id;
+ collection.id = f.id ?? undefined; // folder id may be null, which is not suitable for collections.
return collection;
});
result.folderRelationships = [];
diff --git a/libs/vault/src/cipher-form/components/item-details/item-details-section.component.spec.ts b/libs/vault/src/cipher-form/components/item-details/item-details-section.component.spec.ts
index dfa0f9a89ca..db8e2007c61 100644
--- a/libs/vault/src/cipher-form/components/item-details/item-details-section.component.spec.ts
+++ b/libs/vault/src/cipher-form/components/item-details/item-details-section.component.spec.ts
@@ -31,7 +31,7 @@ const createMockCollection = (
organizationId: string,
readOnly = false,
canEdit = true,
-) => {
+): CollectionView => {
return {
id,
name,
@@ -42,6 +42,7 @@ const createMockCollection = (
manage: true,
assigned: true,
type: CollectionTypes.DefaultUserCollection,
+ isDefaultCollection: true,
canEditItems: jest.fn().mockReturnValue(canEdit),
canEdit: jest.fn(),
canDelete: jest.fn(),
From 5b1ddc91227f086a59662d55ec65bee8ab121b06 Mon Sep 17 00:00:00 2001
From: Vicki League
Date: Fri, 18 Jul 2025 11:47:51 -0400
Subject: [PATCH 14/54] [CL-793] Exclude checkbox component from desktop global
css (#15675)
---
apps/desktop/src/scss/base.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/desktop/src/scss/base.scss b/apps/desktop/src/scss/base.scss
index 494e91529ee..a95d82dacd4 100644
--- a/apps/desktop/src/scss/base.scss
+++ b/apps/desktop/src/scss/base.scss
@@ -66,7 +66,7 @@ a {
}
}
-input:not(bit-form-field input),
+input:not(bit-form-field input, input[bitcheckbox]),
select,
textarea:not(bit-form-field textarea) {
@include themify($themes) {
From 367f7a108cfa876ff5861699a0f0bc1e6ce2659c Mon Sep 17 00:00:00 2001
From: SmithThe4th
Date: Fri, 18 Jul 2025 14:09:19 -0400
Subject: [PATCH 15/54] Exclude Linked field type for ssh keys (#15662)
---
.../add-edit-custom-field-dialog.component.ts | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/libs/vault/src/cipher-form/components/custom-fields/add-edit-custom-field-dialog/add-edit-custom-field-dialog.component.ts b/libs/vault/src/cipher-form/components/custom-fields/add-edit-custom-field-dialog/add-edit-custom-field-dialog.component.ts
index 7ddcf902d70..7d56db4366b 100644
--- a/libs/vault/src/cipher-form/components/custom-fields/add-edit-custom-field-dialog/add-edit-custom-field-dialog.component.ts
+++ b/libs/vault/src/cipher-form/components/custom-fields/add-edit-custom-field-dialog/add-edit-custom-field-dialog.component.ts
@@ -71,8 +71,11 @@ export class AddEditCustomFieldDialogComponent {
if (this.data.disallowHiddenField && option.value === FieldType.Hidden) {
return false;
}
- // Filter out the Linked field type for Secure Notes
- if (this.data.cipherType === CipherType.SecureNote) {
+ // Filter out the Linked field type for Secure Notes and SSH Keys
+ if (
+ this.data.cipherType === CipherType.SecureNote ||
+ this.data.cipherType === CipherType.SshKey
+ ) {
return option.value !== FieldType.Linked;
}
From 436b3567dc9894f14645fc7a30cdb327ea7dbe64 Mon Sep 17 00:00:00 2001
From: Jordan Aasen <166539328+jaasen-livefront@users.noreply.github.com>
Date: Fri, 18 Jul 2025 15:08:21 -0700
Subject: [PATCH 16/54] [PM-23478] - Can view org's cards in AC (#15669)
* properly filter restricted item types in AC
* fix storybook
---
.../vault-items/vault-items.component.ts | 25 ++++++++++++++++---
.../vault-items/vault-items.stories.ts | 1 +
2 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
index e82b03a8815..79ba9a6d2e1 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts
@@ -2,11 +2,16 @@
// @ts-strict-ignore
import { SelectionModel } from "@angular/cdk/collections";
import { Component, EventEmitter, Input, Output } from "@angular/core";
+import { takeUntilDestroyed } from "@angular/core/rxjs-interop";
import { Observable, combineLatest, map, of, startWith, switchMap } from "rxjs";
import { CollectionView, Unassigned, CollectionAdminView } from "@bitwarden/admin-console/common";
import { Organization } from "@bitwarden/common/admin-console/models/domain/organization";
import { CipherAuthorizationService } from "@bitwarden/common/vault/services/cipher-authorization.service";
+import {
+ RestrictedCipherType,
+ RestrictedItemTypesService,
+} from "@bitwarden/common/vault/services/restricted-item-types.service";
import {
CipherViewLike,
CipherViewLikeUtils,
@@ -85,8 +90,12 @@ export class VaultItemsComponent {
protected canDeleteSelected$: Observable;
protected canRestoreSelected$: Observable;
protected disableMenu$: Observable;
+ private restrictedTypes: RestrictedCipherType[] = [];
- constructor(protected cipherAuthorizationService: CipherAuthorizationService) {
+ constructor(
+ protected cipherAuthorizationService: CipherAuthorizationService,
+ private restrictedItemTypesService: RestrictedItemTypesService,
+ ) {
this.canDeleteSelected$ = this.selection.changed.pipe(
startWith(null),
switchMap(() => {
@@ -114,6 +123,11 @@ export class VaultItemsComponent {
}),
);
+ this.restrictedItemTypesService.restricted$.pipe(takeUntilDestroyed()).subscribe((types) => {
+ this.restrictedTypes = types;
+ this.refreshItems();
+ });
+
this.canRestoreSelected$ = this.selection.changed.pipe(
startWith(null),
switchMap(() => {
@@ -342,9 +356,12 @@ export class VaultItemsComponent {
private refreshItems() {
const collections: VaultItem[] = this.collections.map((collection) => ({ collection }));
- const ciphers: VaultItem[] = this.ciphers.map((cipher) => ({
- cipher,
- }));
+ const ciphers: VaultItem[] = this.ciphers
+ .filter(
+ (cipher) =>
+ !this.restrictedItemTypesService.isCipherRestricted(cipher, this.restrictedTypes),
+ )
+ .map((cipher) => ({ cipher }));
const items: VaultItem[] = [].concat(collections).concat(ciphers);
// All ciphers are selectable, collections only if they can be edited or deleted
diff --git a/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts b/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
index 785c07fb634..78c4d21dede 100644
--- a/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
+++ b/apps/web/src/app/vault/components/vault-items/vault-items.stories.ts
@@ -139,6 +139,7 @@ export default {
provide: RestrictedItemTypesService,
useValue: {
restricted$: of([]), // No restricted item types for this story
+ isCipherRestricted: () => false, // No restrictions for this story
},
},
],
From cdc811daf8fe9ee93e9d533cc5f082de45c6dded Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 16:42:12 +0200
Subject: [PATCH 17/54] Autosync the updated translations (#15672)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/desktop/src/locales/af/messages.json | 23 ++++++++
apps/desktop/src/locales/ar/messages.json | 23 ++++++++
apps/desktop/src/locales/az/messages.json | 27 ++++++++-
apps/desktop/src/locales/be/messages.json | 23 ++++++++
apps/desktop/src/locales/bg/messages.json | 23 ++++++++
apps/desktop/src/locales/bn/messages.json | 23 ++++++++
apps/desktop/src/locales/bs/messages.json | 23 ++++++++
apps/desktop/src/locales/ca/messages.json | 23 ++++++++
apps/desktop/src/locales/cs/messages.json | 23 ++++++++
apps/desktop/src/locales/cy/messages.json | 23 ++++++++
apps/desktop/src/locales/da/messages.json | 23 ++++++++
apps/desktop/src/locales/de/messages.json | 31 ++++++++--
apps/desktop/src/locales/el/messages.json | 23 ++++++++
apps/desktop/src/locales/en_GB/messages.json | 23 ++++++++
apps/desktop/src/locales/en_IN/messages.json | 23 ++++++++
apps/desktop/src/locales/eo/messages.json | 23 ++++++++
apps/desktop/src/locales/es/messages.json | 61 ++++++++++++++------
apps/desktop/src/locales/et/messages.json | 23 ++++++++
apps/desktop/src/locales/eu/messages.json | 23 ++++++++
apps/desktop/src/locales/fa/messages.json | 23 ++++++++
apps/desktop/src/locales/fi/messages.json | 23 ++++++++
apps/desktop/src/locales/fil/messages.json | 23 ++++++++
apps/desktop/src/locales/fr/messages.json | 23 ++++++++
apps/desktop/src/locales/gl/messages.json | 23 ++++++++
apps/desktop/src/locales/he/messages.json | 23 ++++++++
apps/desktop/src/locales/hi/messages.json | 23 ++++++++
apps/desktop/src/locales/hr/messages.json | 23 ++++++++
apps/desktop/src/locales/hu/messages.json | 23 ++++++++
apps/desktop/src/locales/id/messages.json | 23 ++++++++
apps/desktop/src/locales/it/messages.json | 23 ++++++++
apps/desktop/src/locales/ja/messages.json | 23 ++++++++
apps/desktop/src/locales/ka/messages.json | 23 ++++++++
apps/desktop/src/locales/km/messages.json | 23 ++++++++
apps/desktop/src/locales/kn/messages.json | 23 ++++++++
apps/desktop/src/locales/ko/messages.json | 23 ++++++++
apps/desktop/src/locales/lt/messages.json | 23 ++++++++
apps/desktop/src/locales/lv/messages.json | 23 ++++++++
apps/desktop/src/locales/me/messages.json | 23 ++++++++
apps/desktop/src/locales/ml/messages.json | 23 ++++++++
apps/desktop/src/locales/mr/messages.json | 23 ++++++++
apps/desktop/src/locales/my/messages.json | 23 ++++++++
apps/desktop/src/locales/nb/messages.json | 23 ++++++++
apps/desktop/src/locales/ne/messages.json | 23 ++++++++
apps/desktop/src/locales/nl/messages.json | 23 ++++++++
apps/desktop/src/locales/nn/messages.json | 23 ++++++++
apps/desktop/src/locales/or/messages.json | 23 ++++++++
apps/desktop/src/locales/pl/messages.json | 23 ++++++++
apps/desktop/src/locales/pt_BR/messages.json | 23 ++++++++
apps/desktop/src/locales/pt_PT/messages.json | 23 ++++++++
apps/desktop/src/locales/ro/messages.json | 23 ++++++++
apps/desktop/src/locales/ru/messages.json | 23 ++++++++
apps/desktop/src/locales/si/messages.json | 23 ++++++++
apps/desktop/src/locales/sk/messages.json | 23 ++++++++
apps/desktop/src/locales/sl/messages.json | 23 ++++++++
apps/desktop/src/locales/sr/messages.json | 23 ++++++++
apps/desktop/src/locales/sv/messages.json | 31 ++++++++--
apps/desktop/src/locales/te/messages.json | 23 ++++++++
apps/desktop/src/locales/th/messages.json | 23 ++++++++
apps/desktop/src/locales/tr/messages.json | 23 ++++++++
apps/desktop/src/locales/uk/messages.json | 23 ++++++++
apps/desktop/src/locales/vi/messages.json | 23 ++++++++
apps/desktop/src/locales/zh_CN/messages.json | 27 ++++++++-
apps/desktop/src/locales/zh_TW/messages.json | 23 ++++++++
63 files changed, 1480 insertions(+), 31 deletions(-)
diff --git a/apps/desktop/src/locales/af/messages.json b/apps/desktop/src/locales/af/messages.json
index 68f389a40a0..3e539e48eb9 100644
--- a/apps/desktop/src/locales/af/messages.json
+++ b/apps/desktop/src/locales/af/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopieer bevestigingskode (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lengte"
},
@@ -1425,6 +1439,9 @@
"message": "Kopieer Sekureiteitskode",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premie-lidmaatskap"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ar/messages.json b/apps/desktop/src/locales/ar/messages.json
index 7b2e220fa48..26aaf141dd2 100644
--- a/apps/desktop/src/locales/ar/messages.json
+++ b/apps/desktop/src/locales/ar/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "نسخ رمز التحقق (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "الطول"
},
@@ -1425,6 +1439,9 @@
"message": "نسخ رمز الأمان",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "العضوية المميزة"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/az/messages.json b/apps/desktop/src/locales/az/messages.json
index 6d6ce16b126..e5fee904d92 100644
--- a/apps/desktop/src/locales/az/messages.json
+++ b/apps/desktop/src/locales/az/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Doğrulama kodunu kopyala (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Uzunluq"
},
@@ -1425,6 +1439,9 @@
"message": "Güvənlik kodunu kopyala",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium üzvlük"
},
@@ -3567,11 +3584,11 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Qabaqcıl seçimlər",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Xəbərdarlıq",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"success": {
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/be/messages.json b/apps/desktop/src/locales/be/messages.json
index ae3c8a0cc60..f4b58c89cac 100644
--- a/apps/desktop/src/locales/be/messages.json
+++ b/apps/desktop/src/locales/be/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Скапіяваць праверачны код (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Даўжыня"
},
@@ -1425,6 +1439,9 @@
"message": "Скапіяваць код бяспекі",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Прэміяльны статус"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/bg/messages.json b/apps/desktop/src/locales/bg/messages.json
index c67e1dfe829..cf74c69be46 100644
--- a/apps/desktop/src/locales/bg/messages.json
+++ b/apps/desktop/src/locales/bg/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Код за потвърждаване (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Дължина"
},
@@ -1425,6 +1439,9 @@
"message": "Копиране на кода за сигурност",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Платен абонамент"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Включване на клавишната комбинация за автоматично попълване"
+ },
+ "enableAutotypeDescription": {
+ "message": "Битуорден не проверява местата за въвеждане, така че се уверете, че сте в правилния прозорец, преди да ползвате клавишната комбинация."
}
}
diff --git a/apps/desktop/src/locales/bn/messages.json b/apps/desktop/src/locales/bn/messages.json
index 6f5ac9de909..4a39428590e 100644
--- a/apps/desktop/src/locales/bn/messages.json
+++ b/apps/desktop/src/locales/bn/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "দৈর্ঘ্য"
},
@@ -1425,6 +1439,9 @@
"message": "সুরক্ষা কোড অনুলিপিত করুন",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "প্রিমিয়াম সদস্যতা"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/bs/messages.json b/apps/desktop/src/locales/bs/messages.json
index 4600780eda5..5be68fe816f 100644
--- a/apps/desktop/src/locales/bs/messages.json
+++ b/apps/desktop/src/locales/bs/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopira Verifikacioni kod (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Dužina"
},
@@ -1425,6 +1439,9 @@
"message": "Kopirajte sigurnosni kod",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium članstvo"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ca/messages.json b/apps/desktop/src/locales/ca/messages.json
index a28b3b3c6d4..ed49a360aa5 100644
--- a/apps/desktop/src/locales/ca/messages.json
+++ b/apps/desktop/src/locales/ca/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copia codi de verificació (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Longitud"
},
@@ -1425,6 +1439,9 @@
"message": "Copia el codi de seguretat",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Subscripció Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/cs/messages.json b/apps/desktop/src/locales/cs/messages.json
index 8c725808a98..11eb2113bd2 100644
--- a/apps/desktop/src/locales/cs/messages.json
+++ b/apps/desktop/src/locales/cs/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopírovat ověřovací kód (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Délka"
},
@@ -1425,6 +1439,9 @@
"message": "Kopírovat bezpečnostní kód",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Prémiové členství"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Povolit zkratku automatického psaní"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden neověřuje umístění vstupu. Před použitím zkratky se ujistěte, že jste ve správném okně a poli."
}
}
diff --git a/apps/desktop/src/locales/cy/messages.json b/apps/desktop/src/locales/cy/messages.json
index 3b3afba9415..e3db70bf152 100644
--- a/apps/desktop/src/locales/cy/messages.json
+++ b/apps/desktop/src/locales/cy/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/da/messages.json b/apps/desktop/src/locales/da/messages.json
index cf60c7a04cb..47df4e98b3f 100644
--- a/apps/desktop/src/locales/da/messages.json
+++ b/apps/desktop/src/locales/da/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiér bekræftelseskode (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Længde"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiér bekræftelseskode",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium-medlemskab"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/de/messages.json b/apps/desktop/src/locales/de/messages.json
index 6e2b172b97c..87ddaae531a 100644
--- a/apps/desktop/src/locales/de/messages.json
+++ b/apps/desktop/src/locales/de/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Verifizierungscode (TOTP) kopieren"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Länge"
},
@@ -1425,6 +1439,9 @@
"message": "Sicherheitscode kopieren",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "Kartennummer"
+ },
"premiumMembership": {
"message": "Premium-Mitgliedschaft"
},
@@ -2411,7 +2428,7 @@
"message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Ändere dein Master-Passwort, um die Kontowiederherstellung abzuschließen."
},
"updateMasterPasswordSubtitle": {
"message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
@@ -3154,7 +3171,7 @@
"message": "Admin-Genehmigung anfragen"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "Anmeldung kann nicht abgeschlossen werden"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
"message": "You need to log in on a trusted device or ask your administrator to assign you a password."
@@ -3563,7 +3580,7 @@
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "Mehr über die Übereinstimmungs-Erkennung",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
@@ -3571,7 +3588,7 @@
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Warnung",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"success": {
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/el/messages.json b/apps/desktop/src/locales/el/messages.json
index 239351d406d..2f2a3cf914c 100644
--- a/apps/desktop/src/locales/el/messages.json
+++ b/apps/desktop/src/locales/el/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Αντιγραφή κωδικού επαλήθευσης (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Μήκος"
},
@@ -1425,6 +1439,9 @@
"message": "Αντιγραφή κωδικού ασφαλείας",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Συνδρομή Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/en_GB/messages.json b/apps/desktop/src/locales/en_GB/messages.json
index 57ada476677..f73e373d825 100644
--- a/apps/desktop/src/locales/en_GB/messages.json
+++ b/apps/desktop/src/locales/en_GB/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/en_IN/messages.json b/apps/desktop/src/locales/en_IN/messages.json
index 6c9d211bf13..ee0e0dc276f 100644
--- a/apps/desktop/src/locales/en_IN/messages.json
+++ b/apps/desktop/src/locales/en_IN/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy Verification Code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/eo/messages.json b/apps/desktop/src/locales/eo/messages.json
index 26e6aefb83c..5bfde4d51c0 100644
--- a/apps/desktop/src/locales/eo/messages.json
+++ b/apps/desktop/src/locales/eo/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopii la kontrolan kodon (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Longo"
},
@@ -1425,6 +1439,9 @@
"message": "Kopii sekurigan kodon",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/es/messages.json b/apps/desktop/src/locales/es/messages.json
index eb02eca59ba..f839e9c8634 100644
--- a/apps/desktop/src/locales/es/messages.json
+++ b/apps/desktop/src/locales/es/messages.json
@@ -190,7 +190,7 @@
"message": "Clave pública"
},
"sshFingerprint": {
- "message": "Fingerprint"
+ "message": "Huella digital"
},
"sshKeyAlgorithm": {
"message": "Tipo de clave"
@@ -229,7 +229,7 @@
"message": "Por favor, desbloquea tu caja fuerte para aprobar la solicitud de clave SSH."
},
"sshAgentUnlockTimeout": {
- "message": "SSH key request timed out."
+ "message": "La solicitud de clave SSH ha expirado."
},
"enableSshAgent": {
"message": "Habilitar agente SSH"
@@ -244,7 +244,7 @@
"message": "Solicitar autorización al usar el agente SSH"
},
"sshAgentPromptBehaviorDesc": {
- "message": "Choose how to handle SSH-agent authorization requests."
+ "message": "Elige como gestionar las solicitudes de autorización del agente SSH."
},
"sshAgentPromptBehaviorHelp": {
"message": "Recordar autorizaciones SSH"
@@ -467,7 +467,7 @@
"message": "Use checkboxes if you'd like to autofill a form's checkbox, like a remember email"
},
"linkedHelpText": {
- "message": "Use a linked field when you are experiencing autofill issues for a specific website."
+ "message": "Usa un campo enlazado cuando estés experimentando problemas de autocompletado para un sitio web específico."
},
"linkedLabelHelpText": {
"message": "Enter the the field's html id, name, aria-label, or placeholder."
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copiar código de verificación (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Longitud"
},
@@ -1022,7 +1036,7 @@
"message": "Tiempo de autenticación agotado"
},
"authenticationSessionTimedOut": {
- "message": "The authentication session timed out. Please restart the login process."
+ "message": "La sesión de autenticación ha expirado. Por favor, inicia de nuevo el proceso de inicio de sesión."
},
"selfHostBaseUrl": {
"message": "URL del servidor autoalojado",
@@ -1425,6 +1439,9 @@
"message": "Copiar código de seguridad",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Membresía Premium"
},
@@ -2393,7 +2410,7 @@
"message": "Esta acción está protegida. Para continuar, vuelva a introducir su contraseña maestra para verificar su identidad."
},
"masterPasswordSuccessfullySet": {
- "message": "Master password successfully set"
+ "message": "Contraseña maestra establecida correctamente"
},
"updatedMasterPassword": {
"message": "Contraseña maestra actualizada"
@@ -2408,13 +2425,13 @@
"message": "Tu contraseña maestra no cumple con una o más de las políticas de tu organización. Para acceder a la caja fuerte, debes actualizar tu contraseña maestra ahora. Proceder te desconectará de tu sesión actual, requiriendo que vuelva a iniciar sesión. Las sesiones activas en otros dispositivos pueden seguir estando activas durante hasta una hora."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "Tras cambiar tu contraseña tendrás que iniciar sesión con tu nueva contraseña. Las sesiones activas en otros dispositivos se cerrarán en una hora."
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Cambia tu contraseña maestra para completar la recuperación de la cuenta."
},
"updateMasterPasswordSubtitle": {
- "message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
+ "message": "Tu contraseña maestra no cumple con los requisitos de esta organización. Cambia tu contraseña maestra para continuar."
},
"tdeDisabledMasterPasswordRequired": {
"message": "Your organization has disabled trusted device encryption. Please set a master password to access your vault."
@@ -2528,7 +2545,7 @@
"message": "Contraseña maestra eliminada."
},
"removeMasterPasswordForOrganizationUserKeyConnector": {
- "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ "message": "Ya no es necesaria una contraseña maestra para los miembros de la siguiente organización. Por favor, confirma el dominio que aparece a continuación con el administrador de tu organización."
},
"organizationName": {
"message": "Nombre de la organización"
@@ -2597,7 +2614,7 @@
}
},
"exportingIndividualVaultWithAttachmentsDescription": {
- "message": "Only the individual vault items including attachments associated with $EMAIL$ will be exported. Organization vault items will not be included",
+ "message": "Solo los elementos individuales de la caja fuerte, incluyendo adjuntos asociados a $EMAIL$, serán exportados. Los elementos de la caja fuerte de la organización no se incluirán",
"placeholders": {
"email": {
"content": "$1",
@@ -2954,7 +2971,7 @@
"message": "aplicación web"
},
"notificationSentDevicePart2": {
- "message": "Make sure the Fingerprint phrase matches the one below before approving."
+ "message": "Asegúrate de que la frase de la Huella digital coincide con la siguiente antes de aprobar."
},
"needAnotherOptionV1": {
"message": "¿Necesitas otra opción?"
@@ -3154,10 +3171,10 @@
"message": "Solicitar aprobación del administrador"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "No se puede completar el inicio de sesión"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Necesitas iniciar sesión en un dispositivo de confianza o pedir a tu administrador que te asigne una contraseña."
},
"region": {
"message": "Región"
@@ -3212,10 +3229,10 @@
"message": "La organización no es de confianza"
},
"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": "Por la seguridad de tu cuenta, confirma únicamente si has otorgado acceso de emergencia a este usuario y que su huella digital coincida con la mostrada en su cuenta"
},
"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": "Por la seguridad de tu cuenta, procede únicamente si eres un miembro de esta organización, tienes la recuperación de la cuenta activada y la huella digital mostrada a continuación coincide con la huella digital de la organización."
},
"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."
@@ -3567,11 +3584,11 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Opciones avanzadas",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Advertencia",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"success": {
@@ -3764,7 +3781,7 @@
"message": "Actualización de la extensión requerida"
},
"updateBrowserOrDisableFingerprintDialogMessage": {
- "message": "The browser extension you are using is out of date. Please update it or disable browser integration fingerprint validation in the desktop app settings."
+ "message": "La extensión del navegador que estás utilizando está desactualizada. Por favor, actualízala o desactiva la integración del navegador de la validación de la huella digital en los ajustes de la aplicación de escritorio."
},
"changeAtRiskPassword": {
"message": "Cambiar contraseña en riesgo"
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Activar atajo de autoescritura"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden no valida las ubicaciones de entrada, asegúrate de que estás en la ventana y en el capo correctos antes de usar el atajo."
}
}
diff --git a/apps/desktop/src/locales/et/messages.json b/apps/desktop/src/locales/et/messages.json
index 4b848d9ef5c..be7628d2d34 100644
--- a/apps/desktop/src/locales/et/messages.json
+++ b/apps/desktop/src/locales/et/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopeeri Kinnituskood (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Pikkus"
},
@@ -1425,6 +1439,9 @@
"message": "Kopeeri turvakood",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Preemium versioon"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/eu/messages.json b/apps/desktop/src/locales/eu/messages.json
index aae6880294d..0c4b2f4d836 100644
--- a/apps/desktop/src/locales/eu/messages.json
+++ b/apps/desktop/src/locales/eu/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiatu egiaztatze-kodea (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Luzera"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiatu segurtasun-kodea",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium bazkidea"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/fa/messages.json b/apps/desktop/src/locales/fa/messages.json
index 4b9696887be..8aefda20bf4 100644
--- a/apps/desktop/src/locales/fa/messages.json
+++ b/apps/desktop/src/locales/fa/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "کپی کد تأیید (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "طول"
},
@@ -1425,6 +1439,9 @@
"message": "کپی کد امنیتی",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "عضویت پرمیوم"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/fi/messages.json b/apps/desktop/src/locales/fi/messages.json
index 6c13f322aca..b334bc61ece 100644
--- a/apps/desktop/src/locales/fi/messages.json
+++ b/apps/desktop/src/locales/fi/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopioi todennuskoodi (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Pituus"
},
@@ -1425,6 +1439,9 @@
"message": "Kopioi turvakoodi",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium-jäsenyys"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/fil/messages.json b/apps/desktop/src/locales/fil/messages.json
index cfa39fd71f3..723d324bf70 100644
--- a/apps/desktop/src/locales/fil/messages.json
+++ b/apps/desktop/src/locales/fil/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopyahin ang verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Kahabaan"
},
@@ -1425,6 +1439,9 @@
"message": "Kopyahin ang code ng seguridad",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Pagiging miyembro ng premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/fr/messages.json b/apps/desktop/src/locales/fr/messages.json
index 387c25ec44c..b06308b2906 100644
--- a/apps/desktop/src/locales/fr/messages.json
+++ b/apps/desktop/src/locales/fr/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copier le code de vérification (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Longueur"
},
@@ -1425,6 +1439,9 @@
"message": "Copier le code de sécurité",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Adhésion Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/gl/messages.json b/apps/desktop/src/locales/gl/messages.json
index 304d07ee3cd..3d240ff77e8 100644
--- a/apps/desktop/src/locales/gl/messages.json
+++ b/apps/desktop/src/locales/gl/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/he/messages.json b/apps/desktop/src/locales/he/messages.json
index 11a736eeaaa..5b76be7fff3 100644
--- a/apps/desktop/src/locales/he/messages.json
+++ b/apps/desktop/src/locales/he/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "העתקת קוד אימות (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "אורך"
},
@@ -1425,6 +1439,9 @@
"message": "העתק קוד אבטחה",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "חברות פרימיום"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "הפעלת קיצור הקלדה אוטומטית"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden לא מאמת את מקומות הקלט, נא לוודא שזה החלון והשדה הנכונים בטרם שימוש בקיצור הדרך."
}
}
diff --git a/apps/desktop/src/locales/hi/messages.json b/apps/desktop/src/locales/hi/messages.json
index 3d3a2c4d701..77b416118c9 100644
--- a/apps/desktop/src/locales/hi/messages.json
+++ b/apps/desktop/src/locales/hi/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/hr/messages.json b/apps/desktop/src/locales/hr/messages.json
index 699e4ad347d..b86e57a4811 100644
--- a/apps/desktop/src/locales/hr/messages.json
+++ b/apps/desktop/src/locales/hr/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiraj kôd za provjeru (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Duljina"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiraj kontrolni broj",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium članstvo"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/hu/messages.json b/apps/desktop/src/locales/hu/messages.json
index cd30ee6edaa..f5043724cbb 100644
--- a/apps/desktop/src/locales/hu/messages.json
+++ b/apps/desktop/src/locales/hu/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Ellenőrző kód másolása (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Hossz"
},
@@ -1425,6 +1439,9 @@
"message": "Biztonsági kód másolása",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Prémium tagság"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Automatikus típusú parancsikon engedélyezése"
+ },
+ "enableAutotypeDescription": {
+ "message": "A Bitwarden nem érvényesíti a beviteli helyeket, győződjünk meg róla, hogy a megfelelő ablakban és mezőben vagyunk, mielőtt a parancsikont használnánk."
}
}
diff --git a/apps/desktop/src/locales/id/messages.json b/apps/desktop/src/locales/id/messages.json
index 0634ad80722..f4627f805e0 100644
--- a/apps/desktop/src/locales/id/messages.json
+++ b/apps/desktop/src/locales/id/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Salin Kode Verifikasi (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Panjang"
},
@@ -1425,6 +1439,9 @@
"message": "Salin Kode Keamanan",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Keanggotaan Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/it/messages.json b/apps/desktop/src/locales/it/messages.json
index 0476024f926..b89b25a745c 100644
--- a/apps/desktop/src/locales/it/messages.json
+++ b/apps/desktop/src/locales/it/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copia codice di verifica (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lunghezza"
},
@@ -1425,6 +1439,9 @@
"message": "Copia codice di sicurezza",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Abbonamento Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ja/messages.json b/apps/desktop/src/locales/ja/messages.json
index 7b8eddc693b..9bc5f987b18 100644
--- a/apps/desktop/src/locales/ja/messages.json
+++ b/apps/desktop/src/locales/ja/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "認証コード (TOTP) をコピー"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "長さ"
},
@@ -1425,6 +1439,9 @@
"message": "セキュリティコードのコピー",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "プレミアム会員"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ka/messages.json b/apps/desktop/src/locales/ka/messages.json
index 7b98da76026..5f9d2fe17b3 100644
--- a/apps/desktop/src/locales/ka/messages.json
+++ b/apps/desktop/src/locales/ka/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "სიგრძე"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/km/messages.json b/apps/desktop/src/locales/km/messages.json
index 304d07ee3cd..3d240ff77e8 100644
--- a/apps/desktop/src/locales/km/messages.json
+++ b/apps/desktop/src/locales/km/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/kn/messages.json b/apps/desktop/src/locales/kn/messages.json
index 8a1798ce386..b7664ad90bf 100644
--- a/apps/desktop/src/locales/kn/messages.json
+++ b/apps/desktop/src/locales/kn/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "ನಕಲಿಸಿ ಪರಿಶೀಲನೆ ಕೋಡ್ (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "ಉದ್ದ"
},
@@ -1425,6 +1439,9 @@
"message": "ಭದ್ರತಾ ಕೋಡ್ ಅನ್ನು ನಕಲಿಸಿ",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವ"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ko/messages.json b/apps/desktop/src/locales/ko/messages.json
index 9127f4f76a9..ca23d5107c7 100644
--- a/apps/desktop/src/locales/ko/messages.json
+++ b/apps/desktop/src/locales/ko/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "인증 코드 (TOTP) 복사"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "길이"
},
@@ -1425,6 +1439,9 @@
"message": "보안 코드 복사",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "프리미엄 멤버십"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/lt/messages.json b/apps/desktop/src/locales/lt/messages.json
index 84e5a9d36a6..99c63ab4dab 100644
--- a/apps/desktop/src/locales/lt/messages.json
+++ b/apps/desktop/src/locales/lt/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopijuoti patvirtinimo kodą (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Ilgis"
},
@@ -1425,6 +1439,9 @@
"message": "Kopijuoti saugos kodą",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium narystė"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/lv/messages.json b/apps/desktop/src/locales/lv/messages.json
index d1bf2382e58..7c00a3a40a9 100644
--- a/apps/desktop/src/locales/lv/messages.json
+++ b/apps/desktop/src/locales/lv/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Ievietot Apliecinājuma kodu (TOTP) starpliktuvē"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Garums"
},
@@ -1425,6 +1439,9 @@
"message": "Ievietot drošības kodu starpliktuvē",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium dalība"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Iespējot automātiskās ievades saīsni"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden nepārbauda ievades atrašanās vietas, jāpārliecinās, ka atrodies pareizajā logā un laukā, pirms saīsnes izmantošanas."
}
}
diff --git a/apps/desktop/src/locales/me/messages.json b/apps/desktop/src/locales/me/messages.json
index 98794eed175..0929250c06f 100644
--- a/apps/desktop/src/locales/me/messages.json
+++ b/apps/desktop/src/locales/me/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Iskopiraj Verifikacioni Kod (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Dužina"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiraj siguronosni kod",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premijum članstvo"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ml/messages.json b/apps/desktop/src/locales/ml/messages.json
index 9cb27605db5..a77ab04c0aa 100644
--- a/apps/desktop/src/locales/ml/messages.json
+++ b/apps/desktop/src/locales/ml/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "ദൈര്ഘ്യം"
},
@@ -1425,6 +1439,9 @@
"message": "സുരക്ഷാ കോഡ് പകർത്തുക",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "പ്രീമിയം അംഗത്വം"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/mr/messages.json b/apps/desktop/src/locales/mr/messages.json
index 304d07ee3cd..3d240ff77e8 100644
--- a/apps/desktop/src/locales/mr/messages.json
+++ b/apps/desktop/src/locales/mr/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/my/messages.json b/apps/desktop/src/locales/my/messages.json
index 4629ba25d93..b09ea6cdbf2 100644
--- a/apps/desktop/src/locales/my/messages.json
+++ b/apps/desktop/src/locales/my/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/nb/messages.json b/apps/desktop/src/locales/nb/messages.json
index 53125c8e290..dfa381fc3d0 100644
--- a/apps/desktop/src/locales/nb/messages.json
+++ b/apps/desktop/src/locales/nb/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopier verifiseringskode (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lengde"
},
@@ -1425,6 +1439,9 @@
"message": "Kopier sikkerhetskoden",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium-medlemskap"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ne/messages.json b/apps/desktop/src/locales/ne/messages.json
index 8ea29998406..56ccc79775c 100644
--- a/apps/desktop/src/locales/ne/messages.json
+++ b/apps/desktop/src/locales/ne/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "प्रमाणीकरण कोड (TOTP) प्रतिलिपि गर्नुहोस्"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "लम्बाइ"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/nl/messages.json b/apps/desktop/src/locales/nl/messages.json
index 90669dd1c93..5301982ecdc 100644
--- a/apps/desktop/src/locales/nl/messages.json
+++ b/apps/desktop/src/locales/nl/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Verificatiecode kopiëren (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "$FIELD$, $CIPHERNAME$ kopiëren",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lengte"
},
@@ -1425,6 +1439,9 @@
"message": "Beveiligingscode kopiëren",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "kaartnummer"
+ },
"premiumMembership": {
"message": "Premium-abonnement"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Snelkoppeling autotype inschakelen"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden valideert de invoerlocaties niet, zorg ervoor dat je je in het juiste venster en veld bevindt voordat je de snelkoppeling gebruikt."
}
}
diff --git a/apps/desktop/src/locales/nn/messages.json b/apps/desktop/src/locales/nn/messages.json
index af6a64710a7..4c86afccbeb 100644
--- a/apps/desktop/src/locales/nn/messages.json
+++ b/apps/desktop/src/locales/nn/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopier verifiseringskoden (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lengd"
},
@@ -1425,6 +1439,9 @@
"message": "Kopier tryggleikskode",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium-tinging"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/or/messages.json b/apps/desktop/src/locales/or/messages.json
index 3ce27e673b7..6db35fd307e 100644
--- a/apps/desktop/src/locales/or/messages.json
+++ b/apps/desktop/src/locales/or/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/pl/messages.json b/apps/desktop/src/locales/pl/messages.json
index b09bc908c47..9852c85554a 100644
--- a/apps/desktop/src/locales/pl/messages.json
+++ b/apps/desktop/src/locales/pl/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiuj kod weryfikacyjny (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Długość"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiuj kod zabezpieczający",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Konto Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/pt_BR/messages.json b/apps/desktop/src/locales/pt_BR/messages.json
index ab65e0a4912..5e570920f55 100644
--- a/apps/desktop/src/locales/pt_BR/messages.json
+++ b/apps/desktop/src/locales/pt_BR/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copiar Código de Verificação (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Comprimento"
},
@@ -1425,6 +1439,9 @@
"message": "Copiar Código de Segurança",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Assinatura Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/pt_PT/messages.json b/apps/desktop/src/locales/pt_PT/messages.json
index 2b5d7e00f61..a9cb4fcd88e 100644
--- a/apps/desktop/src/locales/pt_PT/messages.json
+++ b/apps/desktop/src/locales/pt_PT/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copiar código de verificação (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Comprimento"
},
@@ -1425,6 +1439,9 @@
"message": "Copiar código de segurança",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Subscrição Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Ativar o atalho de introdução automática"
+ },
+ "enableAutotypeDescription": {
+ "message": "O Bitwarden não valida a introdução de localizações. Certifique-se de que está na janela e no campo corretos antes de utilizar o atalho."
}
}
diff --git a/apps/desktop/src/locales/ro/messages.json b/apps/desktop/src/locales/ro/messages.json
index e3608836d26..41a92900d63 100644
--- a/apps/desktop/src/locales/ro/messages.json
+++ b/apps/desktop/src/locales/ro/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copiere cod de verificare (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Lungime"
},
@@ -1425,6 +1439,9 @@
"message": "Copiere cod de securitate",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Abonament Premium"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/ru/messages.json b/apps/desktop/src/locales/ru/messages.json
index 8991d3dacb0..b87ffc3cbcd 100644
--- a/apps/desktop/src/locales/ru/messages.json
+++ b/apps/desktop/src/locales/ru/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Скопировать код подтверждения (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Копировать $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Длина"
},
@@ -1425,6 +1439,9 @@
"message": "Скопировать код безопасности",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "номер карты"
+ },
"premiumMembership": {
"message": "Премиум"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Включить автоввод ярлыка"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden не проверяет местоположение ввода, поэтому, прежде чем использовать ярлык, убедитесь, что вы находитесь в нужном окне и поле."
}
}
diff --git a/apps/desktop/src/locales/si/messages.json b/apps/desktop/src/locales/si/messages.json
index b50d0252f61..5567654af99 100644
--- a/apps/desktop/src/locales/si/messages.json
+++ b/apps/desktop/src/locales/si/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/sk/messages.json b/apps/desktop/src/locales/sk/messages.json
index 383e35f2826..49651fbcb7e 100644
--- a/apps/desktop/src/locales/sk/messages.json
+++ b/apps/desktop/src/locales/sk/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopírovať overovací kód (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Kopírovať $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Dĺžka"
},
@@ -1425,6 +1439,9 @@
"message": "Kopírovať bezpečnostný kód",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "číslo karty"
+ },
"premiumMembership": {
"message": "Prémiové členstvo"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Povoliť skratku automatického písania"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden neoveruje miesto stupu, pred použitím skratky sa uistite, že ste v správnom okne a poli."
}
}
diff --git a/apps/desktop/src/locales/sl/messages.json b/apps/desktop/src/locales/sl/messages.json
index db25a4623ee..23bbae2d523 100644
--- a/apps/desktop/src/locales/sl/messages.json
+++ b/apps/desktop/src/locales/sl/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiraj verifikacijsko kodo (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Dolžina"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiraj varnostno kodo",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium članstvo"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/sr/messages.json b/apps/desktop/src/locales/sr/messages.json
index 514276fb136..c69b4ca8340 100644
--- a/apps/desktop/src/locales/sr/messages.json
+++ b/apps/desktop/src/locales/sr/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Копирај потврдни код (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Дужина"
},
@@ -1425,6 +1439,9 @@
"message": "Копирај сигурносни код",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Премијум чланство"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/sv/messages.json b/apps/desktop/src/locales/sv/messages.json
index 20140cb7ae0..067570eb002 100644
--- a/apps/desktop/src/locales/sv/messages.json
+++ b/apps/desktop/src/locales/sv/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Kopiera verifieringskod (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Längd"
},
@@ -1425,6 +1439,9 @@
"message": "Kopiera säkerhetskod",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium-medlemskap"
},
@@ -3333,10 +3350,10 @@
"message": "Nyckel"
},
"passkeyNotCopied": {
- "message": "Nyckeln kommer inte att kopieras"
+ "message": "Inloggningsnyckeln kommer inte att kopieras"
},
"passkeyNotCopiedAlert": {
- "message": "Nyckeln kommer inte att kopieras till det klonade objektet. Vill du klona det här objektet?"
+ "message": "Inloggningsnyckeln kommer inte att kopieras till det klonade objektet. Vill du klona det här objektet?"
},
"aliasDomain": {
"message": "Aliasdomän"
@@ -3587,10 +3604,10 @@
"message": "Inaktivera hårdvaruacceleration och starta om"
},
"removePasskey": {
- "message": "Ta bort nyckel"
+ "message": "Ta bort inloggningsnyckel"
},
"passkeyRemoved": {
- "message": "Nyckel borttagen"
+ "message": "Inloggningsnyckel borttagen"
},
"errorAssigningTargetCollection": {
"message": "Fel vid tilldelning av målsamling."
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Aktivera genväg för automatisk inmatning"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden validerar inte inmatningsplatser, så se till att du är i rätt fönster och fält innan du använder genvägen."
}
}
diff --git a/apps/desktop/src/locales/te/messages.json b/apps/desktop/src/locales/te/messages.json
index 304d07ee3cd..3d240ff77e8 100644
--- a/apps/desktop/src/locales/te/messages.json
+++ b/apps/desktop/src/locales/te/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Copy verification code (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Length"
},
@@ -1425,6 +1439,9 @@
"message": "Copy security code",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/th/messages.json b/apps/desktop/src/locales/th/messages.json
index 678346257f2..031c9bb6364 100644
--- a/apps/desktop/src/locales/th/messages.json
+++ b/apps/desktop/src/locales/th/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "คัดลอกรหัสยืนยัน (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "ความยาว"
},
@@ -1425,6 +1439,9 @@
"message": "คัดลอกรหัสรักษาความปลอดภัย",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Premium Membership"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/tr/messages.json b/apps/desktop/src/locales/tr/messages.json
index 255f03025d0..b95c585c28f 100644
--- a/apps/desktop/src/locales/tr/messages.json
+++ b/apps/desktop/src/locales/tr/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Doğrulama kodunu kopyala (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Uzunluk"
},
@@ -1425,6 +1439,9 @@
"message": "Güvenlik kodunu kopyala",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "kart numarası"
+ },
"premiumMembership": {
"message": "Premium üyelik"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/uk/messages.json b/apps/desktop/src/locales/uk/messages.json
index 649b3af622f..724959446d6 100644
--- a/apps/desktop/src/locales/uk/messages.json
+++ b/apps/desktop/src/locales/uk/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Копіювати код підтвердження (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Довжина"
},
@@ -1425,6 +1439,9 @@
"message": "Копіювати код безпеки",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Преміум статус"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
diff --git a/apps/desktop/src/locales/vi/messages.json b/apps/desktop/src/locales/vi/messages.json
index 42246285f80..d804c03b6cd 100644
--- a/apps/desktop/src/locales/vi/messages.json
+++ b/apps/desktop/src/locales/vi/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "Sao chép mã xác thực (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "Độ dài"
},
@@ -1425,6 +1439,9 @@
"message": "Sao chép mã bảo mật",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "Thành viên Cao Cấp"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Bật phím tắt tự động điền"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden không kiểm tra vị trí nhập liệu, hãy đảm bảo bạn đang ở trong đúng cửa sổ và trường nhập liệu trước khi dùng phím tắt."
}
}
diff --git a/apps/desktop/src/locales/zh_CN/messages.json b/apps/desktop/src/locales/zh_CN/messages.json
index 75d8925c4f7..fe8a61af825 100644
--- a/apps/desktop/src/locales/zh_CN/messages.json
+++ b/apps/desktop/src/locales/zh_CN/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "复制验证码 (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "长度"
},
@@ -1425,6 +1439,9 @@
"message": "复制安全码",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "高级会员"
},
@@ -3154,7 +3171,7 @@
"message": "请求管理员批准"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "无法完成登录"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
"message": "You need to log in on a trusted device or ask your administrator to assign you a password."
@@ -3563,7 +3580,7 @@
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "更多关于匹配检测",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "启用自动类型快捷方式"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden 不验证输入位置,请确保您在使用快捷键之前在正确的窗口和字段中。"
}
}
diff --git a/apps/desktop/src/locales/zh_TW/messages.json b/apps/desktop/src/locales/zh_TW/messages.json
index 88762ea9260..541e6e82658 100644
--- a/apps/desktop/src/locales/zh_TW/messages.json
+++ b/apps/desktop/src/locales/zh_TW/messages.json
@@ -572,6 +572,20 @@
"copyVerificationCodeTotp": {
"message": "複製驗證碼 (TOTP)"
},
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"length": {
"message": "長度"
},
@@ -1425,6 +1439,9 @@
"message": "複製安全代碼",
"description": "Copy credit card security code (CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"premiumMembership": {
"message": "進階會員"
},
@@ -3997,5 +4014,11 @@
}
}
}
+ },
+ "enableAutotype": {
+ "message": "Enable autotype shortcut"
+ },
+ "enableAutotypeDescription": {
+ "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
}
}
From ab9bbc8df84fe442310a31f65ac50405a8b06805 Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 19:26:00 +0200
Subject: [PATCH 18/54] Autosync the updated translations (#15671)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/browser/src/_locales/ar/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/az/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/be/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/bg/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/bn/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/bs/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ca/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/cs/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/cy/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/da/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/de/messages.json | 144 ++++++++++++-
apps/browser/src/_locales/el/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/en_GB/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/en_IN/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/es/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/et/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/eu/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/fa/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/fi/messages.json | 146 ++++++++++++-
apps/browser/src/_locales/fil/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/fr/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/gl/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/he/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/hi/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/hr/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/hu/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/id/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/it/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ja/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ka/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/km/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/kn/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ko/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/lt/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/lv/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ml/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/mr/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/my/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/nb/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ne/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/nl/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/nn/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/or/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/pl/messages.json | 194 +++++++++++++++---
apps/browser/src/_locales/pt_BR/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/pt_PT/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ro/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/ru/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/si/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/sk/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/sl/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/sr/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/sv/messages.json | 162 +++++++++++++--
apps/browser/src/_locales/te/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/th/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/tr/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/uk/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/vi/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/zh_CN/messages.json | 140 ++++++++++++-
apps/browser/src/_locales/zh_TW/messages.json | 140 ++++++++++++-
apps/browser/store/locales/sv/copy.resx | 2 +-
61 files changed, 8204 insertions(+), 284 deletions(-)
diff --git a/apps/browser/src/_locales/ar/messages.json b/apps/browser/src/_locales/ar/messages.json
index 02734de942b..d7aef05ab92 100644
--- a/apps/browser/src/_locales/ar/messages.json
+++ b/apps/browser/src/_locales/ar/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "رمز الأمان"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "مثال."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "موافقة الجهاز مطلوبة. حدّد خيار الموافقة أدناه:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/az/messages.json b/apps/browser/src/_locales/az/messages.json
index 64fa77c8683..67019f5cac7 100644
--- a/apps/browser/src/_locales/az/messages.json
+++ b/apps/browser/src/_locales/az/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Güvənlik kodu"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "məs."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Tələb göndərildi"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Ana parol saxlanıldı"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Gələcək girişləri problemsiz etmək üçün bu cihazı xatırla"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Cihaz təsdiqi tələb olunur. Aşağıdan bir təsdiq variantı seçin:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopyala: $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/be/messages.json b/apps/browser/src/_locales/be/messages.json
index eb721e76850..a49899eaee0 100644
--- a/apps/browser/src/_locales/be/messages.json
+++ b/apps/browser/src/_locales/be/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Код бяспекі"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "напр."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Патрабуецца ўхваленне прылады. Выберыце параметры ўхвалення ніжэй:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/bg/messages.json b/apps/browser/src/_locales/bg/messages.json
index dad53b42e36..b86493d7d5a 100644
--- a/apps/browser/src/_locales/bg/messages.json
+++ b/apps/browser/src/_locales/bg/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Код за сигурност"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "напр."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Заявката е изпратена"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Главната парола е запазена"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Запомняне на това устройство, така че в бъдеще вписването да бъде по-лесно"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Изисква се одобрение на устройството. Изберете начин за одобрение по-долу:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Копиране на $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/bn/messages.json b/apps/browser/src/_locales/bn/messages.json
index d70378f146c..4e30612b9a6 100644
--- a/apps/browser/src/_locales/bn/messages.json
+++ b/apps/browser/src/_locales/bn/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "নিরাপত্তা কোড"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "উদাহরণ"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/bs/messages.json b/apps/browser/src/_locales/bs/messages.json
index afe20ff55ca..be64d0bade5 100644
--- a/apps/browser/src/_locales/bs/messages.json
+++ b/apps/browser/src/_locales/bs/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ca/messages.json b/apps/browser/src/_locales/ca/messages.json
index 29859f03dd0..f6c40da1096 100644
--- a/apps/browser/src/_locales/ca/messages.json
+++ b/apps/browser/src/_locales/ca/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Codi de seguretat"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Sol·licitud enviada"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Cal l'aprovació del dispositiu. Seleccioneu una opció d'aprovació a continuació:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/cs/messages.json b/apps/browser/src/_locales/cs/messages.json
index 05135190fb4..86c1b650996 100644
--- a/apps/browser/src/_locales/cs/messages.json
+++ b/apps/browser/src/_locales/cs/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Bezpečnostní kód"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "např."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Požadavek odeslán"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Požadavek na přihlášení byl schválen pro $EMAIL$ na $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Pokus o přihlášení byl zamítnut z jiného zařízení. Pokud jste to Vy, zkuste se znovu přihlásit do zařízení."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Hlavní heslo bylo uloženo"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Zapamatovat si toto zařízení pro bezproblémové budoucí přihlášení"
},
+ "manageDevices": {
+ "message": "Spravovat zařízení"
+ },
+ "currentSession": {
+ "message": "Aktuální relace"
+ },
+ "mobile": {
+ "message": "Mobil",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Rozšíření",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Počítač",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Webový trezor"
+ },
+ "webApp": {
+ "message": "Webová aplikace"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Čekající požadavek"
+ },
+ "firstLogin": {
+ "message": "První přihlášení"
+ },
+ "trusted": {
+ "message": "Důvěryhodný"
+ },
+ "needsApproval": {
+ "message": "Vyžaduje schválení"
+ },
+ "devices": {
+ "message": "Zařízení"
+ },
+ "accessAttemptBy": {
+ "message": "Pokus o přístup z $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Potvrdit přístup"
+ },
+ "denyAccess": {
+ "message": "Zamítnout přístup"
+ },
+ "time": {
+ "message": "Čas"
+ },
+ "deviceType": {
+ "message": "Typ zařízení"
+ },
+ "loginRequest": {
+ "message": "Požadavek na přihlášení"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Právě teď"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Požadováno před $MINUTES$ minutami",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Vyžaduje se schválení zařízení. Vyberte možnost schválení níže:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopírovat $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/cy/messages.json b/apps/browser/src/_locales/cy/messages.json
index c5cbbdd189c..1235b49dd2c 100644
--- a/apps/browser/src/_locales/cy/messages.json
+++ b/apps/browser/src/_locales/cy/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Cod diogelwch"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "engh."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/da/messages.json b/apps/browser/src/_locales/da/messages.json
index 5737ba66b8d..bc34810f97f 100644
--- a/apps/browser/src/_locales/da/messages.json
+++ b/apps/browser/src/_locales/da/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Sikkerhedskode"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "eks."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Husk denne enhed for at gøre fremtidige indlogninger gnidningsløse"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Enhedsgodkendelse kræves. Vælg en godkendelsesmulighed nedenfor:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/de/messages.json b/apps/browser/src/_locales/de/messages.json
index 352705ec281..91dfac2e7c0 100644
--- a/apps/browser/src/_locales/de/messages.json
+++ b/apps/browser/src/_locales/de/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Sicherheitscode"
},
+ "cardNumber": {
+ "message": "Kartennummer"
+ },
"ex": {
"message": "Bsp."
},
@@ -3460,8 +3463,30 @@
"logInRequestSent": {
"message": "Anfrage gesendet"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Anmeldestatus"
+ },
"masterPasswordChanged": {
- "message": "Master password saved"
+ "message": "Master-Passwort gespeichert"
},
"exposedMasterPassword": {
"message": "Kompromittiertes Master-Passwort"
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Dieses Gerät merken, um zukünftige Anmeldungen reibungslos zu gestalten"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Aktuelle Sitzung"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web-Tresor"
+ },
+ "webApp": {
+ "message": "Web-App"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "Erste Anmeldung"
+ },
+ "trusted": {
+ "message": "Vertrauenswürdig"
+ },
+ "needsApproval": {
+ "message": "Benötigt Genehmigung"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Zugriffsversuch von $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Zugriff bestätigen"
+ },
+ "denyAccess": {
+ "message": "Zugriff ablehnen"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Gerätetyp"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "Diese Anfrage ist nicht mehr gültig."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Versuchst du auf dein Konto zuzugreifen?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Anmeldung von $EMAIL$ auf $DEVICE$ bestätigt",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "Du hast einen Anmeldeversuch von einem anderen Gerät abgelehnt. Wenn du das wirklich warst, versuche dich erneut mit dem Gerät anzumelden."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Anmeldeanfrage ist bereits abgelaufen."
+ },
+ "justNow": {
+ "message": "Gerade eben"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Vor $MINUTES$ Minuten angefordert",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Geräte-Genehmigung erforderlich. Wähle unten eine Genehmigungsoption aus:"
},
@@ -4275,7 +4407,7 @@
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "Mehr über die Übereinstimmungs-Erkennung",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "$FIELD$, $VALUE$ kopieren",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/el/messages.json b/apps/browser/src/_locales/el/messages.json
index 960de6670d5..014d17b74c8 100644
--- a/apps/browser/src/_locales/el/messages.json
+++ b/apps/browser/src/_locales/el/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Κωδικός ασφαλείας"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "πχ."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Απομνημόνευση αυτής της συσκευής για την αυτόματες συνδέσεις στο μέλλον"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Απαιτείται έγκριση συσκευής. Επιλέξτε μια επιλογή έγκρισης παρακάτω:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/en_GB/messages.json b/apps/browser/src/_locales/en_GB/messages.json
index aab61eca30e..a17a48e95b8 100644
--- a/apps/browser/src/_locales/en_GB/messages.json
+++ b/apps/browser/src/_locales/en_GB/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "e.g."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/en_IN/messages.json b/apps/browser/src/_locales/en_IN/messages.json
index eaf11a04e57..9f383c2f0e3 100644
--- a/apps/browser/src/_locales/en_IN/messages.json
+++ b/apps/browser/src/_locales/en_IN/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "e.g."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/es/messages.json b/apps/browser/src/_locales/es/messages.json
index 724d07f4404..35a28528f49 100644
--- a/apps/browser/src/_locales/es/messages.json
+++ b/apps/browser/src/_locales/es/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Código de seguridad"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ej."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Solicitud enviada"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Se requiere aprobación del dispositivo. Seleccione una opción de aprobación a continuación:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copiar $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/et/messages.json b/apps/browser/src/_locales/et/messages.json
index 99e7b72a524..daadcbf00e9 100644
--- a/apps/browser/src/_locales/et/messages.json
+++ b/apps/browser/src/_locales/et/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Turvakood"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "nt."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Nõutav on seadme kinnitamine. Vali kinnitamise meetod alt:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/eu/messages.json b/apps/browser/src/_locales/eu/messages.json
index 393f922463e..e5f836fcaae 100644
--- a/apps/browser/src/_locales/eu/messages.json
+++ b/apps/browser/src/_locales/eu/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Segurtasun-kodea"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "adib."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/fa/messages.json b/apps/browser/src/_locales/fa/messages.json
index fb9380d5317..e551e96f74a 100644
--- a/apps/browser/src/_locales/fa/messages.json
+++ b/apps/browser/src/_locales/fa/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "کد امنیتی"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "مثال."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "درخواست ارسال شد"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "این دستگاه را به خاطر بسپار تا ورودهای بعدی بدون مشکل انجام شود"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "تأیید دستگاه لازم است. یک روش تأیید انتخاب کنید:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "کپی $FIELD$، $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/fi/messages.json b/apps/browser/src/_locales/fi/messages.json
index 85c47f2733b..22f2046bae3 100644
--- a/apps/browser/src/_locales/fi/messages.json
+++ b/apps/browser/src/_locales/fi/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Turvakoodi (CVC/CVV)"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "esim."
},
@@ -2214,7 +2217,7 @@
"message": "Käytä tätä salasanaa"
},
"useThisPassphrase": {
- "message": "Use this passphrase"
+ "message": "Käytä tätä salalausetta"
},
"useThisUsername": {
"message": "Käytä tätä käyttäjätunnusta"
@@ -2531,7 +2534,7 @@
"message": "Vaihda"
},
"changePassword": {
- "message": "Change password",
+ "message": "Vaihda salasana",
"description": "Change password button for browser at risk notification on login."
},
"changeButtonTitle": {
@@ -3460,8 +3463,30 @@
"logInRequestSent": {
"message": "Pyyntö lähetetty"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
- "message": "Master password saved"
+ "message": "Pääsalasana tallennettiin"
},
"exposedMasterPassword": {
"message": "Paljastunut pääsalasana"
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Muista tämä laite tehdäksesi tulevista kirjautumisista saumattomia"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Laitehyväksyntä vaaditaan. Valitse hyväksyntätapa alta:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopioi $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/fil/messages.json b/apps/browser/src/_locales/fil/messages.json
index 4e3f94cb474..88610d6874c 100644
--- a/apps/browser/src/_locales/fil/messages.json
+++ b/apps/browser/src/_locales/fil/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Kodigo ng Seguridad"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/fr/messages.json b/apps/browser/src/_locales/fr/messages.json
index efcc28ddcea..680a19f33cc 100644
--- a/apps/browser/src/_locales/fr/messages.json
+++ b/apps/browser/src/_locales/fr/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Code de sécurité"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Demande envoyée"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Mémorisez cet appareil pour faciliter les futures connexions"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "L'approbation de l'appareil est requise. Sélectionnez une option d'approbation ci-dessous :"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copier $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/gl/messages.json b/apps/browser/src/_locales/gl/messages.json
index 71841239698..559d0ca82b3 100644
--- a/apps/browser/src/_locales/gl/messages.json
+++ b/apps/browser/src/_locales/gl/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Código de seguridade"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Lembrar este dispositivo para futuros inicios de sesión imperceptibles"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Aprobación de dispositivo requirida. Selecciona unha das seguintes opcións:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/he/messages.json b/apps/browser/src/_locales/he/messages.json
index b9a0a3dada4..e4d959785bf 100644
--- a/apps/browser/src/_locales/he/messages.json
+++ b/apps/browser/src/_locales/he/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "קוד אבטחה"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "לדוגמא"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "בקשה נשלחה"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "זכור מכשיר זה כדי להפוך כניסות עתידיות לחלקות"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "נדרש אישור מכשיר. בחר אפשרות אישור למטה:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "העתק $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/hi/messages.json b/apps/browser/src/_locales/hi/messages.json
index 74fc419d7f1..4fd2652d786 100644
--- a/apps/browser/src/_locales/hi/messages.json
+++ b/apps/browser/src/_locales/hi/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security Code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/hr/messages.json b/apps/browser/src/_locales/hr/messages.json
index 6434a09bcfb..07c3e20cd18 100644
--- a/apps/browser/src/_locales/hr/messages.json
+++ b/apps/browser/src/_locales/hr/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Sigurnosni kôd"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "npr."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Zahtjev poslan"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Glavna lozinka promijenjena"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Zapamti ovaj uređaj kako bi buduće prijave bile brže"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Potrebno je odobriti uređaj. Odaberi metodu odobravanja:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopiraj $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/hu/messages.json b/apps/browser/src/_locales/hu/messages.json
index 5391b266a93..228f7ef8c09 100644
--- a/apps/browser/src/_locales/hu/messages.json
+++ b/apps/browser/src/_locales/hu/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Biztonsági Kód"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "példa:"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "A kérés elküldésre került."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "A mesterjelszó mentésre került."
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Emlékezés az eszközre, hogy zökkenőmentes legyen a jövőbeni bejelentkezés"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Az eszköz jóváhagyása szükséges. Válasszunk egy jóváhagyási lehetőséget lentebb:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "$FIELD$, $VALUE$ másolása",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/id/messages.json b/apps/browser/src/_locales/id/messages.json
index dc1ec15cede..07e094e10bd 100644
--- a/apps/browser/src/_locales/id/messages.json
+++ b/apps/browser/src/_locales/id/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Kode Keamanan"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "mis."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Permintaan terkirim"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Ingat perangkat ini untuk membuat login berikutnya lebih lancar"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Persetujuan perangkat diperlukan. Pilih sebuah pilihan persetujuan berikut:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Salin $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/it/messages.json b/apps/browser/src/_locales/it/messages.json
index f4829ecabec..167cc51c0b1 100644
--- a/apps/browser/src/_locales/it/messages.json
+++ b/apps/browser/src/_locales/it/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Codice di sicurezza"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "es."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Richiesta inviata"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Ricorda questo dispositivo per rendere immediati i futuri accessi"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Approvazione del dispositivo obbligatoria. Seleziona un'opzione di approvazione:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copia $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ja/messages.json b/apps/browser/src/_locales/ja/messages.json
index 783a9ff0eb1..49d22bd065f 100644
--- a/apps/browser/src/_locales/ja/messages.json
+++ b/apps/browser/src/_locales/ja/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "セキュリティコード"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "例:"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "リクエストが送信されました"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "このデバイスを記憶して今後のログインをシームレスにする"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "デバイスの承認が必要です。以下から承認オプションを選択してください:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "$FIELD$ 「$VALUE$」 をコピー",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ka/messages.json b/apps/browser/src/_locales/ka/messages.json
index efbf97e9a92..1e75805638c 100644
--- a/apps/browser/src/_locales/ka/messages.json
+++ b/apps/browser/src/_locales/ka/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/km/messages.json b/apps/browser/src/_locales/km/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/km/messages.json
+++ b/apps/browser/src/_locales/km/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/kn/messages.json b/apps/browser/src/_locales/kn/messages.json
index d4e4498a322..c7a821de19b 100644
--- a/apps/browser/src/_locales/kn/messages.json
+++ b/apps/browser/src/_locales/kn/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "ಭದ್ರತಾ ಕೋಡ್ "
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ಉದಾಹರಣೆ"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ko/messages.json b/apps/browser/src/_locales/ko/messages.json
index d5eba5ccbd8..730d3eeda61 100644
--- a/apps/browser/src/_locales/ko/messages.json
+++ b/apps/browser/src/_locales/ko/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "보안 코드"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "예)"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "향후 로그인을 원활하게 하기 위해 이 기기 기억하기"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "기기 승인이 필요합니다. 아래에서 승인 옵션을 선택하세요:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/lt/messages.json b/apps/browser/src/_locales/lt/messages.json
index 33f3b0f0ed6..29815c9de82 100644
--- a/apps/browser/src/_locales/lt/messages.json
+++ b/apps/browser/src/_locales/lt/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Apsaugos kodas"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "pvz."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Įrenginio patvirtinimas reikalingas. Pasirink patvirtinimo būdą toliau:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/lv/messages.json b/apps/browser/src/_locales/lv/messages.json
index 2235baef2ab..9763801b773 100644
--- a/apps/browser/src/_locales/lv/messages.json
+++ b/apps/browser/src/_locales/lv/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Drošības kods"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "piem."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Pieprasījums nosūtīts"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Galvenā parole saglabāta"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Atcerēties šo ierīci, lai nākotnes pieteikšanos padarītu plūdenāku"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Nepieciešams ierīces apstiprinājums. Zemāk jāatlasa apstiprinājuma iespēja:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Ievietot starpliktuvē $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ml/messages.json b/apps/browser/src/_locales/ml/messages.json
index 7c0050906b0..a39fe07b2c6 100644
--- a/apps/browser/src/_locales/ml/messages.json
+++ b/apps/browser/src/_locales/ml/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "സുരക്ഷാ കോഡ്"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ഉദാഹരണം."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/mr/messages.json b/apps/browser/src/_locales/mr/messages.json
index feb3377a2f1..c79b8b322a7 100644
--- a/apps/browser/src/_locales/mr/messages.json
+++ b/apps/browser/src/_locales/mr/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/my/messages.json b/apps/browser/src/_locales/my/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/my/messages.json
+++ b/apps/browser/src/_locales/my/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/nb/messages.json b/apps/browser/src/_locales/nb/messages.json
index 59a8ca94c9d..01353cac5e0 100644
--- a/apps/browser/src/_locales/nb/messages.json
+++ b/apps/browser/src/_locales/nb/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Sikkerhetskode"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "f.eks."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Forespørsel sendt"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopier $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ne/messages.json b/apps/browser/src/_locales/ne/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/ne/messages.json
+++ b/apps/browser/src/_locales/ne/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/nl/messages.json b/apps/browser/src/_locales/nl/messages.json
index 71134c7a33b..b67df127da0 100644
--- a/apps/browser/src/_locales/nl/messages.json
+++ b/apps/browser/src/_locales/nl/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Beveiligingscode"
},
+ "cardNumber": {
+ "message": "kaartnummer"
+ },
"ex": {
"message": "bijv."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Verzoek verzonden"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Apparaat"
+ },
+ "loginStatus": {
+ "message": "Loginstatus"
+ },
"masterPasswordChanged": {
"message": "Hoofdwachtwoord gewijzigd"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Onthoud dit apparaat om in het vervolg naadloos in te loggen"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "Dit verzoek is niet langer geldig."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Probeer je toegang te krijgen tot je account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Inloggen voor $EMAIL$ bevestigd op $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "Je hebt een inlogpoging vanaf een ander apparaat geweigerd. Als je dit toch echt zelf was, probeer dan opnieuw in te loggen met het apparaat."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Inlogverzoek is al verlopen."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Apparaattoestemming vereist. Kies een goedkeuringsoptie hieronder:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "$FIELD$, $VALUE$ kopiëren",
+ "copyFieldCipherName": {
+ "message": "$FIELD$, $CIPHERNAME$ kopiëren",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/nn/messages.json b/apps/browser/src/_locales/nn/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/nn/messages.json
+++ b/apps/browser/src/_locales/nn/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/or/messages.json b/apps/browser/src/_locales/or/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/or/messages.json
+++ b/apps/browser/src/_locales/or/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/pl/messages.json b/apps/browser/src/_locales/pl/messages.json
index b4b62d7968c..23221633916 100644
--- a/apps/browser/src/_locales/pl/messages.json
+++ b/apps/browser/src/_locales/pl/messages.json
@@ -659,7 +659,7 @@
"message": "Zweryfikuj tożsamość"
},
"weDontRecognizeThisDevice": {
- "message": "Nie rozpoznajemy tego urządzenia. Wpisz kod wysłany na Twój e-mail, aby zweryfikować tożsamość."
+ "message": "Nie rozpoznajemy tego urządzenia. Wpisz kod wysłany na adres e-mail, aby zweryfikować swoją tożsamość."
},
"continueLoggingIn": {
"message": "Kontynuuj logowanie"
@@ -1213,17 +1213,17 @@
"message": "Pokaż opcje w menu kontekstowym"
},
"contextMenuItemDesc": {
- "message": "Użyj drugiego kliknięcia, aby uzyskać dostęp do generowania haseł i pasujących danych logowania do witryny."
+ "message": "Użyj drugiego kliknięcia, aby uzyskać dostęp do generatora hasła i pasujących danych logowania."
},
"contextMenuItemDescAlt": {
- "message": "Użyj drugiego kliknięcia, aby uzyskać dostęp do generowania haseł i pasujących danych logowania do witryny. Dotyczy wszystkich zalogowanych kont."
+ "message": "Użyj drugiego kliknięcia, aby uzyskać dostęp do generatora hasła i pasujących danych logowania. Dotyczy wszystkich zalogowanych kont."
},
"defaultUriMatchDetection": {
"message": "Domyślne wykrywanie dopasowania",
"description": "Default URI match detection for autofill."
},
"defaultUriMatchDetectionDesc": {
- "message": "Wybierz domyślny sposób wykrywania dopasowania adresów dla czynności takich jak autouzupełnianie."
+ "message": "Wybierz domyślne wykrywanie dopasowania dla autouzupełniania."
},
"theme": {
"message": "Motyw"
@@ -1252,7 +1252,7 @@
"message": "Format pliku"
},
"fileEncryptedExportWarningDesc": {
- "message": "Plik będzie chroniony hasłem, które będzie wymagane do odszyfrowania pliku."
+ "message": "Plik zostanie zaszyfrowany hasłem."
},
"filePassword": {
"message": "Hasło pliku"
@@ -1296,7 +1296,7 @@
"message": "Klucze szyfrowania konta są unikalne dla każdego użytkownika Bitwarden, więc nie możesz zaimportować zaszyfrowanego pliku eksportu na inne konto."
},
"exportMasterPassword": {
- "message": "Wpisz hasło główne, aby wyeksportować dane z sejfu."
+ "message": "Wpisz hasło główne, aby wyeksportować dane sejfu."
},
"shared": {
"message": "Udostępnione"
@@ -1372,7 +1372,7 @@
"message": "Funkcja jest niedostępna"
},
"legacyEncryptionUnsupported": {
- "message": "Starsze szyfrowanie nie jest już obsługiwane. Skontaktuj się z pomocą techniczną, aby odzyskać swoje konto."
+ "message": "Starsze szyfrowanie nie jest już obsługiwane. Skontaktuj się z pomocą techniczną, aby odzyskać konto."
},
"premiumMembership": {
"message": "Konto premium"
@@ -1490,7 +1490,7 @@
"message": "Użyj kodu odzyskiwania"
},
"insertU2f": {
- "message": "Włóż klucz bezpieczeństwa do portu USB komputera. Jeśli klucz posiada przycisk, dotknij go."
+ "message": "Włóż klucz bezpieczeństwa do portu USB urządzenia. Jeśli klucz ma przycisk, dotknij go."
},
"openInNewTab": {
"message": "Otwórz w nowej karcie"
@@ -1502,7 +1502,7 @@
"message": "Odczytaj klucz bezpieczeństwa"
},
"awaitingSecurityKeyInteraction": {
- "message": "Oczekiwanie na interakcję z kluczem bezpieczeństwa..."
+ "message": "Oczekiwanie na klucz bezpieczeństwa..."
},
"loginUnavailable": {
"message": "Logowanie jest niedostępne"
@@ -1550,7 +1550,7 @@
"message": "FIDO2 WebAuthn"
},
"webAuthnDesc": {
- "message": "Użyj dowolnego klucza bezpieczeństwa WebAuthn, aby uzyskać dostęp do swojego konta."
+ "message": "Użyj dowolnego klucza bezpieczeństwa WebAuthn, aby uzyskać dostęp do konta."
},
"emailTitle": {
"message": "Adres e-mail"
@@ -1606,7 +1606,7 @@
"message": "Sugestie autouzupełniania"
},
"autofillSpotlightTitle": {
- "message": "Łatwe znajdowanie sugestii autouzupełniania"
+ "message": "Łatwe wyszukiwanie sugestii autouzupełniania"
},
"autofillSpotlightDesc": {
"message": "Wyłącz ustawienia autouzupełniania swojej przeglądarki, aby nie kolidowały z Bitwarden."
@@ -1639,7 +1639,7 @@
"message": "Dotyczy wszystkich zalogowanych kont."
},
"turnOffBrowserBuiltInPasswordManagerSettings": {
- "message": "Wyłącz wbudowany w przeglądarkę menedżer haseł, aby uniknąć konfliktów."
+ "message": "Wyłącz menedżer haseł przeglądarki, aby uniknąć konfliktów."
},
"turnOffBrowserBuiltInPasswordManagerSettingsLink": {
"message": "Edytuj ustawienia przeglądarki."
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Kod zabezpieczający"
},
+ "cardNumber": {
+ "message": "numer karty"
+ },
"ex": {
"message": "np."
},
@@ -1977,7 +1980,7 @@
"message": "Kolekcje"
},
"nCollections": {
- "message": "Kolekcje: $COUNT$",
+ "message": "Kolekcje ($COUNT$)",
"placeholders": {
"count": {
"content": "$1",
@@ -2646,13 +2649,13 @@
"description": "Description of the update in Bitwarden slide on the at-risk password page carousel"
},
"updateInBitwardenSlideImgAltPeriod": {
- "message": "Ilustracja powiadomienia Bitwardena, skłaniająca użytkownika do zaktualizowania danych logowania."
+ "message": "Ilustracja powiadomienia Bitwarden, zachęcająca użytkownika do zaktualizowania danych logowania."
},
"turnOnAutofill": {
"message": "Włącz autouzupełnianie"
},
"turnedOnAutofill": {
- "message": "Włączono autouzupełnianie"
+ "message": "Autouzupełnianie zostało włączone"
},
"dismiss": {
"message": "Odrzuć"
@@ -2902,7 +2905,7 @@
"message": "Data i czas usunięcia są wymagane."
},
"dateParsingError": {
- "message": "Wystąpił błąd podczas zapisywania daty usunięcia i wygaśnięcia."
+ "message": "Wystąpił błąd podczas zapisywania dat usunięcia i wygaśnięcia."
},
"hideYourEmail": {
"message": "Ukryj mój adres e-mail przed odbiorcami."
@@ -3136,7 +3139,7 @@
"message": "Błąd odszyfrowywania"
},
"couldNotDecryptVaultItemsBelow": {
- "message": "Bitwarden nie mógł odszyfrować elementów sejfu wymienionych poniżej."
+ "message": "Bitwarden nie mógł odszyfrować poniższych elementów sejfu."
},
"contactCSToAvoidDataLossPart1": {
"message": "Skontaktuj się z działem obsługi klienta,",
@@ -3449,7 +3452,7 @@
"message": "Powiadomienie zostało wysłane na urządzenie"
},
"youWillBeNotifiedOnceTheRequestIsApproved": {
- "message": "Zostaniesz powiadomiony po zatwierdzeniu prośby"
+ "message": "Zostaniesz powiadomiony po potwierdzeniu"
},
"needAnotherOptionV1": {
"message": "Potrzebujesz innej opcji?"
@@ -3458,7 +3461,29 @@
"message": "Logowanie rozpoczęte"
},
"logInRequestSent": {
- "message": "Żądanie wysłane"
+ "message": "Prośba została wysłana"
+ },
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Urządzenie"
+ },
+ "loginStatus": {
+ "message": "Login status"
},
"masterPasswordChanged": {
"message": "Hasło główne zostało zapisane"
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Zapamiętaj to urządzenie, aby przyszłe logowania były bezproblemowe"
},
+ "manageDevices": {
+ "message": "Zarządzaj urządzeniami"
+ },
+ "currentSession": {
+ "message": "Obecna sesja"
+ },
+ "mobile": {
+ "message": "Telefon",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Rozszerzenie",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Komputer",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Sejf internetowy"
+ },
+ "webApp": {
+ "message": "Aplikacja internetowa"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "Pierwsze logowanie"
+ },
+ "trusted": {
+ "message": "Zaufane"
+ },
+ "needsApproval": {
+ "message": "Wymagane potwierdzenie"
+ },
+ "devices": {
+ "message": "Urządzenia"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Potwierdź dostęp"
+ },
+ "denyAccess": {
+ "message": "Odmów dostępu"
+ },
+ "time": {
+ "message": "Czas"
+ },
+ "deviceType": {
+ "message": "Rodzaj urządzenia"
+ },
+ "loginRequest": {
+ "message": "Żądanie logowania"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Teraz"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Poproszono $MINUTES$ min temu",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Wymagane zatwierdzenie urządzenia. Wybierz opcję zatwierdzenia poniżej:"
},
@@ -3563,19 +3695,19 @@
"message": "Wymagane zatwierdzenie urządzenia"
},
"selectAnApprovalOptionBelow": {
- "message": "Wybierz opcję zatwierdzenia poniżej"
+ "message": "Wybierz opcję potwierdzenia"
},
"rememberThisDevice": {
"message": "Zapamiętaj urządzenie"
},
"uncheckIfPublicDevice": {
- "message": "Odznacz, jeśli używasz publicznego urządzenia"
+ "message": "Wyłącz na obcych urządzeniach"
},
"approveFromYourOtherDevice": {
- "message": "Zatwierdź z innego twojego urządzenia"
+ "message": "Potwierdź za pomocą innego urządzenia"
},
"requestAdminApproval": {
- "message": "Poproś administratora o zatwierdzenie"
+ "message": "Poproś administratora o potwierdzenie"
},
"unableToCompleteLogin": {
"message": "Nie można ukończyć logowania"
@@ -3624,10 +3756,10 @@
"message": "Konto zostało utworzone!"
},
"adminApprovalRequested": {
- "message": "Poproszono administratora o zatwierdzenie"
+ "message": "Poproszono administratora o potwierdzenie"
},
"adminApprovalRequestSentToAdmins": {
- "message": "Twoja prośba została wysłana do Twojego administratora."
+ "message": "Prośba została wysłana do administratora."
},
"troubleLoggingIn": {
"message": "Problem z logowaniem?"
@@ -4307,7 +4439,7 @@
"description": "Body content for dialog which asks if the user wants to proceed to the browser's keyboard shortcut settings page"
},
"overrideDefaultBrowserAutofillTitle": {
- "message": "Czy ustawić Bitwarden jako domyślny menadżer haseł?",
+ "message": "Ustawić Bitwarden jako domyślny menadżer haseł?",
"description": "Dialog title facilitating the ability to override a chrome browser's default autofill behavior"
},
"overrideDefaultBrowserAutofillDescription": {
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopiuj $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Kopiuj $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
@@ -5455,7 +5587,7 @@
"message": "Nie masz uprawnień do przeglądania tej strony. Spróbuj zalogować się na inne konto."
},
"wasmNotSupported": {
- "message": "Zestaw WebAssembly nie jest obsługiwany w przeglądarce lub nie jest włączony. Do korzystania z aplikacji Bitwarden wymagany jest zestaw WebAssembre.",
+ "message": "WebAssembly nie jest obsługiwany w przeglądarce lub jest wyłączony. WebAssembly jest wymagany do korzystania z aplikacji Bitwarden.",
"description": "'WebAssembly' is a technical term and should not be translated."
}
}
diff --git a/apps/browser/src/_locales/pt_BR/messages.json b/apps/browser/src/_locales/pt_BR/messages.json
index 4d0e4148782..7d5509a628b 100644
--- a/apps/browser/src/_locales/pt_BR/messages.json
+++ b/apps/browser/src/_locales/pt_BR/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Código de Segurança"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Pedido enviado"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Lembrar deste dispositivo para permanecer conectado"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Aprovação do dispositivo necessária. Selecione uma opção de aprovação abaixo:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copiar $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/pt_PT/messages.json b/apps/browser/src/_locales/pt_PT/messages.json
index 8f06014b6b2..b31a7797df3 100644
--- a/apps/browser/src/_locales/pt_PT/messages.json
+++ b/apps/browser/src/_locales/pt_PT/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Código de segurança"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Pedido enviado"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Palavra-passe mestra guardada"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Memorizar este dispositivo para facilitar futuros inícios de sessão"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "É necessária a aprovação do dispositivo. Selecione uma opção de aprovação abaixo:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copiar $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ro/messages.json b/apps/browser/src/_locales/ro/messages.json
index 02fc0054e73..7f54640af25 100644
--- a/apps/browser/src/_locales/ro/messages.json
+++ b/apps/browser/src/_locales/ro/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Cod de securitate"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Este necesară aprobarea dispozitivului. Selectați o opțiune de autorizare de mai jos:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/ru/messages.json b/apps/browser/src/_locales/ru/messages.json
index 2c9aa0f4d45..31e331fadad 100644
--- a/apps/browser/src/_locales/ru/messages.json
+++ b/apps/browser/src/_locales/ru/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Код безопасности"
},
+ "cardNumber": {
+ "message": "номер карты"
+ },
"ex": {
"message": "напр."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Запрос отправлен"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Запрос входа для $EMAIL$ на $DEVICE$ одобрен",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Вы отклонили попытку авторизации с другого устройства. Если это были вы, попробуйте авторизоваться с этого устройства еще раз."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Мастер-пароль сохранен"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Запомнить это устройство, чтобы в будущем авторизовываться быстрее"
},
+ "manageDevices": {
+ "message": "Управление устройствами"
+ },
+ "currentSession": {
+ "message": "Текущая сессия"
+ },
+ "mobile": {
+ "message": "Мобильный",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Расширение",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Компьютер",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Веб-хранилище"
+ },
+ "webApp": {
+ "message": "Веб-приложение"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Запрос в ожидании"
+ },
+ "firstLogin": {
+ "message": "Первый вход"
+ },
+ "trusted": {
+ "message": "Доверенный"
+ },
+ "needsApproval": {
+ "message": "Требуется одобрение"
+ },
+ "devices": {
+ "message": "Устройства"
+ },
+ "accessAttemptBy": {
+ "message": "Попытка доступа $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Подтвердить доступ"
+ },
+ "denyAccess": {
+ "message": "Отказать в доступе"
+ },
+ "time": {
+ "message": "Время"
+ },
+ "deviceType": {
+ "message": "Тип устройства"
+ },
+ "loginRequest": {
+ "message": "Запрос на вход"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Только что"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Запрошено $MINUTES$ минут назад",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Требуется одобрение устройства. Выберите вариант ниже:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Скопировать $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Копировать $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/si/messages.json b/apps/browser/src/_locales/si/messages.json
index aa88e12ba39..13e6c2522bf 100644
--- a/apps/browser/src/_locales/si/messages.json
+++ b/apps/browser/src/_locales/si/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "ආරක්ෂක කේතය"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "හිටපු."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/sk/messages.json b/apps/browser/src/_locales/sk/messages.json
index 356617ea25c..7285399af73 100644
--- a/apps/browser/src/_locales/sk/messages.json
+++ b/apps/browser/src/_locales/sk/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Bezpečnostný kód"
},
+ "cardNumber": {
+ "message": "číslo karty"
+ },
"ex": {
"message": "napr."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Požiadavka bola odoslaná"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Potvrdené prihlásenie pre $EMAIL$ na $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli vy, skúste sa prihlásiť pomocou zariadenia znova."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Hlavné heslo uložené"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Zapamätať si toto zariadenie, pre budúce bezproblémové prihlásenie"
},
+ "manageDevices": {
+ "message": "Spravovať zariadenia"
+ },
+ "currentSession": {
+ "message": "Aktuálna relácia"
+ },
+ "mobile": {
+ "message": "Mobil",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Rozšírenie",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Počítač",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Webový trezor"
+ },
+ "webApp": {
+ "message": "Webová aplikácia"
+ },
+ "cli": {
+ "message": "Príkazový riadok (CLI)"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Žiadosť čaká na spracovanie"
+ },
+ "firstLogin": {
+ "message": "Prvé prihlásenie"
+ },
+ "trusted": {
+ "message": "Dôveryhodné"
+ },
+ "needsApproval": {
+ "message": "Potrebuje súhlas"
+ },
+ "devices": {
+ "message": "Zariadenia"
+ },
+ "accessAttemptBy": {
+ "message": "Pokus o prístup z $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Potvrdiť prístup"
+ },
+ "denyAccess": {
+ "message": "Zamietnuť prístup"
+ },
+ "time": {
+ "message": "Čas"
+ },
+ "deviceType": {
+ "message": "Typ zariadenia"
+ },
+ "loginRequest": {
+ "message": "Žiadosť o prihlásenie"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Práve teraz"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Vyžiadané pred $MINUTES$ min.",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Vyžaduje sa schválenie zariadenia. Vyberte možnosť schválenia nižšie:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopírovať $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Kopírovať $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/sl/messages.json b/apps/browser/src/_locales/sl/messages.json
index 72f058254e4..397b7be54e8 100644
--- a/apps/browser/src/_locales/sl/messages.json
+++ b/apps/browser/src/_locales/sl/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Varnostna koda"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "npr."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/sr/messages.json b/apps/browser/src/_locales/sr/messages.json
index 4ac75bde569..f68d0b97447 100644
--- a/apps/browser/src/_locales/sr/messages.json
+++ b/apps/browser/src/_locales/sr/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Сигурносни код"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "нпр."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Захтев је послат"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Главна лозинка сачувана"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Запамтити овај уређај да би будуће пријаве биле беспрекорне"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Потребно је одобрење уређаја. Изаберите опцију одобрења испод:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Копирај $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/sv/messages.json b/apps/browser/src/_locales/sv/messages.json
index ff20cdd2ed9..725497cc26b 100644
--- a/apps/browser/src/_locales/sv/messages.json
+++ b/apps/browser/src/_locales/sv/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Säkerhetskod"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "t. ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Begäran skickad"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Inloggningsbegäran godkänd för $EMAIL$ på $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Du nekade ett inloggningsförsök från en annan enhet. Om det var du, försök att logga in med enheten igen."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Huvudlösenordet sparades"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Kom ihåg den här enheten för att göra framtida inloggningar smidiga"
},
+ "manageDevices": {
+ "message": "Hantera enheter"
+ },
+ "currentSession": {
+ "message": "Aktuell session"
+ },
+ "mobile": {
+ "message": "Mobil",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Tillägg",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Skrivbord",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Webbvalv"
+ },
+ "webApp": {
+ "message": "Webbapp"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Förfrågning väntar"
+ },
+ "firstLogin": {
+ "message": "Första inloggningen"
+ },
+ "trusted": {
+ "message": "Betrodd"
+ },
+ "needsApproval": {
+ "message": "Kräver godkännande"
+ },
+ "devices": {
+ "message": "Enheter"
+ },
+ "accessAttemptBy": {
+ "message": "Åtkomstförsök av $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Bekräfta åtkomst"
+ },
+ "denyAccess": {
+ "message": "Neka åtkomst"
+ },
+ "time": {
+ "message": "Tid"
+ },
+ "deviceType": {
+ "message": "Enhetstyp"
+ },
+ "loginRequest": {
+ "message": "Begäran om inloggning"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just nu"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Begärdes för $MINUTES$ minuter sedan",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Godkännande av enhet krävs. Välj ett alternativ för godkännande nedan:"
},
@@ -4075,10 +4207,10 @@
"message": "Inloggad!"
},
"passkeyNotCopied": {
- "message": "Lösennyckeln kommer inte kopieras"
+ "message": "Inloggningsnyckeln kommer inte kopieras"
},
"passkeyNotCopiedAlert": {
- "message": "Lösennyckeln kommer inte att kopieras till det klonade objektet. Vill du fortsätta klona det här objektet?"
+ "message": "Inloggningsnyckeln kommer inte att kopieras till det klonade objektet. Vill du fortsätta klona det här objektet?"
},
"passkeyFeatureIsNotImplementedForAccountsWithoutMasterPassword": {
"message": "Verifiering krävs av den initierande webbplatsen. Denna funktion är ännu inte implementerad för konton utan huvudlösenord."
@@ -4087,7 +4219,7 @@
"message": "Logga in med nyckel?"
},
"passkeyAlreadyExists": {
- "message": "En lösennyckel finns redan för detta program."
+ "message": "En inloggningsnyckel finns redan för detta program."
},
"noPasskeysFoundForThisApplication": {
"message": "Inga lösennycklar hittades för detta program."
@@ -4111,25 +4243,25 @@
"message": "Spara nyckel som ny inloggning"
},
"chooseCipherForPasskeySave": {
- "message": "Välj en inloggning som du vill spara nyckeln till"
+ "message": "Välj en inloggning som du vill spara inloggningsnyckeln till"
},
"chooseCipherForPasskeyAuth": {
- "message": "Välj en lösenordskod att logga in med"
+ "message": "Välj en inloggningsnyckel att logga in med"
},
"passkeyItem": {
- "message": "Lösennyckelobjekt"
+ "message": "Inloggningsnyckelsobjekt"
},
"overwritePasskey": {
- "message": "Skriv över lösennyckel?"
+ "message": "Skriv över inloggningsnyckel?"
},
"overwritePasskeyAlert": {
- "message": "Detta objekt innehåller redan en lösennyckel. Är du säker på att du vill skriva över nuvarande lösennyckeln?"
+ "message": "Detta objekt innehåller redan en inloggningsnyckel. Är du säker på att du vill skriva över nuvarande inloggningsnyckel?"
},
"featureNotSupported": {
"message": "Funktionen stöds ännu inte"
},
"yourPasskeyIsLocked": {
- "message": "Autentisering krävs för att använda lösennyckel. Verifiera din identitet för att fortsätta."
+ "message": "Autentisering krävs för att använda inloggningsnyckel. Verifiera din identitet för att fortsätta."
},
"multifactorAuthenticationCancelled": {
"message": "Flerfaktorsautentisering avbruten"
@@ -4354,10 +4486,10 @@
"message": "Lyckades"
},
"removePasskey": {
- "message": "Ta bort passkey"
+ "message": "Ta bort inloggningsnyckel"
},
"passkeyRemoved": {
- "message": "Passkey borttagen"
+ "message": "Inloggningsnyckel borttagen"
},
"autofillSuggestions": {
"message": "Förslag för autofyll"
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopiera $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/te/messages.json b/apps/browser/src/_locales/te/messages.json
index ecc7da63e79..9a6d9a4d316 100644
--- a/apps/browser/src/_locales/te/messages.json
+++ b/apps/browser/src/_locales/te/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/th/messages.json b/apps/browser/src/_locales/th/messages.json
index c085b7557e0..49515eb1c64 100644
--- a/apps/browser/src/_locales/th/messages.json
+++ b/apps/browser/src/_locales/th/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Security Code"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "ex."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Request sent"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Remember this device to make future logins seamless"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Device approval required. Select an approval option below:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/tr/messages.json b/apps/browser/src/_locales/tr/messages.json
index 5dae8dfcdc4..cd7c8d3f0b6 100644
--- a/apps/browser/src/_locales/tr/messages.json
+++ b/apps/browser/src/_locales/tr/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Güvenlik kodu"
},
+ "cardNumber": {
+ "message": "kart numarası"
+ },
"ex": {
"message": "örn."
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "İstek gönderildi"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "$DEVICE$ cihazında $EMAIL$ girişi onaylandı",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Başka bir cihazdan giriş isteğini reddettiniz. Yanlışlıkla yaptıysanız aynı cihazdan yeniden giriş yapmayı deneyin."
+ },
+ "device": {
+ "message": "Cihaz"
+ },
+ "loginStatus": {
+ "message": "Oturum açma durumu"
+ },
"masterPasswordChanged": {
"message": "Ana parola kaydedildi"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Sonraki girişleri kolaylaştırmak için bu cihazı hatırla"
},
+ "manageDevices": {
+ "message": "Cihazları yönet"
+ },
+ "currentSession": {
+ "message": "Geçerli oturum"
+ },
+ "mobile": {
+ "message": "Mobil",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Uzantı",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Masaüstü",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web kasası"
+ },
+ "webApp": {
+ "message": "Web uygulaması"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "İstek bekliyor"
+ },
+ "firstLogin": {
+ "message": "İlk giriş"
+ },
+ "trusted": {
+ "message": "Güvenilen"
+ },
+ "needsApproval": {
+ "message": "Onay gerekiyor"
+ },
+ "devices": {
+ "message": "Cihazlar"
+ },
+ "accessAttemptBy": {
+ "message": "$EMAIL$ erişim denemesi",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Erişimi onayla"
+ },
+ "denyAccess": {
+ "message": "Erişimi reddet"
+ },
+ "time": {
+ "message": "Tarih"
+ },
+ "deviceType": {
+ "message": "Cihaz türü"
+ },
+ "loginRequest": {
+ "message": "Giriş isteği"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "Bu istek artık geçerli değil."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Hesabınıza erişmeye mi çalışıyorsunuz?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "$DEVICE$ cihazında $EMAIL$ girişi onaylandı",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "Başka bir cihazdan giriş isteğini reddettiniz. Yanlışlıkla yaptıysanız aynı cihazdan yeniden giriş yapmayı deneyin."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Giriş isteğinin süresi doldu."
+ },
+ "justNow": {
+ "message": "Az önce"
+ },
+ "requestedXMinutesAgo": {
+ "message": "$MINUTES$ dakika önce istendi",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Cihaz onayı gerekiyor. Lütfen onay yönteminizi seçin:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Kopyala: $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/uk/messages.json b/apps/browser/src/_locales/uk/messages.json
index 3d25e982642..083d89fbd12 100644
--- a/apps/browser/src/_locales/uk/messages.json
+++ b/apps/browser/src/_locales/uk/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Код безпеки"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "зразок"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Запит надіслано"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Головний пароль збережено"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Запам'ятайте цей пристрій, щоб спростити майбутні входи в систему"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Необхідне підтвердження пристрою. Виберіть варіант підтвердження нижче:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Копіювати $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/vi/messages.json b/apps/browser/src/_locales/vi/messages.json
index e2752827221..7aa8348c6b8 100644
--- a/apps/browser/src/_locales/vi/messages.json
+++ b/apps/browser/src/_locales/vi/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "Mã bảo mật"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "Ví dụ:"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "Đã gửi yêu cầu"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Đã lưu mật khẩu chính"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "Nhớ thiết bị này để đăng nhập dễ dàng trong tương lai"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "Yêu cầu phê duyệt thiết bị. Chọn một tuỳ chọn phê duyệt bên dưới:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Sao chép $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/zh_CN/messages.json b/apps/browser/src/_locales/zh_CN/messages.json
index 9ee8fd5a48f..9b7d460261a 100644
--- a/apps/browser/src/_locales/zh_CN/messages.json
+++ b/apps/browser/src/_locales/zh_CN/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "安全码"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "例如"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "请求已发送"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "主密码已保存"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "记住此设备以便将来无缝登录"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "需要设备批准。请在下面选择一个批准选项:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "复制 $FIELD$,$VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/src/_locales/zh_TW/messages.json b/apps/browser/src/_locales/zh_TW/messages.json
index 7403ad53705..b41b9271c75 100644
--- a/apps/browser/src/_locales/zh_TW/messages.json
+++ b/apps/browser/src/_locales/zh_TW/messages.json
@@ -1829,6 +1829,9 @@
"securityCode": {
"message": "安全代碼"
},
+ "cardNumber": {
+ "message": "card number"
+ },
"ex": {
"message": "例如"
},
@@ -3460,6 +3463,28 @@
"logInRequestSent": {
"message": "已傳送請求"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
+ "device": {
+ "message": "Device"
+ },
+ "loginStatus": {
+ "message": "Login status"
+ },
"masterPasswordChanged": {
"message": "Master password saved"
},
@@ -3556,6 +3581,113 @@
"rememberThisDeviceToMakeFutureLoginsSeamless": {
"message": "記住此裝置來讓未來的登入體驗更簡易"
},
+ "manageDevices": {
+ "message": "Manage devices"
+ },
+ "currentSession": {
+ "message": "Current session"
+ },
+ "mobile": {
+ "message": "Mobile",
+ "description": "Mobile app"
+ },
+ "extension": {
+ "message": "Extension",
+ "description": "Browser extension/addon"
+ },
+ "desktop": {
+ "message": "Desktop",
+ "description": "Desktop app"
+ },
+ "webVault": {
+ "message": "Web vault"
+ },
+ "webApp": {
+ "message": "Web app"
+ },
+ "cli": {
+ "message": "CLI"
+ },
+ "sdk": {
+ "message": "SDK",
+ "description": "Software Development Kit"
+ },
+ "requestPending": {
+ "message": "Request pending"
+ },
+ "firstLogin": {
+ "message": "First login"
+ },
+ "trusted": {
+ "message": "Trusted"
+ },
+ "needsApproval": {
+ "message": "Needs approval"
+ },
+ "devices": {
+ "message": "Devices"
+ },
+ "accessAttemptBy": {
+ "message": "Access attempt by $EMAIL$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ }
+ }
+ },
+ "confirmAccess": {
+ "message": "Confirm access"
+ },
+ "denyAccess": {
+ "message": "Deny access"
+ },
+ "time": {
+ "message": "Time"
+ },
+ "deviceType": {
+ "message": "Device Type"
+ },
+ "loginRequest": {
+ "message": "Login request"
+ },
+ "thisRequestIsNoLongerValid": {
+ "message": "This request is no longer valid."
+ },
+ "areYouTryingToAccessYourAccount": {
+ "message": "Are you trying to access your account?"
+ },
+ "logInConfirmedForEmailOnDevice": {
+ "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "iOS"
+ }
+ }
+ },
+ "youDeniedALogInAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ },
+ "loginRequestHasAlreadyExpired": {
+ "message": "Login request has already expired."
+ },
+ "justNow": {
+ "message": "Just now"
+ },
+ "requestedXMinutesAgo": {
+ "message": "Requested $MINUTES$ minutes ago",
+ "placeholders": {
+ "minutes": {
+ "content": "$1",
+ "example": "5"
+ }
+ }
+ },
"deviceApprovalRequired": {
"message": "裝置需要取得核准。請在下面選擇一個核准選項:"
},
@@ -4465,17 +4597,17 @@
}
}
},
- "copyFieldValue": {
- "message": "Copy $FIELD$, $VALUE$",
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
"content": "$1",
"example": "Username"
},
- "value": {
+ "ciphername": {
"content": "$2",
- "example": "Foo"
+ "example": "Login Item"
}
}
},
diff --git a/apps/browser/store/locales/sv/copy.resx b/apps/browser/store/locales/sv/copy.resx
index d03c7fc808d..c37095ec167 100644
--- a/apps/browser/store/locales/sv/copy.resx
+++ b/apps/browser/store/locales/sv/copy.resx
@@ -165,7 +165,7 @@ Applikationer för flera plattformar
Säkra och dela känslig data i ditt Bitwarden Vault från vilken webbläsare, mobil enhet eller stationärt operativsystem som helst, och mycket mer.
Bitwarden säkrar mer än bara lösenord
-End-to-end krypterade lösningar för hantering av referenser från Bitwarden gör det möjligt för organisationer att säkra allt, inklusive utvecklarhemligheter och passkey-upplevelser. Besök Bitwarden.com för att lära dig mer om Bitwarden Secrets Manager och Bitwarden Passwordless.dev!
+End-to-end krypterade lösningar för hantering av referenser från Bitwarden gör det möjligt för organisationer att säkra allt, inklusive utvecklarhemligheter och upplevelser med inloggningsnycklar. Besök Bitwarden.com för att lära dig mer om Bitwarden Secrets Manager och Bitwarden Passwordless.dev!
From 80a6268e81b7f4a6a9be61d0b0250644eb7f2a04 Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 19:45:28 +0200
Subject: [PATCH 19/54] Autosync the updated translations (#15673)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/web/src/locales/af/messages.json | 42 ++++++++
apps/web/src/locales/ar/messages.json | 42 ++++++++
apps/web/src/locales/az/messages.json | 46 ++++++++-
apps/web/src/locales/be/messages.json | 42 ++++++++
apps/web/src/locales/bg/messages.json | 42 ++++++++
apps/web/src/locales/bn/messages.json | 42 ++++++++
apps/web/src/locales/bs/messages.json | 42 ++++++++
apps/web/src/locales/ca/messages.json | 42 ++++++++
apps/web/src/locales/cs/messages.json | 42 ++++++++
apps/web/src/locales/cy/messages.json | 42 ++++++++
apps/web/src/locales/da/messages.json | 42 ++++++++
apps/web/src/locales/de/messages.json | 66 ++++++++++---
apps/web/src/locales/el/messages.json | 42 ++++++++
apps/web/src/locales/en_GB/messages.json | 42 ++++++++
apps/web/src/locales/en_IN/messages.json | 42 ++++++++
apps/web/src/locales/eo/messages.json | 42 ++++++++
apps/web/src/locales/es/messages.json | 42 ++++++++
apps/web/src/locales/et/messages.json | 42 ++++++++
apps/web/src/locales/eu/messages.json | 42 ++++++++
apps/web/src/locales/fa/messages.json | 42 ++++++++
apps/web/src/locales/fi/messages.json | 42 ++++++++
apps/web/src/locales/fil/messages.json | 42 ++++++++
apps/web/src/locales/fr/messages.json | 42 ++++++++
apps/web/src/locales/gl/messages.json | 42 ++++++++
apps/web/src/locales/he/messages.json | 42 ++++++++
apps/web/src/locales/hi/messages.json | 42 ++++++++
apps/web/src/locales/hr/messages.json | 42 ++++++++
apps/web/src/locales/hu/messages.json | 42 ++++++++
apps/web/src/locales/id/messages.json | 42 ++++++++
apps/web/src/locales/it/messages.json | 42 ++++++++
apps/web/src/locales/ja/messages.json | 42 ++++++++
apps/web/src/locales/ka/messages.json | 42 ++++++++
apps/web/src/locales/km/messages.json | 42 ++++++++
apps/web/src/locales/kn/messages.json | 42 ++++++++
apps/web/src/locales/ko/messages.json | 42 ++++++++
apps/web/src/locales/lv/messages.json | 42 ++++++++
apps/web/src/locales/ml/messages.json | 42 ++++++++
apps/web/src/locales/mr/messages.json | 42 ++++++++
apps/web/src/locales/my/messages.json | 42 ++++++++
apps/web/src/locales/nb/messages.json | 42 ++++++++
apps/web/src/locales/ne/messages.json | 42 ++++++++
apps/web/src/locales/nl/messages.json | 42 ++++++++
apps/web/src/locales/nn/messages.json | 42 ++++++++
apps/web/src/locales/or/messages.json | 42 ++++++++
apps/web/src/locales/pl/messages.json | 42 ++++++++
apps/web/src/locales/pt_BR/messages.json | 42 ++++++++
apps/web/src/locales/pt_PT/messages.json | 46 ++++++++-
apps/web/src/locales/ro/messages.json | 42 ++++++++
apps/web/src/locales/ru/messages.json | 44 ++++++++-
apps/web/src/locales/si/messages.json | 42 ++++++++
apps/web/src/locales/sk/messages.json | 120 +++++++++++++++--------
apps/web/src/locales/sl/messages.json | 42 ++++++++
apps/web/src/locales/sr_CS/messages.json | 42 ++++++++
apps/web/src/locales/sr_CY/messages.json | 42 ++++++++
apps/web/src/locales/sv/messages.json | 86 +++++++++++-----
apps/web/src/locales/te/messages.json | 42 ++++++++
apps/web/src/locales/th/messages.json | 42 ++++++++
apps/web/src/locales/tr/messages.json | 42 ++++++++
apps/web/src/locales/uk/messages.json | 42 ++++++++
apps/web/src/locales/vi/messages.json | 42 ++++++++
apps/web/src/locales/zh_CN/messages.json | 42 ++++++++
apps/web/src/locales/zh_TW/messages.json | 42 ++++++++
62 files changed, 2682 insertions(+), 78 deletions(-)
diff --git a/apps/web/src/locales/af/messages.json b/apps/web/src/locales/af/messages.json
index 75c9275b288..5cd8d087d15 100644
--- a/apps/web/src/locales/af/messages.json
+++ b/apps/web/src/locales/af/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Beveiligde nota"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ek"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webkluis"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/ar/messages.json b/apps/web/src/locales/ar/messages.json
index 1c103219fa1..7642fa69d34 100644
--- a/apps/web/src/locales/ar/messages.json
+++ b/apps/web/src/locales/ar/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "ملاحظة سرية"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "مفتاح بروتوكول النقل الآمن"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "نسخ الاسم"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "أنا"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "قبو الويب"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/az/messages.json b/apps/web/src/locales/az/messages.json
index a455efa3230..4bcb8431331 100644
--- a/apps/web/src/locales/az/messages.json
+++ b/apps/web/src/locales/az/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Güvənli qeyd"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH açarı"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Adı kopyala"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Mən"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Veb seyf"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Başqa bir cihazdan giriş cəhdinə rədd cavabı verdiniz. Bu həqiqətən siz idinizsə, cihazla yenidən giriş etməyə çalışın."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Giriş tələbinin müddəti artıq bitib."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Giriş tələbini incələ"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Ödənişsiz sınaq müddətiniz $COUNT$ günə bitir.",
"placeholders": {
@@ -8939,11 +8981,11 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Qabaqcıl seçimlər",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Xəbərdarlıq",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"maintainYourSubscription": {
diff --git a/apps/web/src/locales/be/messages.json b/apps/web/src/locales/be/messages.json
index 40875670107..d07df39790c 100644
--- a/apps/web/src/locales/be/messages.json
+++ b/apps/web/src/locales/be/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Абароненая нататка"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Я"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Вэб-сховішча"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/bg/messages.json b/apps/web/src/locales/bg/messages.json
index 77ea169bb2b..4bcfd56e95c 100644
--- a/apps/web/src/locales/bg/messages.json
+++ b/apps/web/src/locales/bg/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Защитена бележка"
},
+ "typeNote": {
+ "message": "Бележка"
+ },
"typeSshKey": {
"message": "SSH ключ"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Копиране на името"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Аз"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Трезор по уеб"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "ИКР"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Вие отказахте опит за вписване от друго устройство. Ако това наистина сте били Вие, опитайте да се впишете от устройството отново."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Заявката за вписване вече е изтекла."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Преглед на заявката за вписване"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Вашият безплатен пробен период приключва след $COUNT$ дни.",
"placeholders": {
diff --git a/apps/web/src/locales/bn/messages.json b/apps/web/src/locales/bn/messages.json
index 66aa1b9a62e..0b0573c244d 100644
--- a/apps/web/src/locales/bn/messages.json
+++ b/apps/web/src/locales/bn/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "সুরক্ষিত নোট"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "ওয়েব ভল্ট"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/bs/messages.json b/apps/web/src/locales/bs/messages.json
index 9d9bece2b6e..02ed711cb5f 100644
--- a/apps/web/src/locales/bs/messages.json
+++ b/apps/web/src/locales/bs/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sigurna bilješka"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ja"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/ca/messages.json b/apps/web/src/locales/ca/messages.json
index 118af8c66fb..782ecc69b67 100644
--- a/apps/web/src/locales/ca/messages.json
+++ b/apps/web/src/locales/ca/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota segura"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Clau SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copia el nom"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Jo"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Caixa forta web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/cs/messages.json b/apps/web/src/locales/cs/messages.json
index 51c04fd9260..6ae11489480 100644
--- a/apps/web/src/locales/cs/messages.json
+++ b/apps/web/src/locales/cs/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Zabezpečená poznámka"
},
+ "typeNote": {
+ "message": "Poznámka"
+ },
"typeSshKey": {
"message": "SSH klíč"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopírovat název"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Já"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webový trezor"
},
+ "webApp": {
+ "message": "Webová aplikace"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Pokus o přihlášení byl zamítnut z jiného zařízení. Pokud jste to opravdu Vy, zkuste se znovu přihlásit do zařízení."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Požadavek na přihlášení byl schválen pro $EMAIL$ na $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Pokus o přihlášení byl zamítnut z jiného zařízení. Pokud jste to Vy, zkuste se znovu přihlásit do zařízení."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Požadavek na přihlášení již vypršel."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Podívat se na žádost o přihlášení"
},
+ "loginRequest": {
+ "message": "Požadavek na přihlášení"
+ },
"freeTrialEndPromptCount": {
"message": "Vaše zkušební doba končí za $COUNT$ dnů.",
"placeholders": {
diff --git a/apps/web/src/locales/cy/messages.json b/apps/web/src/locales/cy/messages.json
index 012dcac1fc9..4089f11392c 100644
--- a/apps/web/src/locales/cy/messages.json
+++ b/apps/web/src/locales/cy/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/da/messages.json b/apps/web/src/locales/da/messages.json
index 3dfde9ee756..1d2ebcaca0f 100644
--- a/apps/web/src/locales/da/messages.json
+++ b/apps/web/src/locales/da/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sikret notat"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH-nøgle"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopiér navn"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Mig"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web-boks"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Du nægtede et loginforsøg fra en anden enhed. Hvis dette virkelig var dig, prøv at logge ind med enheden igen."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login-anmodning er allerede udløbet."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Den gratis prøveperiode slutter om $COUNT$ dage.",
"placeholders": {
diff --git a/apps/web/src/locales/de/messages.json b/apps/web/src/locales/de/messages.json
index 5ce3b6883bb..3b0d8cccf97 100644
--- a/apps/web/src/locales/de/messages.json
+++ b/apps/web/src/locales/de/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sichere Notiz"
},
+ "typeNote": {
+ "message": "Notiz"
+ },
"typeSshKey": {
"message": "SSH-Schlüssel"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Name kopieren"
},
+ "cardNumber": {
+ "message": "Kartennummer"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ich"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web-Tresor"
},
+ "webApp": {
+ "message": "Web-App"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Du hast einen Anmeldeversuch von einem anderen Gerät abgelehnt. Wenn du das wirklich warst, versuche dich erneut mit dem Gerät anzumelden."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Du hast einen Anmeldeversuch von einem anderen Gerät abgelehnt. Wenn du das wirklich warst, versuche dich erneut mit dem Gerät anzumelden."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Anmeldeanfrage ist bereits abgelaufen."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Anmeldeanfrage überprüfen"
},
+ "loginRequest": {
+ "message": "Anmeldungsanfrage"
+ },
"freeTrialEndPromptCount": {
"message": "Deine kostenlose Testversion endet in $COUNT$ Tagen.",
"placeholders": {
@@ -6077,7 +6119,7 @@
"message": "Master-Passwort aktualisieren"
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Ändere dein Master-Passwort, um die Kontowiederherstellung abzuschließen."
},
"updateMasterPasswordSubtitle": {
"message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
@@ -8463,7 +8505,7 @@
"message": "Admin-Genehmigung anfragen"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "Anmeldung kann nicht abgeschlossen werden"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
"message": "You need to log in on a trusted device or ask your administrator to assign you a password."
@@ -8935,7 +8977,7 @@
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "Mehr über die Übereinstimmungs-Erkennung",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
@@ -8943,7 +8985,7 @@
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Warnung",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"maintainYourSubscription": {
@@ -10758,20 +10800,20 @@
"message": "Skip to web app"
},
"bitwardenExtensionInstalled": {
- "message": "Bitwarden extension installed!"
+ "message": "Bitwarden-Erweiterung installiert!"
},
"openExtensionToAutofill": {
"message": "Open the extension to log in and start autofilling."
},
"openBitwardenExtension": {
- "message": "Open Bitwarden extension"
+ "message": "Bitwarden-Erweiterung öffnen"
},
"gettingStartedWithBitwardenPart1": {
"message": "For tips on getting started with Bitwarden visit the",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart2": {
- "message": "Learning Center",
+ "message": "Lernzentrum",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart3": {
@@ -10808,19 +10850,19 @@
"description": "Error message shown when trying to add credit to a trialing organization without a billing address."
},
"billingAddress": {
- "message": "Billing address"
+ "message": "Rechnungsadresse"
},
"addBillingAddress": {
- "message": "Add billing address"
+ "message": "Rechnungsadresse hinzufügen"
},
"editBillingAddress": {
- "message": "Edit billing address"
+ "message": "Rechnungsadresse bearbeiten"
},
"noBillingAddress": {
"message": "No address on file."
},
"billingAddressUpdated": {
- "message": "Your billing address has been updated."
+ "message": "Deine Rechnungsadresse wurde aktualisiert."
},
"paymentDetails": {
"message": "Payment details"
@@ -10829,7 +10871,7 @@
"message": "Your payment method has been updated."
},
"bankAccountVerified": {
- "message": "Your bank account has been verified."
+ "message": "Dein Bankkonto wurde verifiziert."
},
"availableCreditAppliedToInvoice": {
"message": "Any available credit will be automatically applied towards invoices generated for this account."
diff --git a/apps/web/src/locales/el/messages.json b/apps/web/src/locales/el/messages.json
index b3e8d6d91d2..21f13a3440f 100644
--- a/apps/web/src/locales/el/messages.json
+++ b/apps/web/src/locales/el/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Ασφαλής σημείωση"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Κλειδί SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Αντιγραφή ονόματος"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Εγώ"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web Vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/en_GB/messages.json b/apps/web/src/locales/en_GB/messages.json
index 7993308c44a..2b3edba1ee9 100644
--- a/apps/web/src/locales/en_GB/messages.json
+++ b/apps/web/src/locales/en_GB/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/en_IN/messages.json b/apps/web/src/locales/en_IN/messages.json
index 1608845dca0..f2fb53f9b7d 100644
--- a/apps/web/src/locales/en_IN/messages.json
+++ b/apps/web/src/locales/en_IN/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/eo/messages.json b/apps/web/src/locales/eo/messages.json
index 86ed31ac4a4..ebc17d7e9b2 100644
--- a/apps/web/src/locales/eo/messages.json
+++ b/apps/web/src/locales/eo/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sekura noto"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH-ŝlosilo"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopii la nomon"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Mi"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Rettrezorejo"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/es/messages.json b/apps/web/src/locales/es/messages.json
index 1daee236d86..5c70de44650 100644
--- a/apps/web/src/locales/es/messages.json
+++ b/apps/web/src/locales/es/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota segura"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Clave SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copiar nombre"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Yo"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Caja fuerte Web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Tu prueba gratuita termina en $COUNT$ días.",
"placeholders": {
diff --git a/apps/web/src/locales/et/messages.json b/apps/web/src/locales/et/messages.json
index d95ff17edb8..6e865f9b5cb 100644
--- a/apps/web/src/locales/et/messages.json
+++ b/apps/web/src/locales/et/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Turvaline märkus"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopeeri nimi"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Mina"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Veebihoidla"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Sinu tasuta prooviaeg lõppeb $COUNT$ päeva pärast.",
"placeholders": {
diff --git a/apps/web/src/locales/eu/messages.json b/apps/web/src/locales/eu/messages.json
index 546ffae4aea..fe066e152c0 100644
--- a/apps/web/src/locales/eu/messages.json
+++ b/apps/web/src/locales/eu/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Ohar segurua"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ni"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webguneko kutxa gotorra"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/fa/messages.json b/apps/web/src/locales/fa/messages.json
index a4072ddca87..8e8fd9663bf 100644
--- a/apps/web/src/locales/fa/messages.json
+++ b/apps/web/src/locales/fa/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "یادداشت امن"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "کلید SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "کپی نام"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "من"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "گاوصندوق وب"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "شما تلاش برای ورود به سیستم از دستگاه دیگری را رد کردید. اگر واقعاً این شما بودید، سعی کنید دوباره با دستگاه وارد شوید."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "درخواست ورود قبلاً منقضی شده است."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "بررسی درخواست ورود"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "دوره آزمایشی رایگان شما در $COUNT$ روز به پایان میرسد.",
"placeholders": {
diff --git a/apps/web/src/locales/fi/messages.json b/apps/web/src/locales/fi/messages.json
index deb06c4c2b7..b2387149755 100644
--- a/apps/web/src/locales/fi/messages.json
+++ b/apps/web/src/locales/fi/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Salattu muistio"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH-avain"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopioi nimi"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Minä"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Verkkoholvi"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "Komentorivi"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Kirjautumispyyntö on jo erääntynyt."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Tarkastele kirjautumispyyntöä"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Ilmainen kokeilujakso päättyy $COUNT$ päivän kuluttua.",
"placeholders": {
diff --git a/apps/web/src/locales/fil/messages.json b/apps/web/src/locales/fil/messages.json
index 9925074ad18..b56828be0e4 100644
--- a/apps/web/src/locales/fil/messages.json
+++ b/apps/web/src/locales/fil/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure na tala"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ako"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/fr/messages.json b/apps/web/src/locales/fr/messages.json
index 5ca186d843c..9a86b4aceb5 100644
--- a/apps/web/src/locales/fr/messages.json
+++ b/apps/web/src/locales/fr/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Note sécurisée"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Clé SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copier le nom"
},
+ "cardNumber": {
+ "message": "numéro de carte"
+ },
+ "copyFieldCipherName": {
+ "message": "Copier $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Moi"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Coffre web"
},
+ "webApp": {
+ "message": "Application web"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Vous avez refusé une tentative de connexion depuis un autre appareil. Si c'était vraiment vous, essayez de vous connecter à nouveau avec l'appareil."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Demande de connexion approuvée pour $EMAIL$ sur $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Vous avez refusé une tentative de connexion depuis un autre appareil. Si c'était vous, essayez de vous connecter à nouveau avec l'appareil."
+ },
"loginRequestHasAlreadyExpired": {
"message": "La demande de connexion a déjà expiré."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Examiner la demande de connexion"
},
+ "loginRequest": {
+ "message": "Demande de connexion"
+ },
"freeTrialEndPromptCount": {
"message": "Votre essai gratuit se termine dans $COUNT$ jours.",
"placeholders": {
diff --git a/apps/web/src/locales/gl/messages.json b/apps/web/src/locales/gl/messages.json
index d22f7a2278c..a456d62e8c6 100644
--- a/apps/web/src/locales/gl/messages.json
+++ b/apps/web/src/locales/gl/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota segura"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/he/messages.json b/apps/web/src/locales/he/messages.json
index 476f2603b68..6d0d2e38166 100644
--- a/apps/web/src/locales/he/messages.json
+++ b/apps/web/src/locales/he/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "הערה מאובטחת"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "מפתח SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "העתק שם"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "אני"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "כספת רשת"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "דחית ניסיון כניסה ממכשיר אחר. אם זה באמת היית אתה, נסה להיכנס עם המכשיר שוב."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "כבר פג תוקפה של בקשת הכניסה."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "סקור בקשת כניסה"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "הניסיון החינמי שלך מסתיים בעוד $COUNT$ ימים.",
"placeholders": {
diff --git a/apps/web/src/locales/hi/messages.json b/apps/web/src/locales/hi/messages.json
index ebb408a90e1..301e8a7abb3 100644
--- a/apps/web/src/locales/hi/messages.json
+++ b/apps/web/src/locales/hi/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "सुरक्षित नोट"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "मैं"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/hr/messages.json b/apps/web/src/locales/hr/messages.json
index 2f706a33e7f..b3b2aec4eb6 100644
--- a/apps/web/src/locales/hr/messages.json
+++ b/apps/web/src/locales/hr/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sigurna bilješka"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH ključ"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopiraj ime"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ja"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web trezor"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Odbijena je prijava na drugom uređaju. Ako si ovo stvarno ti, pokušaj se ponovno prijaviti uređajem."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Zahtjev za prijavu je već istekao."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Pregledaj zahtjev za prijavu"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Besplatno probno razdoblje završava za $COUNT$ dan/a.",
"placeholders": {
diff --git a/apps/web/src/locales/hu/messages.json b/apps/web/src/locales/hu/messages.json
index 6864afe594d..218cd5e0a2d 100644
--- a/apps/web/src/locales/hu/messages.json
+++ b/apps/web/src/locales/hu/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Biztonságos jegyzet"
},
+ "typeNote": {
+ "message": "Jegyzet"
+ },
"typeSshKey": {
"message": "SSH kulcs"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Név másolása"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Én"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webes széf"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Megtagadásra került egy bejelentkezési kísérletet egy másik eszközről. Ha valóban mi voltunk, próbáljunk meg újra bejelentkezni az eszközzel."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "A bejelentkezési kérés már lejárt."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Bejelentkezési kérés áttekintése"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Az ingyenes próbaidőszak $COUNT$ nap múlva ér véget.",
"placeholders": {
diff --git a/apps/web/src/locales/id/messages.json b/apps/web/src/locales/id/messages.json
index b1d0554dc4d..d7d7e6699a3 100644
--- a/apps/web/src/locales/id/messages.json
+++ b/apps/web/src/locales/id/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Catatan Aman"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Salin nama"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Saya"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Brankas web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/it/messages.json b/apps/web/src/locales/it/messages.json
index 8549da6aadf..0fdcc4952c1 100644
--- a/apps/web/src/locales/it/messages.json
+++ b/apps/web/src/locales/it/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota sicura"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Chiave SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copia nome"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Io"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Cassaforte web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Hai negato un tentativo di accesso da un altro dispositivo. Se eri davvero tu, prova di nuovo ad accedere con il dispositivo."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "La richiesta di accesso è già scaduta."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Rivedi richiesta di accesso"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Il tuo periodo di prova scade tra $COUNT$ giorni.",
"placeholders": {
diff --git a/apps/web/src/locales/ja/messages.json b/apps/web/src/locales/ja/messages.json
index 2e24fd7c27f..b23e971a8ae 100644
--- a/apps/web/src/locales/ja/messages.json
+++ b/apps/web/src/locales/ja/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "セキュアメモ"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH 鍵"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "名前をコピー"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "自分"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "ウェブ保管庫"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "別のデバイスからのログイン試行を拒否しました。本当にあなたであった場合は、もう一度デバイスでログインしてみてください。"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "ログインリクエストの有効期限が切れています。"
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "ログインリクエストの内容を確認"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "無料体験はあと $COUNT$ 日で終了します。",
"placeholders": {
diff --git a/apps/web/src/locales/ka/messages.json b/apps/web/src/locales/ka/messages.json
index 9dba6b40e41..30cd7a8b70f 100644
--- a/apps/web/src/locales/ka/messages.json
+++ b/apps/web/src/locales/ka/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "უსაფრთხო ჩანაწერი"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "მე"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/km/messages.json b/apps/web/src/locales/km/messages.json
index 57b7a83469e..79d58617943 100644
--- a/apps/web/src/locales/km/messages.json
+++ b/apps/web/src/locales/km/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/kn/messages.json b/apps/web/src/locales/kn/messages.json
index f47c3f6de5a..787da7b4dc9 100644
--- a/apps/web/src/locales/kn/messages.json
+++ b/apps/web/src/locales/kn/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "ಸುರಕ್ಷಿತ ಟಿಪ್ಪಣಿ"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "ನನ್ನ"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "ವೆಬ್ ವಾಲ್ಟ್"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/ko/messages.json b/apps/web/src/locales/ko/messages.json
index 29d34b2d587..af7442ce153 100644
--- a/apps/web/src/locales/ko/messages.json
+++ b/apps/web/src/locales/ko/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "보안 메모"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "나"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "웹 보관함"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/lv/messages.json b/apps/web/src/locales/lv/messages.json
index 2df1a726859..770979c8a59 100644
--- a/apps/web/src/locales/lv/messages.json
+++ b/apps/web/src/locales/lv/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Droša piezīme"
},
+ "typeNote": {
+ "message": "Piezīme"
+ },
"typeSshKey": {
"message": "SSH atslēga"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Ievietot nosaukumu starpliktuvē"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Es"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Tīmekļa glabātava"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Tu noraidīji pieteikšanās mēģinājumu no citas ierīces. Ja tas tiešām biji Tu, mēģini pieteikties no ierīces vēlreiz!"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Pieteikšanās pieprasījuma derīgums jau ir beidzies."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Izskatīt pieteikšanās pieprasījumu"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Bezmaksas izmēģinājums beigsies pēc $COUNT$ dienām.",
"placeholders": {
diff --git a/apps/web/src/locales/ml/messages.json b/apps/web/src/locales/ml/messages.json
index 0f37ab5065d..51dc8b6cdf9 100644
--- a/apps/web/src/locales/ml/messages.json
+++ b/apps/web/src/locales/ml/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "സുരക്ഷിത കുറിപ്പ്"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web Vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/mr/messages.json b/apps/web/src/locales/mr/messages.json
index 19cfb6bebc3..86c8a31943d 100644
--- a/apps/web/src/locales/mr/messages.json
+++ b/apps/web/src/locales/mr/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/my/messages.json b/apps/web/src/locales/my/messages.json
index 57b7a83469e..79d58617943 100644
--- a/apps/web/src/locales/my/messages.json
+++ b/apps/web/src/locales/my/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/nb/messages.json b/apps/web/src/locales/nb/messages.json
index c076b67f21e..6018d3664f1 100644
--- a/apps/web/src/locales/nb/messages.json
+++ b/apps/web/src/locales/nb/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Sikkert notat"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH-nøkkel"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopiér navn"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Meg"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Netthvelv"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "Ledetekst"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/ne/messages.json b/apps/web/src/locales/ne/messages.json
index 80aed726a98..ba910035310 100644
--- a/apps/web/src/locales/ne/messages.json
+++ b/apps/web/src/locales/ne/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/nl/messages.json b/apps/web/src/locales/nl/messages.json
index 9ee85ea8021..45954a24a3f 100644
--- a/apps/web/src/locales/nl/messages.json
+++ b/apps/web/src/locales/nl/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Veilige notitie"
},
+ "typeNote": {
+ "message": "Notitie"
+ },
"typeSshKey": {
"message": "SSH-sleutel"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Naam kopiëren"
},
+ "cardNumber": {
+ "message": "kaartnummer"
+ },
+ "copyFieldCipherName": {
+ "message": "$FIELD$, $CIPHERNAME$ kopiëren",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ik"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webkluis"
},
+ "webApp": {
+ "message": "Web-app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Je hebt een inlogpoging vanaf een ander apparaat geweigerd. Als je dit toch echt zelf was, probeer dan opnieuw in te loggen met het apparaat."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Inloggen voor $EMAIL$ goedgekeurd op $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Je hebt een inlogpoging vanaf een ander apparaat geweigerd. Als je dit toch echt zelf was, probeer dan opnieuw in te loggen met het apparaat."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Inlogverzoek is al verlopen."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Inlogverzoek afhandelen"
},
+ "loginRequest": {
+ "message": "Log-inverzoek"
+ },
"freeTrialEndPromptCount": {
"message": "Je gratis proefperiode eindigt over $COUNT$ dagen.",
"placeholders": {
diff --git a/apps/web/src/locales/nn/messages.json b/apps/web/src/locales/nn/messages.json
index 9b74122c868..e04f1cb835f 100644
--- a/apps/web/src/locales/nn/messages.json
+++ b/apps/web/src/locales/nn/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Trygg notat"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Eg"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/or/messages.json b/apps/web/src/locales/or/messages.json
index 57b7a83469e..79d58617943 100644
--- a/apps/web/src/locales/or/messages.json
+++ b/apps/web/src/locales/or/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/pl/messages.json b/apps/web/src/locales/pl/messages.json
index 8665c3ddc32..749a073cdb1 100644
--- a/apps/web/src/locales/pl/messages.json
+++ b/apps/web/src/locales/pl/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Bezpieczna notatka"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Klucz SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Skopiuj nazwę"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ja"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Sejf internetowy"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Odrzucono próby logowania z innego urządzenia. Jeśli to naprawdę Ty, spróbuj ponownie zalogować się za pomocą urządzenia."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Prośba logowania wygasła."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Przejrzyj żądanie logowania"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Twój okres próbny kończy się za $COUNT$ dni.",
"placeholders": {
diff --git a/apps/web/src/locales/pt_BR/messages.json b/apps/web/src/locales/pt_BR/messages.json
index 4654fe2c176..09d4b078ee0 100644
--- a/apps/web/src/locales/pt_BR/messages.json
+++ b/apps/web/src/locales/pt_BR/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota Segura"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Chave SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copiar nome"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Eu"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Cofre Web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Você negou uma tentativa de acesso de outro dispositivo. Se isso realmente foi você, tente fazer login com o dispositivo novamente."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "O pedido de login já expirou."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Revisar solicitação de login"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Seu teste gratuito termina em $COUNT$ dias.",
"placeholders": {
diff --git a/apps/web/src/locales/pt_PT/messages.json b/apps/web/src/locales/pt_PT/messages.json
index e22731fda35..c7d772d8003 100644
--- a/apps/web/src/locales/pt_PT/messages.json
+++ b/apps/web/src/locales/pt_PT/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Nota segura"
},
+ "typeNote": {
+ "message": "Nota"
+ },
"typeSshKey": {
"message": "Chave SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copiar nome"
},
+ "cardNumber": {
+ "message": "número do cartão"
+ },
+ "copyFieldCipherName": {
+ "message": "Copiar $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Eu"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Cofre web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Recusou uma tentativa de início de sessão de outro dispositivo. Se foi realmente o caso, tente iniciar sessão com o dispositivo novamente."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Pedido de início de sessão aprovado para $EMAIL$ no $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Recusou uma tentativa de início de sessão de outro dispositivo. Se foi realmente o caso, tente iniciar sessão com o dispositivo novamente."
+ },
"loginRequestHasAlreadyExpired": {
"message": "O pedido de início de sessão já expirou."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Rever pedido de início de sessão"
},
+ "loginRequest": {
+ "message": "Pedido de início de sessão"
+ },
"freeTrialEndPromptCount": {
"message": "O seu período experimental gratuito termina dentro de $COUNT$ dias.",
"placeholders": {
@@ -8939,11 +8981,11 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Opções avançadas",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Aviso",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"maintainYourSubscription": {
diff --git a/apps/web/src/locales/ro/messages.json b/apps/web/src/locales/ro/messages.json
index 471b6af342b..3d3e48f0893 100644
--- a/apps/web/src/locales/ro/messages.json
+++ b/apps/web/src/locales/ro/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Notă securizată"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Cheie SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copiați numele"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Eu"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Seif web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/ru/messages.json b/apps/web/src/locales/ru/messages.json
index 944acc70862..4cf70f03865 100644
--- a/apps/web/src/locales/ru/messages.json
+++ b/apps/web/src/locales/ru/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Защищенная заметка"
},
+ "typeNote": {
+ "message": "Заметка"
+ },
"typeSshKey": {
"message": "Ключ SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Скопировать имя"
},
+ "cardNumber": {
+ "message": "номер карты"
+ },
+ "copyFieldCipherName": {
+ "message": "Копировать $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Мое"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Веб-хранилище"
},
+ "webApp": {
+ "message": "Веб-приложение"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Вы отклонили попытку авторизации с другого устройства. Если это действительно были вы, попробуйте авторизоваться с этого устройства еще раз."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Запрос входа для $EMAIL$ на $DEVICE$ одобрен",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Вы отклонили попытку авторизации с другого устройства. Если это были вы, попробуйте авторизоваться с этого устройства еще раз."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Запрос на вход истек."
},
@@ -3971,7 +4010,7 @@
"message": "Только что"
},
"requestedXMinutesAgo": {
- "message": "Запрошено $MINUTES$ мин назад",
+ "message": "Запрошено $MINUTES$ минут назад",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Просмотр запроса на вход"
},
+ "loginRequest": {
+ "message": "Запрос на вход"
+ },
"freeTrialEndPromptCount": {
"message": "Ваша бесплатная пробная версия заканчивается через $COUNT$ дней.",
"placeholders": {
diff --git a/apps/web/src/locales/si/messages.json b/apps/web/src/locales/si/messages.json
index 98bb0c5bfdc..03a569bc56f 100644
--- a/apps/web/src/locales/si/messages.json
+++ b/apps/web/src/locales/si/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/sk/messages.json b/apps/web/src/locales/sk/messages.json
index 3ffbd08d86e..ca1edfd11f7 100644
--- a/apps/web/src/locales/sk/messages.json
+++ b/apps/web/src/locales/sk/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Zabezpečená poznámka"
},
+ "typeNote": {
+ "message": "Poznámka"
+ },
"typeSshKey": {
"message": "Kľúč SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopírovať meno"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ja"
},
@@ -1785,7 +1805,7 @@
"message": "Ak budete pokračovať, budete odhlásený a budete sa musieť opäť prihlásiť. Aktívne sedenia na iných zariadeniach môžu byť aktívne ešte hodinu."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "Po zmene hesla sa musíte prihlásiť pomocou nového hesla. Aktívne relácie na iných zariadeniach budú do jednej hodiny odhlásené."
},
"emailChanged": {
"message": "E-mail bol zmenený"
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webový trezor"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli naozaj vy, skúste sa prihlásiť pomocou zariadenia znova."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Platnosť žiadosti o prihlásenie už vypršala."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Skontrolovať požiadavku o prihlásenie"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Vaše bezplatné skúšobné obdobie vyprší o $COUNT$ dní.",
"placeholders": {
@@ -6077,10 +6119,10 @@
"message": "Aktualizovať hlavné heslo"
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Zmeňte hlavné heslo, aby ste dokončili obnovenie účtu."
},
"updateMasterPasswordSubtitle": {
- "message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
+ "message": "Vaše hlavné heslo nespĺňa požiadavky tejto organizácie. Ak chcete pokračovať, zmeňte hlavné heslo."
},
"updateMasterPasswordWarning": {
"message": "Vaše hlavné heslo nedávno zmenil správca vo vašej organizácii. Ak chcete získať prístup k trezoru, musíte aktualizovať vaše hlavné heslo teraz. Pokračovaním sa odhlásite z aktuálnej relácie a budete sa musieť znova prihlásiť. Aktívne relácie na iných zariadeniach môžu zostať aktívne až jednu hodinu."
@@ -8463,10 +8505,10 @@
"message": "Žiadosť o schválenie správcom"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "Nepodarilo sa dokončiť prihlásenie"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Musíte sa prihlásiť na dôveryhodnom zariadení alebo požiadať správcu o priradenie hesla."
},
"trustedDeviceEncryption": {
"message": "Šifrovanie dôveryhodného zariadenia"
@@ -8923,27 +8965,27 @@
"description": "Label indicating the most common import formats"
},
"uriMatchDefaultStrategyHint": {
- "message": "URI match detection is how Bitwarden identifies autofill suggestions.",
+ "message": "Zisťovanie zhody URI je spôsob, akým Bitwarden identifikuje návrhy na automatické vypĺňanie.",
"description": "Explains to the user that URI match detection determines how Bitwarden suggests autofill options, and clarifies that this default strategy applies when no specific match detection is set for a login item."
},
"regExAdvancedOptionWarning": {
- "message": "\"Regular expression\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Regulárny výraz\" je pokročilá možnosť so zvýšeným rizikom odhalenia prihlasovacích údajov.",
"description": "Content for dialog which warns a user when selecting 'regular expression' matching strategy as a cipher match strategy"
},
"startsWithAdvancedOptionWarning": {
- "message": "\"Starts with\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Začína na\" je rozšírená možnosť so zvýšeným rizikom odhalenia prihlasovacích údajov.",
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "Viac informácií o zisťovaní zhody",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Rozšírené možnosti",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Upozornenie",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"maintainYourSubscription": {
@@ -10737,49 +10779,49 @@
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
"setupExtensionPageTitle": {
- "message": "Autofill your passwords securely with one click"
+ "message": "Jedným klikom automaticky a bezpečne vyplňte vaše heslá"
},
"setupExtensionPageDescription": {
- "message": "Get the Bitwarden browser extension and start autofilling today"
+ "message": "Získajte rozšírenie Bitwarden pre prehliadače a začnite automaticky vypĺňať heslá už dnes"
},
"getTheExtension": {
- "message": "Get the extension"
+ "message": "Získať rozšírenie"
},
"addItLater": {
- "message": "Add it later"
+ "message": "Pridať neskor"
},
"cannotAutofillPasswordsWithoutExtensionTitle": {
- "message": "You can't autofill passwords without the browser extension"
+ "message": "Bez rozšírenia Bitwarden pre prehliadače nie je možné automaticky vypĺňať heslá"
},
"cannotAutofillPasswordsWithoutExtensionDesc": {
- "message": "Are you sure you don't want to add the extension now?"
+ "message": "Naozaj teraz nechcete pridať rozšírenie?"
},
"skipToWebApp": {
- "message": "Skip to web app"
+ "message": "Preskočiť na webovú aplikáciu"
},
"bitwardenExtensionInstalled": {
- "message": "Bitwarden extension installed!"
+ "message": "Rozšírenie Bitwarden nainštalované!"
},
"openExtensionToAutofill": {
- "message": "Open the extension to log in and start autofilling."
+ "message": "Otvorte rozšírenie, prihláste sa a začnite automatické vypĺňanie."
},
"openBitwardenExtension": {
- "message": "Open Bitwarden extension"
+ "message": "Otvoriť rozšírenie Bitwarden"
},
"gettingStartedWithBitwardenPart1": {
- "message": "For tips on getting started with Bitwarden visit the",
+ "message": "Pre tipy ako začať s Bitwarden, navštívte",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart2": {
- "message": "Learning Center",
+ "message": "Vzdelávacie centrum",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart3": {
- "message": "Help Center",
+ "message": "Centrum pomoci",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"setupExtensionContentAlt": {
- "message": "With the Bitwarden browser extension you can easily create new logins, access your saved logins directly from your browser toolbar, and sign in to accounts quickly using Bitwarden autofill."
+ "message": "S rozšírením Bitwarden pre prehliadače ľahko vytvorite nove prihlasovacie údaje, pristúpite k vaším uloženým údajom priamo z prehliadača a rýchlo sa prihlásite pomocou Bitwarden automatického vypĺňania."
},
"restart": {
"message": "Reštartovať"
@@ -10808,46 +10850,46 @@
"description": "Error message shown when trying to add credit to a trialing organization without a billing address."
},
"billingAddress": {
- "message": "Billing address"
+ "message": "Fakturačná adresa"
},
"addBillingAddress": {
- "message": "Add billing address"
+ "message": "Pridať fakturačnú adresu"
},
"editBillingAddress": {
- "message": "Edit billing address"
+ "message": "Upraviť fakturačnú adresu"
},
"noBillingAddress": {
- "message": "No address on file."
+ "message": "Žiadna adresa v záznamoch."
},
"billingAddressUpdated": {
- "message": "Your billing address has been updated."
+ "message": "Vaša fakturačná adresa bola aktualizovaná."
},
"paymentDetails": {
- "message": "Payment details"
+ "message": "Platobné údaje"
},
"paymentMethodUpdated": {
- "message": "Your payment method has been updated."
+ "message": "Vaša platobná metóda bola aktualizovaná."
},
"bankAccountVerified": {
- "message": "Your bank account has been verified."
+ "message": "Váš bankový účet bol overený."
},
"availableCreditAppliedToInvoice": {
- "message": "Any available credit will be automatically applied towards invoices generated for this account."
+ "message": "Dostupný kredit sa automaticky použije na faktúry vytvorené pre tento účet."
},
"mustBePositiveNumber": {
- "message": "Must be a positive number"
+ "message": "Musí byť kladné číslo"
},
"cardSecurityCode": {
- "message": "Card security code"
+ "message": "Bezpečnostný kód karty"
},
"cardSecurityCodeDescription": {
- "message": "Card security code, also known as CVV or CVC, is typically a 3 digit number printed on the back of your credit card or 4 digit number printed on the front above your card number."
+ "message": "Bezpečnostný kód karty, známy aj ako CVV alebo CVC, je zvyčajne trojmiestne číslo vytlačené na zadnej strane kreditnej karty alebo štvormiestne číslo vytlačené na prednej strane nad číslom karty."
},
"verifyBankAccountWarning": {
- "message": "Payment with a bank account is only available to customers in the United States. You will be required to verify your bank account. We will make a micro-deposit within the next 1-2 business days. Enter the statement descriptor code from this deposit on the Payment Details page to verify the bank account. Failure to verify the bank account will result in a missed payment and your subscription being suspended."
+ "message": "Platba prostredníctvom bankového účtu je dostupná len pre zákazníkov v Spojených Štátoch. Budete musieť overiť svoj bankový účet. V priebehu nasledujúcich 1-2 pracovných dní vykonáme mikro vklad. Na overenie bankového účtu zadajte kód popisu výpisu z tohto vkladu na fakturačnej stránke. Neoverenie bankového účtu bude mať za následok neuskutočnenie platby a pozastavenie vášho predplatného."
},
"taxId": {
- "message": "Tax ID: $TAX_ID$",
+ "message": "Daňové ID: $TAX_ID$",
"placeholders": {
"tax_id": {
"content": "$1",
diff --git a/apps/web/src/locales/sl/messages.json b/apps/web/src/locales/sl/messages.json
index 432c94ded26..d210b85efb4 100644
--- a/apps/web/src/locales/sl/messages.json
+++ b/apps/web/src/locales/sl/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Zavarovan zapisek"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Jaz"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/sr_CS/messages.json b/apps/web/src/locales/sr_CS/messages.json
index 05ec916c8bb..eab8e098d81 100644
--- a/apps/web/src/locales/sr_CS/messages.json
+++ b/apps/web/src/locales/sr_CS/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Zaštićena beleška"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/sr_CY/messages.json b/apps/web/src/locales/sr_CY/messages.json
index fd566100c6d..2bdd42ff340 100644
--- a/apps/web/src/locales/sr_CY/messages.json
+++ b/apps/web/src/locales/sr_CY/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Сигурносна белешка"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH кључ"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Копирати име"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ја"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Интернет Сеф"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Одбили сте покушај пријаве са другог уређаја. Ако сте то заиста били ви, покушајте поново да се пријавите помоћу уређаја."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Захтев за пријаву је већ истекао."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Прегледајте захтев за пријаву"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Ваша проба се завршава за $COUNT$ дана.",
"placeholders": {
diff --git a/apps/web/src/locales/sv/messages.json b/apps/web/src/locales/sv/messages.json
index 8a8b5d4fdc7..822dde707b1 100644
--- a/apps/web/src/locales/sv/messages.json
+++ b/apps/web/src/locales/sv/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Säker anteckning"
},
+ "typeNote": {
+ "message": "Anteckning"
+ },
"typeSshKey": {
"message": "SSH-nyckel"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Kopiera namn"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Jag"
},
@@ -1061,7 +1081,7 @@
"message": "Logga in med huvudlösenord"
},
"readingPasskeyLoading": {
- "message": "Läser nyckel..."
+ "message": "Läser inloggningsnyckel..."
},
"readingPasskeyLoadingInfo": {
"message": "Håll det här fönstret öppet och följ anvisningarna från din webbläsare."
@@ -1085,7 +1105,7 @@
"message": "Tvåstegsverifiering stöds inte för nycklar. Uppdatera appen för att logga in."
},
"loginWithPasskeyInfo": {
- "message": "Använd en genererad nyckel som automatiskt loggar in dig utan lösenord. Din identitet verifieras med biometri, såsom ansiktsigenkänning eller fingeravtryck, eller en annan FIDO2-säkerhetsmetod."
+ "message": "Använd en genererad inloggningsnyckel som automatiskt loggar in dig utan lösenord. Din identitet verifieras med biometri, såsom ansiktsigenkänning eller fingeravtryck, eller en annan FIDO2-säkerhetsmetod."
},
"newPasskey": {
"message": "Ny nyckel"
@@ -1100,16 +1120,16 @@
"message": "Håll det här fönstret öppet och följ anvisningarna från din webbläsare."
},
"errorCreatingPasskey": {
- "message": "Fel vid skapande av nyckel"
+ "message": "Fel vid skapande av inloggningsnyckel"
},
"errorCreatingPasskeyInfo": {
- "message": "Det uppstod ett problem med att skapa nyckeln."
+ "message": "Det uppstod ett problem med att skapa din inloggningsnyckel."
},
"passkeySuccessfullyCreated": {
- "message": "Nyckeln har skapats!"
+ "message": "Inloggningsnyckeln har skapats!"
},
"customPasskeyNameInfo": {
- "message": "Namnge din nyckel för att hjälpa dig att identifiera den."
+ "message": "Namnge din inloggningsnyckel för att hjälpa dig att identifiera den."
},
"useForVaultEncryption": {
"message": "Använd för valvkryptering"
@@ -1118,7 +1138,7 @@
"message": "Logga in och lås upp utan ditt huvudlösenord på enheter som stöds. Följ anvisningarna från din webbläsare för att slutföra konfigurationen."
},
"useForVaultEncryptionErrorReadingPasskey": {
- "message": "Fel när nyckeln skulle läsas. Försök igen eller avmarkera det här alternativet."
+ "message": "Fel när inloggningsnyckeln skulle läsas. Försök igen eller avmarkera det här alternativet."
},
"encryptionNotSupported": {
"message": "Kryptering stöds inte"
@@ -1130,7 +1150,7 @@
"message": "Används för kryptering"
},
"loginWithPasskeyEnabled": {
- "message": "Inloggning med nyckel är aktiverad"
+ "message": "Inloggning med inloggningsnyckel är aktiverad"
},
"passkeySaved": {
"message": "$NAME$ sparad",
@@ -1142,16 +1162,16 @@
}
},
"passkeyRemoved": {
- "message": "Nyckel borttagen"
+ "message": "Inloggningsnyckel borttagen"
},
"removePasskey": {
- "message": "Ta bort nyckel"
+ "message": "Ta bort inloggningsnyckel"
},
"removePasskeyInfo": {
"message": "Om alla nycklar tas bort kommer du inte kunna logga in på nya enheter utan ditt huvudlösenord."
},
"passkeyLimitReachedInfo": {
- "message": "Gränsen för antal nycklar har uppnåtts. Ta bort en nyckel innan du lägger till en ny."
+ "message": "Gränsen för antal inloggningsnycklar har uppnåtts. Ta bort en inloggningsnyckel innan du lägger till en ny."
},
"tryAgain": {
"message": "Försök igen"
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Webbvalv"
},
+ "webApp": {
+ "message": "Webbapp"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Du nekade ett inloggningsförsök från en annan enhet. Om detta verkligen var du, försök att logga in med enheten igen."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Inloggningsbegäran godkänd för $EMAIL$ på $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Du nekade ett inloggningsförsök från en annan enhet. Om det var du, försök att logga in med enheten igen."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Inloggningsbegäran har redan löpt ut."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Granska begäran om inloggning"
},
+ "loginRequest": {
+ "message": "Inloggningsbegäran"
+ },
"freeTrialEndPromptCount": {
"message": "Din kostnadsfria testperiod avslutas om $COUNT$ dagar.",
"placeholders": {
@@ -5048,7 +5090,7 @@
"message": "SSO-identifierare"
},
"ssoIdentifierHintPartOne": {
- "message": "Ge detta ID till dina medlemmar så att de kan logga in med SSO. För att kringgå detta steg, konfigurera",
+ "message": "Ge detta ID till dina medlemmar så att de kan logga in med SSO. För att kringgå detta steg, konfigurera ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Provide this ID to your members to login with SSO. To bypass this step, set up Domain verification'"
},
"unlinkSso": {
@@ -6582,7 +6624,7 @@
"message": "Migrerad till Key Connector"
},
"paymentSponsored": {
- "message": "Ange en betalningsmetod som ska kopplas till organisationen. Oroa dig inte, vi kommer inte att debitera dig något om du inte väljer ytterligare funktioner eller om ditt sponsorskap upphör."
+ "message": "Ange en betalningsmetod som ska kopplas till organisationen. Oroa dig inte, vi kommer inte att debitera dig något om du inte väljer ytterligare funktioner eller om ditt sponsorskap upphör. "
},
"orgCreatedSponsorshipInvalid": {
"message": "Sponsringserbjudandet har löpt ut. Du kan ta bort den organisation du skapade för att undvika en kostnad i slutet av din 7-dagars provperiod. Annars kan du stänga den här prompten för att behålla organisationen och ta på dig faktureringsansvaret."
@@ -8855,10 +8897,10 @@
"message": "Nyckel"
},
"passkeyNotCopied": {
- "message": "Nyckeln kommer inte att kopieras"
+ "message": "Inloggningsnyckeln kommer inte att kopieras"
},
"passkeyNotCopiedAlert": {
- "message": "Nyckeln kommer inte att kopieras till det klonade föremålet. Vill du fortsätta klona det här objektet?"
+ "message": "Inloggningsnyckeln kommer inte att kopieras till det klonade föremålet. Vill du fortsätta klona det här objektet?"
},
"modifiedCollectionManagement": {
"message": "Modifierad inställning för samlingshantering $ID$.",
@@ -8970,7 +9012,7 @@
"message": "Tack för att du anmälde dig till Bitwarden Secrets Manager!"
},
"smFreeTrialConfirmationEmail": {
- "message": "Vi har skickat ett bekräftelsemail till din e-postadress på"
+ "message": "Vi har skickat ett bekräftelsemail till din e-postadress på "
},
"sorryToSeeYouGo": {
"message": "Ledsen att se dig gå! Hjälp till att förbättra Bitwarden genom att dela med dig av varför du avbokar.",
@@ -9254,7 +9296,7 @@
"message": "Ge grupper eller personer tillgång till detta maskinkonto."
},
"machineAccountProjectsDescription": {
- "message": "Tilldela projekt till detta maskinkonto."
+ "message": "Tilldela projekt till detta maskinkonto. "
},
"createMachineAccount": {
"message": "Skapa ett maskinkonto"
@@ -9398,7 +9440,7 @@
"message": "SCIM"
},
"scimIntegrationDescStart": {
- "message": "Konfigurera",
+ "message": "Konfigurera ",
"description": "This represents the beginning of a sentence, broken up to include links. The full sentence will be 'Configure SCIM (System for Cross-domain Identity Management) to automatically provision users and groups to Bitwarden using the implementation guide for your Identity Provider"
},
"scimIntegrationDescEnd": {
@@ -9807,10 +9849,10 @@
"message": "Ladda ner CSV"
},
"monthlySubscriptionUserSeatsMessage": {
- "message": "Justeringar av din prenumeration kommer att resultera i proportionella debiteringar av dina faktureringssummor på din nästa faktureringsperiod."
+ "message": "Justeringar av din prenumeration kommer att resultera i proportionella debiteringar av dina faktureringssummor på din nästa faktureringsperiod. "
},
"annualSubscriptionUserSeatsMessage": {
- "message": "Justeringar av din prenumeration kommer att resultera i proportionella avgifter på en månatlig faktureringscykel."
+ "message": "Justeringar av din prenumeration kommer att resultera i proportionella avgifter på en månatlig faktureringscykel. "
},
"billingHistoryDescription": {
"message": "Ladda ner en CSV-fil för att få fram klientuppgifter för varje faktureringsdatum. Proraterade avgifter ingår inte i CSV-filen och kan skilja sig från den länkade fakturan. De mest exakta faktureringsuppgifterna hittar du på dina månadsfakturor.",
@@ -9974,7 +10016,7 @@
"message": "Valfri lokal hosting"
},
"upgradeFreeOrganization": {
- "message": "Uppgradera din $NAME$-organisation",
+ "message": "Uppgradera din $NAME$-organisation ",
"placeholders": {
"name": {
"content": "$1",
@@ -10835,7 +10877,7 @@
"message": "Eventuell tillgänglig kredit kommer automatiskt att tillämpas på fakturor som genereras för detta konto."
},
"mustBePositiveNumber": {
- "message": "Måste vara ett positivt nummer."
+ "message": "Måste vara ett positivt tal"
},
"cardSecurityCode": {
"message": "Kortets säkerhetskod"
diff --git a/apps/web/src/locales/te/messages.json b/apps/web/src/locales/te/messages.json
index 57b7a83469e..79d58617943 100644
--- a/apps/web/src/locales/te/messages.json
+++ b/apps/web/src/locales/te/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Me"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/th/messages.json b/apps/web/src/locales/th/messages.json
index 9562698d1b3..7adae0d45f7 100644
--- a/apps/web/src/locales/th/messages.json
+++ b/apps/web/src/locales/th/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Secure note"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "ฉัน"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web vault"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Login request has already expired."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/tr/messages.json b/apps/web/src/locales/tr/messages.json
index 4a336df5a9f..34b549ba813 100644
--- a/apps/web/src/locales/tr/messages.json
+++ b/apps/web/src/locales/tr/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Güvenli not"
},
+ "typeNote": {
+ "message": "Not"
+ },
"typeSshKey": {
"message": "SSH key"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Adı kopyala"
},
+ "cardNumber": {
+ "message": "kart numarası"
+ },
+ "copyFieldCipherName": {
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Ben"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Web kasası"
},
+ "webApp": {
+ "message": "Web uygulaması"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Başka bir cihazdan giriş isteğini reddettiniz. Yanlışlıkla yaptıysanız aynı cihazdan yeniden giriş yapmayı deneyin."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "$DEVICE$ cihazında $EMAIL$ girişi onaylandı",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "Başka bir cihazdan giriş isteğini reddettiniz. Yanlışlıkla yaptıysanız aynı cihazdan yeniden giriş yapmayı deneyin."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Giriş isteğinin süresi doldu."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Giriş isteği"
+ },
"freeTrialEndPromptCount": {
"message": "Your free trial ends in $COUNT$ days.",
"placeholders": {
diff --git a/apps/web/src/locales/uk/messages.json b/apps/web/src/locales/uk/messages.json
index cc59b1b39c9..3fa6e0cceb1 100644
--- a/apps/web/src/locales/uk/messages.json
+++ b/apps/web/src/locales/uk/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Захищена нотатка"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Ключ SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Копіювати ім'я"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Я"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Вебсховище"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Ви відхилили спробу входу з іншого пристрою. Якщо це були дійсно ви, спробуйте увійти з пристроєм знову."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Термін дії запиту на вхід завершився."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Переглянути запит входу"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Ваш безплатний пробний період завершується через $COUNT$ днів.",
"placeholders": {
diff --git a/apps/web/src/locales/vi/messages.json b/apps/web/src/locales/vi/messages.json
index b1bc5557228..a9832ed445c 100644
--- a/apps/web/src/locales/vi/messages.json
+++ b/apps/web/src/locales/vi/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "Ghi chú"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "Khóa SSH"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Sao chép tên"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "Tôi"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "Kho web"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "Bạn đã từ chối một lần đăng nhập từ thiết bị khác. Nếu thực sự là bạn, hãy thử đăng nhập lại bằng thiết bị đó."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "Yêu cầu đăng nhập đã hết hạn."
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Xem xét yêu cầu đăng nhập"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "Thời gian dùng thử miễn phí của bạn sẽ kết thúc trong $COUNT$ ngày.",
"placeholders": {
diff --git a/apps/web/src/locales/zh_CN/messages.json b/apps/web/src/locales/zh_CN/messages.json
index 42157058174..5936ce9d218 100644
--- a/apps/web/src/locales/zh_CN/messages.json
+++ b/apps/web/src/locales/zh_CN/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "安全笔记"
},
+ "typeNote": {
+ "message": "笔记"
+ },
"typeSshKey": {
"message": "SSH 密钥"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "复制名称"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "我"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "网页密码库"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "您拒绝了一个来自其他设备的登录尝试。若确实是您本人,请尝试再次发起设备登录。"
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "登录请求已过期。"
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "审查登录请求"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "您的免费试用将于 $COUNT$ 天后结束。",
"placeholders": {
diff --git a/apps/web/src/locales/zh_TW/messages.json b/apps/web/src/locales/zh_TW/messages.json
index 3cdf7bd7944..4bba75e84ef 100644
--- a/apps/web/src/locales/zh_TW/messages.json
+++ b/apps/web/src/locales/zh_TW/messages.json
@@ -647,6 +647,9 @@
"typeSecureNote": {
"message": "安全筆記"
},
+ "typeNote": {
+ "message": "Note"
+ },
"typeSshKey": {
"message": "SSH 金鑰"
},
@@ -861,6 +864,23 @@
"copyName": {
"message": "Copy name"
},
+ "cardNumber": {
+ "message": "card number"
+ },
+ "copyFieldCipherName": {
+ "message": "Copy $FIELD$, $CIPHERNAME$",
+ "description": "Title for a button that copies a field value to the clipboard.",
+ "placeholders": {
+ "field": {
+ "content": "$1",
+ "example": "Username"
+ },
+ "ciphername": {
+ "content": "$2",
+ "example": "Login Item"
+ }
+ }
+ },
"me": {
"message": "我"
},
@@ -3482,6 +3502,9 @@
"webVault": {
"message": "網頁版密碼庫"
},
+ "webApp": {
+ "message": "Web app"
+ },
"cli": {
"message": "CLI 命令列介面"
},
@@ -3964,6 +3987,22 @@
"youDeniedALogInAttemptFromAnotherDevice": {
"message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
},
+ "loginRequestApprovedForEmailOnDevice": {
+ "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "placeholders": {
+ "email": {
+ "content": "$1",
+ "example": "name@example.com"
+ },
+ "device": {
+ "content": "$2",
+ "example": "Web app - Chrome"
+ }
+ }
+ },
+ "youDeniedLoginAttemptFromAnotherDevice": {
+ "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ },
"loginRequestHasAlreadyExpired": {
"message": "登入要求已逾期。"
},
@@ -4108,6 +4147,9 @@
"reviewLoginRequest": {
"message": "Review login request"
},
+ "loginRequest": {
+ "message": "Login request"
+ },
"freeTrialEndPromptCount": {
"message": "您的免費試用將於 $COUNT$ 天後結束。",
"placeholders": {
From 2cb2dc177efbb7be458f9a67b2d71a20b7483824 Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 21:40:00 +0200
Subject: [PATCH 20/54] Autosync the updated translations (#15690)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/web/src/locales/az/messages.json | 14 ++---
apps/web/src/locales/bg/messages.json | 12 ++---
apps/web/src/locales/cs/messages.json | 4 +-
apps/web/src/locales/de/messages.json | 68 ++++++++++++------------
apps/web/src/locales/hu/messages.json | 12 ++---
apps/web/src/locales/lv/messages.json | 12 ++---
apps/web/src/locales/pl/messages.json | 14 ++---
apps/web/src/locales/pt_PT/messages.json | 8 +--
apps/web/src/locales/sk/messages.json | 12 ++---
apps/web/src/locales/sv/messages.json | 4 +-
apps/web/src/locales/zh_CN/messages.json | 4 +-
11 files changed, 82 insertions(+), 82 deletions(-)
diff --git a/apps/web/src/locales/az/messages.json b/apps/web/src/locales/az/messages.json
index 4bcb8431331..2c51163b62c 100644
--- a/apps/web/src/locales/az/messages.json
+++ b/apps/web/src/locales/az/messages.json
@@ -648,7 +648,7 @@
"message": "Güvənli qeyd"
},
"typeNote": {
- "message": "Note"
+ "message": "Not"
},
"typeSshKey": {
"message": "SSH açarı"
@@ -865,10 +865,10 @@
"message": "Adı kopyala"
},
"cardNumber": {
- "message": "card number"
+ "message": "kart nömrəsi"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Veb seyf"
},
"webApp": {
- "message": "Web app"
+ "message": "Veb tətbiq"
},
"cli": {
"message": "CLI"
@@ -3988,7 +3988,7 @@
"message": "Başqa bir cihazdan giriş cəhdinə rədd cavabı verdiniz. Bu həqiqətən siz idinizsə, cihazla yenidən giriş etməyə çalışın."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "$DEVICE$ cihazında $EMAIL$ üçün giriş tələbi təsdiqləndi",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Başqa bir cihazdan giriş cəhdinə rədd cavabı verdiniz. Bu siz idinizsə, cihazla yenidən giriş etməyə çalışın."
},
"loginRequestHasAlreadyExpired": {
"message": "Giriş tələbinin müddəti artıq bitib."
@@ -4148,7 +4148,7 @@
"message": "Giriş tələbini incələ"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Giriş tələbi"
},
"freeTrialEndPromptCount": {
"message": "Ödənişsiz sınaq müddətiniz $COUNT$ günə bitir.",
diff --git a/apps/web/src/locales/bg/messages.json b/apps/web/src/locales/bg/messages.json
index 4bcfd56e95c..315ce4ee30b 100644
--- a/apps/web/src/locales/bg/messages.json
+++ b/apps/web/src/locales/bg/messages.json
@@ -865,10 +865,10 @@
"message": "Копиране на името"
},
"cardNumber": {
- "message": "card number"
+ "message": "номер на карта"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Копиране на $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Трезор по уеб"
},
"webApp": {
- "message": "Web app"
+ "message": "Приложение по уеб"
},
"cli": {
"message": "ИКР"
@@ -3988,7 +3988,7 @@
"message": "Вие отказахте опит за вписване от друго устройство. Ако това наистина сте били Вие, опитайте да се впишете от устройството отново."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Заявката за вписване за $EMAIL$ на $DEVICE$ е одобрена",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Вие отказахте опит за вписване от друго устройство. Ако това сте били Вие, опитайте да се впишете от устройството отново."
},
"loginRequestHasAlreadyExpired": {
"message": "Заявката за вписване вече е изтекла."
@@ -4148,7 +4148,7 @@
"message": "Преглед на заявката за вписване"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Заявка за вписване"
},
"freeTrialEndPromptCount": {
"message": "Вашият безплатен пробен период приключва след $COUNT$ дни.",
diff --git a/apps/web/src/locales/cs/messages.json b/apps/web/src/locales/cs/messages.json
index 6ae11489480..8569b953fb7 100644
--- a/apps/web/src/locales/cs/messages.json
+++ b/apps/web/src/locales/cs/messages.json
@@ -865,10 +865,10 @@
"message": "Kopírovat název"
},
"cardNumber": {
- "message": "card number"
+ "message": "číslo karty"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopírovat $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/web/src/locales/de/messages.json b/apps/web/src/locales/de/messages.json
index 3b0d8cccf97..6c94a17f36c 100644
--- a/apps/web/src/locales/de/messages.json
+++ b/apps/web/src/locales/de/messages.json
@@ -868,7 +868,7 @@
"message": "Kartennummer"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ kopieren",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1805,7 +1805,7 @@
"message": "Wenn du fortfährst, wirst du aus deiner aktuellen Sitzung ausgeloggt. Aktive Sitzungen auf anderen Geräten können bis zu einer Stunde weiterhin aktiv bleiben."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "Nachdem du dein Passwort geändert hast, musst du dich mit deinem neuen Passwort anmelden. Aktive Sitzungen auf anderen Geräten werden innerhalb einer Stunde abgemeldet."
},
"emailChanged": {
"message": "E-Mail-Adresse gespeichert"
@@ -3988,7 +3988,7 @@
"message": "Du hast einen Anmeldeversuch von einem anderen Gerät abgelehnt. Wenn du das wirklich warst, versuche dich erneut mit dem Gerät anzumelden."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Anmeldeanfrage für $EMAIL$ auf $DEVICE$ genehmigt",
"placeholders": {
"email": {
"content": "$1",
@@ -6110,7 +6110,7 @@
"message": "Hinzufügen"
},
"masterPasswordSuccessfullySet": {
- "message": "Master-Passwort erfolgreich eingerichtet"
+ "message": "Master-Passwort erfolgreich festgelegt"
},
"updatedMasterPassword": {
"message": "Master-Passwort gespeichert"
@@ -6122,7 +6122,7 @@
"message": "Ändere dein Master-Passwort, um die Kontowiederherstellung abzuschließen."
},
"updateMasterPasswordSubtitle": {
- "message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
+ "message": "Dein Master-Passwort entspricht nicht den Anforderungen dieser Organisation. Ändere dein Master-Passwort, um fortzufahren."
},
"updateMasterPasswordWarning": {
"message": "Dein Master-Passwort wurde kürzlich von einem Administrator deiner Organisation geändert. Um auf den Tresor zuzugreifen, musst du dein Master-Passwort jetzt aktualisieren. Wenn Du fortfährst, wirst du aus der aktuellen Sitzung abgemeldet und eine erneute Anmeldung ist erforderlich. Aktive Sitzungen auf anderen Geräten können bis zu einer Stunde weiterhin aktiv bleiben."
@@ -8288,7 +8288,7 @@
"message": "Beim Lesen der Importdatei ist ein Fehler aufgetreten"
},
"accessedSecretWithId": {
- "message": "Accessed a secret with identifier: $SECRET_ID$",
+ "message": "Zugriff auf Geheimnis mit der Kennung: $SECRET_ID$",
"placeholders": {
"secret_id": {
"content": "$1",
@@ -8306,7 +8306,7 @@
}
},
"editedSecretWithId": {
- "message": "Edited a secret with identifier: $SECRET_ID$",
+ "message": "Ein Geheimnis bearbeitet mit der Kennung: $SECRET_ID$",
"placeholders": {
"secret_id": {
"content": "$1",
@@ -8315,7 +8315,7 @@
}
},
"deletedSecretWithId": {
- "message": "Deleted a secret with identifier: $SECRET_ID$",
+ "message": "Ein Geheimnis gelöscht mit der Kennung: $SECRET_ID$",
"placeholders": {
"secret_id": {
"content": "$1",
@@ -8324,7 +8324,7 @@
}
},
"createdSecretWithId": {
- "message": "Created a new secret with identifier: $SECRET_ID$",
+ "message": "Ein neues Geheimnis erstellt mit Kennung: $SECRET_ID$",
"placeholders": {
"secret_id": {
"content": "$1",
@@ -8508,7 +8508,7 @@
"message": "Anmeldung kann nicht abgeschlossen werden"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Du musst dich auf einem vertrauenswürdigen Gerät anmelden oder deinem Administrator bitten, dir ein Passwort zuzuweisen."
},
"trustedDeviceEncryption": {
"message": "Vertrauenswürdige Geräteverschlüsselung"
@@ -8965,15 +8965,15 @@
"description": "Label indicating the most common import formats"
},
"uriMatchDefaultStrategyHint": {
- "message": "URI match detection is how Bitwarden identifies autofill suggestions.",
+ "message": "Die URI-Übereinstimmungserkennung ist die Methode, mit der Bitwarden Auto-Ausfüllen-Vorschläge erkennt.",
"description": "Explains to the user that URI match detection determines how Bitwarden suggests autofill options, and clarifies that this default strategy applies when no specific match detection is set for a login item."
},
"regExAdvancedOptionWarning": {
- "message": "\"Regular expression\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Regulärer Ausdruck\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'regular expression' matching strategy as a cipher match strategy"
},
"startsWithAdvancedOptionWarning": {
- "message": "\"Starts with\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Beginnt mit\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
@@ -8981,7 +8981,7 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Erweiterte Optionen",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
@@ -10779,37 +10779,37 @@
"example": "Store your keys and connect with the SSH agent for fast, encrypted authentication. Learn more about SSH agent"
},
"setupExtensionPageTitle": {
- "message": "Autofill your passwords securely with one click"
+ "message": "Fülle deine Passwörter sicher mit einem Klick automatisch aus"
},
"setupExtensionPageDescription": {
- "message": "Get the Bitwarden browser extension and start autofilling today"
+ "message": "Lade dir die Bitwarden Browser-Erweiterung herunter und nutze Auto-Ausfüllen noch heute"
},
"getTheExtension": {
- "message": "Get the extension"
+ "message": "Erweiterung herunterladen"
},
"addItLater": {
- "message": "Add it later"
+ "message": "Später hinzufügen"
},
"cannotAutofillPasswordsWithoutExtensionTitle": {
- "message": "You can't autofill passwords without the browser extension"
+ "message": "Du kannst Passwörter nicht ohne die Browser-Erweiterung automatisch ausfüllen"
},
"cannotAutofillPasswordsWithoutExtensionDesc": {
- "message": "Are you sure you don't want to add the extension now?"
+ "message": "Bist du sicher, dass du die Erweiterung jetzt nicht hinzufügen möchtest?"
},
"skipToWebApp": {
- "message": "Skip to web app"
+ "message": "Zur Web-App springen"
},
"bitwardenExtensionInstalled": {
"message": "Bitwarden-Erweiterung installiert!"
},
"openExtensionToAutofill": {
- "message": "Open the extension to log in and start autofilling."
+ "message": "Öffne die Erweiterung, um dich anzumelden und Auto-Ausfüllen zu nutzen."
},
"openBitwardenExtension": {
"message": "Bitwarden-Erweiterung öffnen"
},
"gettingStartedWithBitwardenPart1": {
- "message": "For tips on getting started with Bitwarden visit the",
+ "message": "Tipps für die ersten Schritte mit Bitwarden findest du unter",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart2": {
@@ -10817,11 +10817,11 @@
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"gettingStartedWithBitwardenPart3": {
- "message": "Help Center",
+ "message": "Hilfezentrum",
"description": "This will be displayed as part of a larger sentence. The whole sentence reads: 'For tips on getting started with Bitwarden visit the Learning Center and Help Center'"
},
"setupExtensionContentAlt": {
- "message": "With the Bitwarden browser extension you can easily create new logins, access your saved logins directly from your browser toolbar, and sign in to accounts quickly using Bitwarden autofill."
+ "message": "Mit der Bitwarden Browser-Erweiterung kannst du ganz einfach neue Zugangsdaten erstellen, auf deine gespeicherten Zugangsdaten direkt von deiner Browser-Symbolleiste aus zugreifen und dich schnell mit Bitwarden Auto-Ausfüllen bei Konten anmelden."
},
"restart": {
"message": "Neustarten"
@@ -10859,37 +10859,37 @@
"message": "Rechnungsadresse bearbeiten"
},
"noBillingAddress": {
- "message": "No address on file."
+ "message": "Keine Adresse angegeben."
},
"billingAddressUpdated": {
"message": "Deine Rechnungsadresse wurde aktualisiert."
},
"paymentDetails": {
- "message": "Payment details"
+ "message": "Zahlungsdaten"
},
"paymentMethodUpdated": {
- "message": "Your payment method has been updated."
+ "message": "Deine Zahlungsart wurde aktualisiert."
},
"bankAccountVerified": {
"message": "Dein Bankkonto wurde verifiziert."
},
"availableCreditAppliedToInvoice": {
- "message": "Any available credit will be automatically applied towards invoices generated for this account."
+ "message": "Jedes verfügbare Guthaben wird automatisch auf die für dieses Konto erstellten Rechnungen angerechnet."
},
"mustBePositiveNumber": {
- "message": "Must be a positive number"
+ "message": "Muss eine positive Zahl sein"
},
"cardSecurityCode": {
- "message": "Card security code"
+ "message": "Karten-Sicherheitscode"
},
"cardSecurityCodeDescription": {
- "message": "Card security code, also known as CVV or CVC, is typically a 3 digit number printed on the back of your credit card or 4 digit number printed on the front above your card number."
+ "message": "Der Karten-Sicherheitscode, auch CVV oder CVC genannt, ist typischerweise eine dreistellige Zahl, die auf der Rückseite oder als vierstellige Zahl auf der Vorderseite über deiner Kartennummer gedruckt ist."
},
"verifyBankAccountWarning": {
- "message": "Payment with a bank account is only available to customers in the United States. You will be required to verify your bank account. We will make a micro-deposit within the next 1-2 business days. Enter the statement descriptor code from this deposit on the Payment Details page to verify the bank account. Failure to verify the bank account will result in a missed payment and your subscription being suspended."
+ "message": "Die Zahlung mit einem Bankkonto ist nur für Kunden in den Vereinigten Staaten möglich. Du musst dein Bankkonto verifizieren. Wir werden innerhalb der nächsten 1-2 Werktage eine Mikro-Einzahlung vornehmen. Gib den Code aus der Auszugsbeschreibung dieser Einzahlung ein, um das Bankkonto zu verifizieren. Schlägt die Verifizierung des Bankkontos fehl, wird dies als versäumte Zahlung gewertet und dein Abonnement gesperrt."
},
"taxId": {
- "message": "Tax ID: $TAX_ID$",
+ "message": "Steuernummer: $TAX_ID$",
"placeholders": {
"tax_id": {
"content": "$1",
diff --git a/apps/web/src/locales/hu/messages.json b/apps/web/src/locales/hu/messages.json
index 218cd5e0a2d..a38ed7f0c03 100644
--- a/apps/web/src/locales/hu/messages.json
+++ b/apps/web/src/locales/hu/messages.json
@@ -865,10 +865,10 @@
"message": "Név másolása"
},
"cardNumber": {
- "message": "card number"
+ "message": "kártya szám"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ másolása",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Webes széf"
},
"webApp": {
- "message": "Web app"
+ "message": "Webalkalmazás"
},
"cli": {
"message": "CLI"
@@ -3988,7 +3988,7 @@
"message": "Megtagadásra került egy bejelentkezési kísérletet egy másik eszközről. Ha valóban mi voltunk, próbáljunk meg újra bejelentkezni az eszközzel."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "A bejelentkezési kérelem jóváhagyásra került: $EMAIL$ - $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Megtagadásra került egy bejelentkezési kísérletet egy másik eszközről. Ha valóban mi voltunk, próbáljunk meg újra bejelentkezni az eszközzel."
},
"loginRequestHasAlreadyExpired": {
"message": "A bejelentkezési kérés már lejárt."
@@ -4148,7 +4148,7 @@
"message": "Bejelentkezési kérés áttekintése"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Bejelentkezés kérés"
},
"freeTrialEndPromptCount": {
"message": "Az ingyenes próbaidőszak $COUNT$ nap múlva ér véget.",
diff --git a/apps/web/src/locales/lv/messages.json b/apps/web/src/locales/lv/messages.json
index 770979c8a59..ff80c724835 100644
--- a/apps/web/src/locales/lv/messages.json
+++ b/apps/web/src/locales/lv/messages.json
@@ -865,10 +865,10 @@
"message": "Ievietot nosaukumu starpliktuvē"
},
"cardNumber": {
- "message": "card number"
+ "message": "kartes numurs"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Ievietot starpliktuvē $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Tīmekļa glabātava"
},
"webApp": {
- "message": "Web app"
+ "message": "Tīmekļa lietotne"
},
"cli": {
"message": "CLI"
@@ -3988,7 +3988,7 @@
"message": "Tu noraidīji pieteikšanās mēģinājumu no citas ierīces. Ja tas tiešām biji Tu, mēģini pieteikties no ierīces vēlreiz!"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "$EMAIL$ pieteikšanās pieprasījums apstiprināts $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Tu noraidīji pieteikšanās mēģinājumu no citas ierīces. Ja tas biji Tu, mēģini pieteikties no ierīces vēlreiz!"
},
"loginRequestHasAlreadyExpired": {
"message": "Pieteikšanās pieprasījuma derīgums jau ir beidzies."
@@ -4148,7 +4148,7 @@
"message": "Izskatīt pieteikšanās pieprasījumu"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Pieteikšanās pieprasījums"
},
"freeTrialEndPromptCount": {
"message": "Bezmaksas izmēģinājums beigsies pēc $COUNT$ dienām.",
diff --git a/apps/web/src/locales/pl/messages.json b/apps/web/src/locales/pl/messages.json
index 749a073cdb1..e2d73ad47b3 100644
--- a/apps/web/src/locales/pl/messages.json
+++ b/apps/web/src/locales/pl/messages.json
@@ -648,7 +648,7 @@
"message": "Bezpieczna notatka"
},
"typeNote": {
- "message": "Note"
+ "message": "Notatka"
},
"typeSshKey": {
"message": "Klucz SSH"
@@ -865,10 +865,10 @@
"message": "Skopiuj nazwę"
},
"cardNumber": {
- "message": "card number"
+ "message": "numer karty"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopiuj $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Sejf internetowy"
},
"webApp": {
- "message": "Web app"
+ "message": "Aplikacja internetowa"
},
"cli": {
"message": "CLI"
@@ -3988,7 +3988,7 @@
"message": "Odrzucono próby logowania z innego urządzenia. Jeśli to naprawdę Ty, spróbuj ponownie zalogować się za pomocą urządzenia."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Logowanie potwierdzone dla $EMAIL$ na $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Odrzucono próby logowania z innego urządzenia. Jeśli to naprawdę Ty, spróbuj ponownie zalogować się za pomocą urządzenia."
},
"loginRequestHasAlreadyExpired": {
"message": "Prośba logowania wygasła."
@@ -4148,7 +4148,7 @@
"message": "Przejrzyj żądanie logowania"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Żądanie logowania"
},
"freeTrialEndPromptCount": {
"message": "Twój okres próbny kończy się za $COUNT$ dni.",
diff --git a/apps/web/src/locales/pt_PT/messages.json b/apps/web/src/locales/pt_PT/messages.json
index c7d772d8003..cda5cec824d 100644
--- a/apps/web/src/locales/pt_PT/messages.json
+++ b/apps/web/src/locales/pt_PT/messages.json
@@ -6702,7 +6702,7 @@
"message": "URL do servidor da API"
},
"webVaultUrl": {
- "message": "URL do servidor do cofre Web"
+ "message": "URL do servidor do cofre web"
},
"identityUrl": {
"message": "URL do servidor de identidade"
@@ -8919,7 +8919,7 @@
"message": "Instalar a extensão do navegador"
},
"installBrowserExtensionDetails": {
- "message": "Utilize a extensão para guardar rapidamente as credenciais e preencher automaticamente formulários sem abrir a aplicação Web."
+ "message": "Utilize a extensão para guardar rapidamente as credenciais e preencher automaticamente formulários sem abrir a aplicação web."
},
"projectAccessUpdated": {
"message": "Acesso ao projeto atualizado"
@@ -9050,7 +9050,7 @@
"message": "Gratuito durante 1 ano"
},
"newWebApp": {
- "message": "Bem-vindo à nova e melhorada aplicação Web. Saiba mais sobre o que mudou."
+ "message": "Bem-vindo à nova e melhorada aplicação web. Saiba mais sobre o que mudou."
},
"releaseBlog": {
"message": "Ler o blogue de lançamento"
@@ -10797,7 +10797,7 @@
"message": "Tem a certeza de que não pretende adicionar a extensão agora?"
},
"skipToWebApp": {
- "message": "Saltar para a Web app"
+ "message": "Saltar para a aplicação web"
},
"bitwardenExtensionInstalled": {
"message": "Extensão Bitwarden instalada!"
diff --git a/apps/web/src/locales/sk/messages.json b/apps/web/src/locales/sk/messages.json
index ca1edfd11f7..5543fc20820 100644
--- a/apps/web/src/locales/sk/messages.json
+++ b/apps/web/src/locales/sk/messages.json
@@ -865,10 +865,10 @@
"message": "Kopírovať meno"
},
"cardNumber": {
- "message": "card number"
+ "message": "číslo karty"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopírovať $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -3503,7 +3503,7 @@
"message": "Webový trezor"
},
"webApp": {
- "message": "Web app"
+ "message": "Webová aplikácia"
},
"cli": {
"message": "CLI"
@@ -3988,7 +3988,7 @@
"message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli naozaj vy, skúste sa prihlásiť pomocou zariadenia znova."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Potvrdené prihlásenie pre $EMAIL$ na $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -4001,7 +4001,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli vy, skúste sa prihlásiť pomocou zariadenia znova."
},
"loginRequestHasAlreadyExpired": {
"message": "Platnosť žiadosti o prihlásenie už vypršala."
@@ -4148,7 +4148,7 @@
"message": "Skontrolovať požiadavku o prihlásenie"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Žiadosť o prihlásenie"
},
"freeTrialEndPromptCount": {
"message": "Vaše bezplatné skúšobné obdobie vyprší o $COUNT$ dní.",
diff --git a/apps/web/src/locales/sv/messages.json b/apps/web/src/locales/sv/messages.json
index 822dde707b1..6fea9ba15d3 100644
--- a/apps/web/src/locales/sv/messages.json
+++ b/apps/web/src/locales/sv/messages.json
@@ -865,10 +865,10 @@
"message": "Kopiera namn"
},
"cardNumber": {
- "message": "card number"
+ "message": "kortnummer"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopiera $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/web/src/locales/zh_CN/messages.json b/apps/web/src/locales/zh_CN/messages.json
index 5936ce9d218..5bc6c472cd1 100644
--- a/apps/web/src/locales/zh_CN/messages.json
+++ b/apps/web/src/locales/zh_CN/messages.json
@@ -865,10 +865,10 @@
"message": "复制名称"
},
"cardNumber": {
- "message": "card number"
+ "message": "卡号"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "复制 $FIELD$、$CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
From 36e59c2e3b45725374b4e5071eed3f28dcfcaa46 Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 21:43:48 +0200
Subject: [PATCH 21/54] Autosync the updated translations (#15692)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/desktop/src/locales/az/messages.json | 8 +-
apps/desktop/src/locales/bg/messages.json | 4 +-
apps/desktop/src/locales/ca/messages.json | 132 +++++++++----------
apps/desktop/src/locales/cs/messages.json | 4 +-
apps/desktop/src/locales/de/messages.json | 20 +--
apps/desktop/src/locales/hu/messages.json | 4 +-
apps/desktop/src/locales/ja/messages.json | 18 +--
apps/desktop/src/locales/lv/messages.json | 4 +-
apps/desktop/src/locales/pt_PT/messages.json | 4 +-
apps/desktop/src/locales/sv/messages.json | 6 +-
apps/desktop/src/locales/vi/messages.json | 4 +-
apps/desktop/src/locales/zh_CN/messages.json | 4 +-
apps/desktop/src/locales/zh_TW/messages.json | 78 +++++------
13 files changed, 145 insertions(+), 145 deletions(-)
diff --git a/apps/desktop/src/locales/az/messages.json b/apps/desktop/src/locales/az/messages.json
index e5fee904d92..b04f3204a15 100644
--- a/apps/desktop/src/locales/az/messages.json
+++ b/apps/desktop/src/locales/az/messages.json
@@ -573,7 +573,7 @@
"message": "Doğrulama kodunu kopyala (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "kart nömrəsi"
},
"premiumMembership": {
"message": "Premium üzvlük"
@@ -4016,9 +4016,9 @@
}
},
"enableAutotype": {
- "message": "Enable autotype shortcut"
+ "message": "Avto-yazma qısayolunu fəallaşdır"
},
"enableAutotypeDescription": {
- "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
+ "message": "Bitwarden, giriş yerlərini doğrulamır, qısayolu istifadə etməzdən əvvəl doğru pəncərədə və xanada olduğunuza əmin olun."
}
}
diff --git a/apps/desktop/src/locales/bg/messages.json b/apps/desktop/src/locales/bg/messages.json
index cf74c69be46..92ee97ba16a 100644
--- a/apps/desktop/src/locales/bg/messages.json
+++ b/apps/desktop/src/locales/bg/messages.json
@@ -573,7 +573,7 @@
"message": "Код за потвърждаване (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Копиране на $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "номер на карта"
},
"premiumMembership": {
"message": "Платен абонамент"
diff --git a/apps/desktop/src/locales/ca/messages.json b/apps/desktop/src/locales/ca/messages.json
index ed49a360aa5..6534c0eef02 100644
--- a/apps/desktop/src/locales/ca/messages.json
+++ b/apps/desktop/src/locales/ca/messages.json
@@ -2214,7 +2214,7 @@
"message": "Identification"
},
"contactInfo": {
- "message": "Contact information"
+ "message": "Informació de contacte"
},
"allSends": {
"message": "Tots els Send",
@@ -2380,10 +2380,10 @@
"message": "Autenticar WebAuthn"
},
"readSecurityKey": {
- "message": "Read security key"
+ "message": "Llegeix clau de seguretat"
},
"awaitingSecurityKeyInteraction": {
- "message": "Awaiting security key interaction..."
+ "message": "S'està esperant la interacció amb la clau de seguretat..."
},
"hideEmail": {
"message": "Amagueu la meua adreça de correu electrònic als destinataris."
@@ -2425,16 +2425,16 @@
"message": "La vostra contrasenya mestra no compleix una o més de les polítiques de l'organització. Per accedir a la caixa forta, heu d'actualitzar-la ara. Si continueu, es tancarà la sessió actual i us demanarà que torneu a iniciar-la. Les sessions en altres dispositius poden continuar romanent actives fins a una hora."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "En canviar la teva contrasenya, cal iniciar la sessió amb la nova contrasenya. Les sessions actives en altres dispositius es tancaran en una hora."
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Canvia la contrasenya mestra per completar el recobrament del compte."
},
"updateMasterPasswordSubtitle": {
- "message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
+ "message": "La contrasenya mestra no s'ajusta als requisits de l'organització. Canvia't la contrasenya mestra per continuar."
},
"tdeDisabledMasterPasswordRequired": {
- "message": "Your organization has disabled trusted device encryption. Please set a master password to access your vault."
+ "message": "La teva organització ha desactivat l'encriptació de dispositius fiables. Fixa una contrasenya mestra per accedir a la teva caixa forta."
},
"tryAgain": {
"message": "Torneu-ho a provar"
@@ -2479,7 +2479,7 @@
"message": "Minuts"
},
"vaultTimeoutPolicyInEffect1": {
- "message": "$HOURS$ hour(s) and $MINUTES$ minute(s) maximum.",
+ "message": "$HOURS$ hora(es) i $MINUTES$ minut(s) màxim.",
"placeholders": {
"hours": {
"content": "$1",
@@ -2545,13 +2545,13 @@
"message": "S'ha suprimit la contrasenya mestra."
},
"removeMasterPasswordForOrganizationUserKeyConnector": {
- "message": "A master password is no longer required for members of the following organization. Please confirm the domain below with your organization administrator."
+ "message": "Ja no cal contrasenya mestra per als membres de la següent organització. Confirma'n el domini a sota amb l'administrador de la teva organització."
},
"organizationName": {
"message": "Nom de l'organització"
},
"keyConnectorDomain": {
- "message": "Key Connector domain"
+ "message": "Domini del Connector de claus"
},
"leaveOrganization": {
"message": "Abandona l'organització"
@@ -2614,7 +2614,7 @@
}
},
"exportingIndividualVaultWithAttachmentsDescription": {
- "message": "Only the individual vault items including attachments associated with $EMAIL$ will be exported. Organization vault items will not be included",
+ "message": "Només els objectes individuals de la caixa forta, inclosos adjunts associats amb $EMAIL$, seran exportats. Els objectes de la caixa forta de l'organització no hi seran inclosos",
"placeholders": {
"email": {
"content": "$1",
@@ -2740,7 +2740,7 @@
"message": "Utilitzeu aquesta contrasenya"
},
"useThisPassphrase": {
- "message": "Use this passphrase"
+ "message": "Empra aquesta frase de pas"
},
"useThisUsername": {
"message": "Utilitzeu aquest nom d'usuari"
@@ -2777,7 +2777,7 @@
"description": "Labels the domain name email forwarder service option"
},
"forwarderDomainNameHint": {
- "message": "Choose a domain that is supported by the selected service",
+ "message": "Tria un domini admès pel servei seleccionat",
"description": "Guidance provided for email forwarding services that support multiple email domains."
},
"forwarderError": {
@@ -2809,7 +2809,7 @@
}
},
"forwaderInvalidToken": {
- "message": "Invalid $SERVICENAME$ API token",
+ "message": "API token de $SERVICENAME$ invàlid",
"description": "Displayed when the user's API token is empty or rejected by the forwarding service.",
"placeholders": {
"servicename": {
@@ -2819,7 +2819,7 @@
}
},
"forwaderInvalidTokenWithMessage": {
- "message": "Invalid $SERVICENAME$ API token: $ERRORMESSAGE$",
+ "message": "API token de $SERVICENAME$ invàlid: $ERRORMESSAGE$",
"description": "Displayed when the user's API token is rejected by the forwarding service with an error message.",
"placeholders": {
"servicename": {
@@ -2833,7 +2833,7 @@
}
},
"forwaderInvalidOperation": {
- "message": "$SERVICENAME$ refused your request. Please contact your service provider for assistance.",
+ "message": "$SERVICENAME$ t'ha rebutjat la petició. Contacta amb el teu proveïdor de serveis per assistència.",
"description": "Displayed when the user is forbidden from using the API by the forwarding service.",
"placeholders": {
"servicename": {
@@ -2843,7 +2843,7 @@
}
},
"forwaderInvalidOperationWithMessage": {
- "message": "$SERVICENAME$ refused your request: $ERRORMESSAGE$",
+ "message": "$SERVICENAME$ us ha rebutjat la petició: $ERRORMESSAGE$",
"description": "Displayed when the user is forbidden from using the API by the forwarding service with an error message.",
"placeholders": {
"servicename": {
@@ -2857,7 +2857,7 @@
}
},
"forwarderNoAccountId": {
- "message": "Unable to obtain $SERVICENAME$ masked email account ID.",
+ "message": "No es pot obtenir l'ID de compte de correu electrònic emmascarat de $SERVICENAME$.",
"description": "Displayed when the forwarding service fails to return an account ID.",
"placeholders": {
"servicename": {
@@ -2867,7 +2867,7 @@
}
},
"forwarderNoDomain": {
- "message": "Invalid $SERVICENAME$ domain.",
+ "message": "Domini de $SERVICENAME$ invàlid.",
"description": "Displayed when the domain is empty or domain authorization failed at the forwarding service.",
"placeholders": {
"servicename": {
@@ -2877,7 +2877,7 @@
}
},
"forwarderNoUrl": {
- "message": "Invalid $SERVICENAME$ url.",
+ "message": "Url de $SERVICENAME$ invàlid.",
"description": "Displayed when the url of the forwarding service wasn't supplied.",
"placeholders": {
"servicename": {
@@ -2887,7 +2887,7 @@
}
},
"forwarderUnknownError": {
- "message": "Unknown $SERVICENAME$ error occurred.",
+ "message": "Hi ha hagut un error desconegut amb $SERVICENAME$.",
"description": "Displayed when the forwarding service failed due to an unknown error.",
"placeholders": {
"servicename": {
@@ -2897,7 +2897,7 @@
}
},
"forwarderUnknownForwarder": {
- "message": "Unknown forwarder: '$SERVICENAME$'.",
+ "message": "Remitent desconegut: «$SERVICENAME$».",
"description": "Displayed when the forwarding service is not supported.",
"placeholders": {
"servicename": {
@@ -2965,13 +2965,13 @@
"message": "S'ha enviat una notificació al vostre dispositiu"
},
"notificationSentDevicePart1": {
- "message": "Unlock Bitwarden on your device or on the "
+ "message": "Desbloqueja Bitwarden en el teu dispositiu o en el "
},
"notificationSentDeviceAnchor": {
"message": "aplicació web"
},
"notificationSentDevicePart2": {
- "message": "Make sure the Fingerprint phrase matches the one below before approving."
+ "message": "Assegura't que la frase d'empremta digital encaixa amb la d'aquí sota abans d'aprovar-la."
},
"needAnotherOptionV1": {
"message": "Necessiteu una altra opció?"
@@ -3002,7 +3002,7 @@
"description": "'Character count' describes a feature that displays a number next to each character of the password."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Intentes accedir al teu compte?"
},
"accessAttemptBy": {
"message": "Intent d'inici de sessió per $EMAIL$",
@@ -3063,7 +3063,7 @@
"message": "Aquesta sol·licitud ja no és vàlida."
},
"confirmAccessAttempt": {
- "message": "Confirm access attempt for $EMAIL$",
+ "message": "Confirma l'intent d'accés de $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3075,7 +3075,7 @@
"message": "S'ha sol·licitat inici de sessió"
},
"accountAccessRequested": {
- "message": "Account access requested"
+ "message": "Accés al compte demanat"
},
"creatingAccountOn": {
"message": "Creant compte en"
@@ -3123,10 +3123,10 @@
"message": "Accedint a"
},
"accessTokenUnableToBeDecrypted": {
- "message": "You have been logged out because your access token could not be decrypted. Please log in again to resolve this issue."
+ "message": "Se t'ha tancat la sessió perquè el teu token d'accés no es podia desxifrar. Torna a iniciar la sessió per resoldre aquest problema."
},
"refreshTokenSecureStorageRetrievalFailure": {
- "message": "You have been logged out because your refresh token could not be retrieved. Please log in again to resolve this issue."
+ "message": "Se t'ha tancat la sessió perquè el teu token d'actualització no es podia recuperar. Torna a iniciar la sessió per resoldre aquest problema."
},
"masterPasswordHint": {
"message": "La contrasenya mestra no es pot recuperar si la oblideu!"
@@ -3147,16 +3147,16 @@
"message": "Actualització de configuració recomanada"
},
"rememberThisDeviceToMakeFutureLoginsSeamless": {
- "message": "Remember this device to make future logins seamless"
+ "message": "Recorda aquest dispositiu per futurs inicis de sessió sense interrupcions"
},
"deviceApprovalRequired": {
"message": "Cal l'aprovació del dispositiu. Seleccioneu una opció d'aprovació a continuació:"
},
"deviceApprovalRequiredV2": {
- "message": "Device approval required"
+ "message": "Cal aprovació del dispositiu"
},
"selectAnApprovalOptionBelow": {
- "message": "Select an approval option below"
+ "message": "Tria una opció d'aprovació a sota"
},
"rememberThisDevice": {
"message": "Recorda aquest dispositiu"
@@ -3171,10 +3171,10 @@
"message": "Sol·liciteu l'aprovació de l'administrador"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "No s'ha pogut finalitzar l'inici de sessió"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Cal iniciar sessió en un dispositiu de confiança o demanar al teu administrador que t'assigni una contrasenya."
},
"region": {
"message": "Regió"
@@ -3211,34 +3211,34 @@
"message": "Falta el correu electrònic de l'usuari"
},
"activeUserEmailNotFoundLoggingYouOut": {
- "message": "Active user email not found. Logging you out."
+ "message": "No s'ha trobat el correu electrònic de l'usuari actiu. Se't tancarà la sessió."
},
"deviceTrusted": {
"message": "Dispositiu de confiança"
},
"trustOrganization": {
- "message": "Trust organization"
+ "message": "Confia en l'organització"
},
"trust": {
"message": "Confiar"
},
"doNotTrust": {
- "message": "Do not trust"
+ "message": "No hi confiïs"
},
"organizationNotTrusted": {
- "message": "Organization is not trusted"
+ "message": "L'organització no és de confiança"
},
"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": "Per la seguretat del teu compte, confirma només si tens garantit l'accés a aquest usuari i la seva empremta coincideix amb el que es mostra al seu compte"
},
"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": "Per la seguretat del teu compte, confirma només si ets un membre d'aquesta organització, tens un compte de recuperació activat i l'empremta de sota coincideix amb la de l'organització."
},
"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": "Aquesta organització té una política d'Empresa que t'inscriurà com a compte de recuperació. La inscripció permetrà als administradors de l'organització canviar la teva contrasenya. Continua només si coneixes l'organització i la frase d'empremta digital mostrada a sota coincideix amb l'empremta de l'organització."
},
"trustUser": {
- "message": "Trust user"
+ "message": "Confia en l'usuari"
},
"inputRequired": {
"message": "L'entrada és obligatòria."
@@ -3405,13 +3405,13 @@
"message": "Es requereix l'inici de sessió en dos passos de DUO al vostre compte."
},
"duoTwoFactorRequiredPageSubtitle": {
- "message": "Duo two-step login is required for your account. Follow the steps below to finish logging in."
+ "message": "Cal l'inici de sessió en dos passos de Duo al vostre compte. Seguiu els passos de sota per finalitzar l'inici de sessió."
},
"followTheStepsBelowToFinishLoggingIn": {
- "message": "Follow the steps below to finish logging in."
+ "message": "Seguiu els passos de sota per finalitzar l'inici de sessió."
},
"followTheStepsBelowToFinishLoggingInWithSecurityKey": {
- "message": "Follow the steps below to finish logging in with your security key."
+ "message": "Seguiu els passos de sota per finalitzar l'inici de sessió amb la clau de seguretat."
},
"launchDuo": {
"message": "Inicia Duo al navegador"
@@ -3568,27 +3568,27 @@
"description": "Label indicating the most common import formats"
},
"uriMatchDefaultStrategyHint": {
- "message": "URI match detection is how Bitwarden identifies autofill suggestions.",
+ "message": "Bitwarden empra la detecció de coincidències URI pels suggeriments d'autoemplenament.",
"description": "Explains to the user that URI match detection determines how Bitwarden suggests autofill options, and clarifies that this default strategy applies when no specific match detection is set for a login item."
},
"regExAdvancedOptionWarning": {
- "message": "\"Regular expression\" is an advanced option with increased risk of exposing credentials.",
+ "message": "«Expressió regular» és una opció avançada amb més risc d'exposar credencials.",
"description": "Content for dialog which warns a user when selecting 'regular expression' matching strategy as a cipher match strategy"
},
"startsWithAdvancedOptionWarning": {
- "message": "\"Starts with\" is an advanced option with increased risk of exposing credentials.",
+ "message": "«Comença amb» és una opció avançada amb més risc d'exposar credencials.",
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
- "message": "More about match detection",
+ "message": "Més sobre la detecció de coincidències",
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Opcions avançades",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
- "message": "Warning",
+ "message": "Advertència",
"description": "Warning (should maintain locale-relevant capitalization)"
},
"success": {
@@ -3659,33 +3659,33 @@
"message": "Sends de text"
},
"ssoError": {
- "message": "No free ports could be found for the sso login."
+ "message": "No s'ha trobat cap port lliure per a l'inici de sessió sso."
},
"securePasswordGenerated": {
- "message": "Secure password generated! Don't forget to also update your password on the website."
+ "message": "Contrasenya segura generada! No us oblideu d'actualitzar-vos la contrasenya al web."
},
"useGeneratorHelpTextPartOne": {
- "message": "Use the generator",
+ "message": "Feu servir el generador",
"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": "per crear una contrasenya única forta",
"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'"
},
"biometricsStatusHelptextUnlockNeeded": {
- "message": "Biometric unlock is unavailable because PIN or password unlock is required first."
+ "message": "El desbloqueig per dades biomètriques no està disponible perquè cal primer desbloquejar el PIN o la contrasenya."
},
"biometricsStatusHelptextHardwareUnavailable": {
- "message": "Biometric unlock is currently unavailable."
+ "message": "El desbloqueig per dades biomètriques no està disponible ara."
},
"biometricsStatusHelptextAutoSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "El desbloqueig per dades biomètriques no està disponible per uns fitxers del sistema mal configurats."
},
"biometricsStatusHelptextManualSetupNeeded": {
- "message": "Biometric unlock is unavailable due to misconfigured system files."
+ "message": "El desbloqueig per dades biomètriques no està disponible per uns fitxers del sistema mal configurats."
},
"biometricsStatusHelptextNotEnabledLocally": {
- "message": "Biometric unlock is unavailable because it is not enabled for $EMAIL$ in the Bitwarden desktop app.",
+ "message": "El desbloqueig per dades biomètriques no està disponible perquè no s'ha activat per a $EMAIL$ a l'app d'escriptori de Bitwarden.",
"placeholders": {
"email": {
"content": "$1",
@@ -3694,7 +3694,7 @@
}
},
"biometricsStatusHelptextUnavailableReasonUnknown": {
- "message": "Biometric unlock is currently unavailable for an unknown reason."
+ "message": "El desbloqueig per dades biomètriques no està disponible ara per motius desconeguts."
},
"itemDetails": {
"message": "Detalls de l'element"
@@ -3724,19 +3724,19 @@
"message": "Denega"
},
"sshkeyApprovalTitle": {
- "message": "Confirm SSH key usage"
+ "message": "Confirma l'ús de la clau SSH"
},
"agentForwardingWarningTitle": {
- "message": "Warning: Agent Forwarding"
+ "message": "Advertència: Reenviament de l'Agent"
},
"agentForwardingWarningText": {
- "message": "This request comes from a remote device that you are logged into"
+ "message": "Aquesta petició ve d'un dispositiu remot on teniu iniciada la sessió"
},
"sshkeyApprovalMessageInfix": {
- "message": "is requesting access to"
+ "message": "sol·licita accés a"
},
"sshkeyApprovalMessageSuffix": {
- "message": "in order to"
+ "message": "per"
},
"sshActionLogin": {
"message": "authenticate to a server"
diff --git a/apps/desktop/src/locales/cs/messages.json b/apps/desktop/src/locales/cs/messages.json
index 11eb2113bd2..a21f9b9258e 100644
--- a/apps/desktop/src/locales/cs/messages.json
+++ b/apps/desktop/src/locales/cs/messages.json
@@ -573,7 +573,7 @@
"message": "Kopírovat ověřovací kód (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopírovat $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "číslo karty"
},
"premiumMembership": {
"message": "Prémiové členství"
diff --git a/apps/desktop/src/locales/de/messages.json b/apps/desktop/src/locales/de/messages.json
index 87ddaae531a..1f60be15374 100644
--- a/apps/desktop/src/locales/de/messages.json
+++ b/apps/desktop/src/locales/de/messages.json
@@ -573,7 +573,7 @@
"message": "Verifizierungscode (TOTP) kopieren"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ kopieren",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -2425,13 +2425,13 @@
"message": "Dein Master-Passwort entspricht nicht einer oder mehreren Richtlinien deiner Organisation. Um auf den Tresor zugreifen zu können, musst du dein Master-Passwort jetzt aktualisieren. Wenn du fortfährst, wirst du von deiner aktuellen Sitzung abgemeldet und musst dich erneut anmelden. Aktive Sitzungen auf anderen Geräten können noch bis zu einer Stunde lang aktiv bleiben."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "Nachdem du dein Passwort geändert hast, musst du dich mit deinem neuen Passwort anmelden. Aktive Sitzungen auf anderen Geräten werden innerhalb einer Stunde abgemeldet."
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
"message": "Ändere dein Master-Passwort, um die Kontowiederherstellung abzuschließen."
},
"updateMasterPasswordSubtitle": {
- "message": "Your master password does not meet this organization’s requirements. Change your master password to continue."
+ "message": "Dein Master-Passwort entspricht nicht den Anforderungen dieser Organisation. Ändere dein Master-Passwort, um fortzufahren."
},
"tdeDisabledMasterPasswordRequired": {
"message": "Deine Organisation hat die vertrauenswürdige Geräteverschlüsselung deaktiviert. Bitte lege ein Master-Passwort fest, um auf deinen Tresor zuzugreifen."
@@ -3174,7 +3174,7 @@
"message": "Anmeldung kann nicht abgeschlossen werden"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Du musst dich auf einem vertrauenswürdigen Gerät anmelden oder deinem Administrator bitten, dir ein Passwort zuzuweisen."
},
"region": {
"message": "Region"
@@ -3568,15 +3568,15 @@
"description": "Label indicating the most common import formats"
},
"uriMatchDefaultStrategyHint": {
- "message": "URI match detection is how Bitwarden identifies autofill suggestions.",
+ "message": "Die URI-Übereinstimmungserkennung ist die Methode, mit der Bitwarden Auto-Ausfüllen-Vorschläge erkennt.",
"description": "Explains to the user that URI match detection determines how Bitwarden suggests autofill options, and clarifies that this default strategy applies when no specific match detection is set for a login item."
},
"regExAdvancedOptionWarning": {
- "message": "\"Regular expression\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Regulärer Ausdruck\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'regular expression' matching strategy as a cipher match strategy"
},
"startsWithAdvancedOptionWarning": {
- "message": "\"Starts with\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Beginnt mit\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
@@ -3584,7 +3584,7 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Erweiterte Optionen",
"description": "Advanced option placeholder for uri option component"
},
"warningCapitalized": {
@@ -4016,9 +4016,9 @@
}
},
"enableAutotype": {
- "message": "Enable autotype shortcut"
+ "message": "Auto-Schreiben Tastenkombination aktivieren"
},
"enableAutotypeDescription": {
- "message": "Bitwarden does not validate input locations, be sure you are in the right window and field before using the shortcut."
+ "message": "Bitwarden überprüft die Eingabestellen nicht. Vergewissere dich, dass du dich im richtigen Fenster und Feld befindest, bevor du die Tastenkombination verwendest."
}
}
diff --git a/apps/desktop/src/locales/hu/messages.json b/apps/desktop/src/locales/hu/messages.json
index f5043724cbb..0f5e14596d7 100644
--- a/apps/desktop/src/locales/hu/messages.json
+++ b/apps/desktop/src/locales/hu/messages.json
@@ -573,7 +573,7 @@
"message": "Ellenőrző kód másolása (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ másolása",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "kártya szám"
},
"premiumMembership": {
"message": "Prémium tagság"
diff --git a/apps/desktop/src/locales/ja/messages.json b/apps/desktop/src/locales/ja/messages.json
index 9bc5f987b18..19a91367567 100644
--- a/apps/desktop/src/locales/ja/messages.json
+++ b/apps/desktop/src/locales/ja/messages.json
@@ -3697,25 +3697,25 @@
"message": "生体認証によるロック解除は、不明な理由により現在利用できません。"
},
"itemDetails": {
- "message": "Item details"
+ "message": "アイテムの詳細"
},
"itemName": {
- "message": "Item name"
+ "message": "アイテム名"
},
"loginCredentials": {
- "message": "Login credentials"
+ "message": "ログイン資格情報"
},
"additionalOptions": {
- "message": "Additional options"
+ "message": "追加のオプション"
},
"itemHistory": {
- "message": "Item history"
+ "message": "アイテムの履歴"
},
"lastEdited": {
- "message": "Last edited"
+ "message": "直近の編集"
},
"upload": {
- "message": "Upload"
+ "message": "アップロード"
},
"authorize": {
"message": "認可"
@@ -3799,10 +3799,10 @@
"message": "移動"
},
"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"
diff --git a/apps/desktop/src/locales/lv/messages.json b/apps/desktop/src/locales/lv/messages.json
index 7c00a3a40a9..0849bf29b45 100644
--- a/apps/desktop/src/locales/lv/messages.json
+++ b/apps/desktop/src/locales/lv/messages.json
@@ -573,7 +573,7 @@
"message": "Ievietot Apliecinājuma kodu (TOTP) starpliktuvē"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Ievietot starpliktuvē $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "kartes numurs"
},
"premiumMembership": {
"message": "Premium dalība"
diff --git a/apps/desktop/src/locales/pt_PT/messages.json b/apps/desktop/src/locales/pt_PT/messages.json
index a9cb4fcd88e..d3764bad580 100644
--- a/apps/desktop/src/locales/pt_PT/messages.json
+++ b/apps/desktop/src/locales/pt_PT/messages.json
@@ -573,7 +573,7 @@
"message": "Copiar código de verificação (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Copiar $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "número do cartão"
},
"premiumMembership": {
"message": "Subscrição Premium"
diff --git a/apps/desktop/src/locales/sv/messages.json b/apps/desktop/src/locales/sv/messages.json
index 067570eb002..54fb7f1f643 100644
--- a/apps/desktop/src/locales/sv/messages.json
+++ b/apps/desktop/src/locales/sv/messages.json
@@ -573,7 +573,7 @@
"message": "Kopiera verifieringskod (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopiera $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "kortnummer"
},
"premiumMembership": {
"message": "Premium-medlemskap"
@@ -1506,7 +1506,7 @@
"message": "Lösenordshistorik"
},
"generatorHistory": {
- "message": "Generatorns historia"
+ "message": "Generatorns historik"
},
"clearGeneratorHistoryTitle": {
"message": "Rensa generatorhistorik"
diff --git a/apps/desktop/src/locales/vi/messages.json b/apps/desktop/src/locales/vi/messages.json
index d804c03b6cd..d0ff3cca7bc 100644
--- a/apps/desktop/src/locales/vi/messages.json
+++ b/apps/desktop/src/locales/vi/messages.json
@@ -573,7 +573,7 @@
"message": "Sao chép mã xác thực (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Sao chép $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "số thẻ"
},
"premiumMembership": {
"message": "Thành viên Cao Cấp"
diff --git a/apps/desktop/src/locales/zh_CN/messages.json b/apps/desktop/src/locales/zh_CN/messages.json
index fe8a61af825..c0bb7e0f0d3 100644
--- a/apps/desktop/src/locales/zh_CN/messages.json
+++ b/apps/desktop/src/locales/zh_CN/messages.json
@@ -573,7 +573,7 @@
"message": "复制验证码 (TOTP)"
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "复制 $FIELD$、$CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "卡号"
},
"premiumMembership": {
"message": "高级会员"
diff --git a/apps/desktop/src/locales/zh_TW/messages.json b/apps/desktop/src/locales/zh_TW/messages.json
index 541e6e82658..c2253c56760 100644
--- a/apps/desktop/src/locales/zh_TW/messages.json
+++ b/apps/desktop/src/locales/zh_TW/messages.json
@@ -24,7 +24,7 @@
"message": "身分"
},
"typeNote": {
- "message": "Note"
+ "message": "備註"
},
"typeSecureNote": {
"message": "安全筆記"
@@ -241,22 +241,22 @@
"message": "SSH代理是一個針對開發者的服務,它能夠直接從 Bitwarden 密碼庫簽發SSH請求。"
},
"sshAgentPromptBehavior": {
- "message": "Ask for authorization when using SSH agent"
+ "message": "使用 SSH 代理程式時要求授權"
},
"sshAgentPromptBehaviorDesc": {
- "message": "Choose how to handle SSH-agent authorization requests."
+ "message": "選擇如何處理 SSH 代理程式的授權要求。"
},
"sshAgentPromptBehaviorHelp": {
- "message": "Remember SSH authorizations"
+ "message": "記住 SSH 授權"
},
"sshAgentPromptBehaviorAlways": {
- "message": "Always"
+ "message": "總是"
},
"sshAgentPromptBehaviorNever": {
- "message": "Never"
+ "message": "永不"
},
"sshAgentPromptBehaviorRememberUntilLock": {
- "message": "Remember until vault is locked"
+ "message": "記住直到密碼庫鎖定為止"
},
"premiumRequired": {
"message": "需要進階會員資格"
@@ -409,16 +409,16 @@
"message": "驗證器金鑰 (TOTP)"
},
"authenticatorKey": {
- "message": "Authenticator key"
+ "message": "驗證器金鑰"
},
"autofillOptions": {
- "message": "Autofill options"
+ "message": "自動填入選項"
},
"websiteUri": {
- "message": "Website (URI)"
+ "message": "網站 (URI)"
},
"websiteUriCount": {
- "message": "Website (URI) $COUNT$",
+ "message": "網站 (URI) $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": {
@@ -428,43 +428,43 @@
}
},
"websiteAdded": {
- "message": "Website added"
+ "message": "已新增網站"
},
"addWebsite": {
- "message": "Add website"
+ "message": "新增網站"
},
"deleteWebsite": {
- "message": "Delete website"
+ "message": "刪除網站"
},
"owner": {
- "message": "Owner"
+ "message": "擁有者"
},
"addField": {
- "message": "Add field"
+ "message": "新增欄位"
},
"editField": {
- "message": "Edit field"
+ "message": "編輯欄位"
},
"permanentlyDeleteAttachmentConfirmation": {
- "message": "Are you sure you want to permanently delete this attachment?"
+ "message": "你確定要永久刪除此附件嗎?"
},
"fieldType": {
- "message": "Field type"
+ "message": "欄位類別"
},
"fieldLabel": {
- "message": "Field label"
+ "message": "欄位標籤"
},
"add": {
- "message": "Add"
+ "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."
@@ -748,10 +748,10 @@
"message": "Enter the code sent to your email"
},
"enterTheCodeFromYourAuthenticatorApp": {
- "message": "Enter the code from your authenticator app"
+ "message": "請輸入您驗證器應用程式中的代碼"
},
"pressYourYubiKeyToAuthenticate": {
- "message": "Press your YubiKey to authenticate"
+ "message": "請輕觸您的 YubiKey 以進行驗證"
},
"logInWithPasskey": {
"message": "以通行密鑰 (passkey) 登入"
@@ -806,7 +806,7 @@
"message": "主密碼提示"
},
"passwordStrengthScore": {
- "message": "Password strength score $SCORE$",
+ "message": "密碼強度分數 $SCORE$",
"placeholders": {
"score": {
"content": "$1",
@@ -921,7 +921,7 @@
"message": "驗證已被取消或時間過長。請再試一次。"
},
"openInNewTab": {
- "message": "Open in new tab"
+ "message": "在新分頁開啟"
},
"invalidVerificationCode": {
"message": "無效的驗證碼"
@@ -939,14 +939,14 @@
}
},
"dontAskAgainOnThisDeviceFor30Days": {
- "message": "Don't ask again on this device for 30 days"
+ "message": "30 天內不要再於這部裝置上詢問"
},
"selectAnotherMethod": {
- "message": "Select another method",
+ "message": "選擇其他方法",
"description": "Select another two-step login method"
},
"useYourRecoveryCode": {
- "message": "Use your recovery code"
+ "message": "使用您的復原碼"
},
"insertU2f": {
"message": "將您的安全鑰匙插入電腦的 USB 連接埠,然後觸摸其按鈕(如有的話)。"
@@ -979,13 +979,13 @@
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"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": "繼續登入"
},
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
@@ -1012,7 +1012,7 @@
"message": "兩步驟登入選項"
},
"selectTwoStepLoginMethod": {
- "message": "Select two-step login method"
+ "message": "選取兩步驟登入方式"
},
"selfHostedEnvironment": {
"message": "自我裝載環境"
@@ -1070,7 +1070,7 @@
"message": "否"
},
"location": {
- "message": "Location"
+ "message": "位置"
},
"overwritePassword": {
"message": "覆寫密碼"
@@ -1440,7 +1440,7 @@
"description": "Copy credit card security code (CVV)"
},
"cardNumber": {
- "message": "card number"
+ "message": "信用卡號碼"
},
"premiumMembership": {
"message": "進階會員"
@@ -1734,10 +1734,10 @@
"message": "帳戶已限制"
},
"restrictCardTypeImport": {
- "message": "Cannot import card item types"
+ "message": "無法匯入卡片項目類別"
},
"restrictCardTypeImportDesc": {
- "message": "A policy set by 1 or more organizations prevents you from importing cards to your vaults."
+ "message": "由於一或多個組織設有政策,您無法匯入卡片至您的保險庫。"
},
"filePasswordAndConfirmFilePasswordDoNotMatch": {
"message": "「檔案密碼」與「確認檔案密碼」不一致。"
From 462287223ab447913720aec982171f86d8987a2b Mon Sep 17 00:00:00 2001
From: "bw-ghapp[bot]" <178206702+bw-ghapp[bot]@users.noreply.github.com>
Date: Sat, 19 Jul 2025 21:50:09 +0200
Subject: [PATCH 22/54] Autosync the updated translations (#15691)
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
---
apps/browser/src/_locales/az/messages.json | 62 ++++++++--------
apps/browser/src/_locales/bg/messages.json | 62 ++++++++--------
apps/browser/src/_locales/cs/messages.json | 18 ++---
apps/browser/src/_locales/de/messages.json | 40 +++++------
apps/browser/src/_locales/hu/messages.json | 62 ++++++++--------
apps/browser/src/_locales/lv/messages.json | 62 ++++++++--------
apps/browser/src/_locales/nl/messages.json | 42 +++++------
apps/browser/src/_locales/pl/messages.json | 24 +++----
apps/browser/src/_locales/pt_PT/messages.json | 70 +++++++++----------
apps/browser/src/_locales/ru/messages.json | 14 ++--
apps/browser/src/_locales/sk/messages.json | 14 ++--
apps/browser/src/_locales/sv/messages.json | 18 ++---
apps/browser/src/_locales/vi/messages.json | 64 ++++++++---------
apps/browser/src/_locales/zh_CN/messages.json | 14 ++--
14 files changed, 283 insertions(+), 283 deletions(-)
diff --git a/apps/browser/src/_locales/az/messages.json b/apps/browser/src/_locales/az/messages.json
index 67019f5cac7..5e7bf056980 100644
--- a/apps/browser/src/_locales/az/messages.json
+++ b/apps/browser/src/_locales/az/messages.json
@@ -1830,7 +1830,7 @@
"message": "Güvənlik kodu"
},
"cardNumber": {
- "message": "card number"
+ "message": "kart nömrəsi"
},
"ex": {
"message": "məs."
@@ -3464,7 +3464,7 @@
"message": "Tələb göndərildi"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "$DEVICE$ cihazında $EMAIL$ üçün giriş tələbi təsdiqləndi",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Başqa bir cihazdan giriş cəhdinə rədd cavabı verdiniz. Bu siz idinizsə, cihazla yenidən giriş etməyə çalışın."
},
"device": {
- "message": "Device"
+ "message": "Cihaz"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Giriş statusu"
},
"masterPasswordChanged": {
"message": "Ana parol saxlanıldı"
@@ -3582,28 +3582,28 @@
"message": "Gələcək girişləri problemsiz etmək üçün bu cihazı xatırla"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Cihazları idarə et"
},
"currentSession": {
- "message": "Current session"
+ "message": "Hazırkı seans"
},
"mobile": {
- "message": "Mobile",
+ "message": "Mobil",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Uzantı",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Masaüstü",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Veb seyf"
},
"webApp": {
- "message": "Web app"
+ "message": "Veb tətbiq"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Tələb gözlənir"
},
"firstLogin": {
- "message": "First login"
+ "message": "İlk giriş"
},
"trusted": {
- "message": "Trusted"
+ "message": "Güvənli"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Təsdiq lazımdır"
},
"devices": {
- "message": "Devices"
+ "message": "Cihazlar"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "$EMAIL$ ilə müraciət cəhdi",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Müraciəti təsdiqlə"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Müraciətə rədd cavabı ver"
},
"time": {
- "message": "Time"
+ "message": "Vaxt"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Cihaz növü"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Giriş tələbi"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Bu tələb artıq yararsızdır."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Hesabınıza müraciət etməyə çalışırsınız?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "$DEVICE$ cihazında $EMAIL$ üçün giriş təsdiqləndi",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Başqa bir cihazdan giriş cəhdinə rədd cavabı verdiniz. Bu həqiqətən siz idinizsə, cihazla yenidən giriş etməyə çalışın."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Giriş tələbinin müddəti artıq bitib."
},
"justNow": {
- "message": "Just now"
+ "message": "İndicə"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "$MINUTES$ dəqiqə əvvəl tələb göndərildi",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopyala: $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/bg/messages.json b/apps/browser/src/_locales/bg/messages.json
index b86493d7d5a..672e029a662 100644
--- a/apps/browser/src/_locales/bg/messages.json
+++ b/apps/browser/src/_locales/bg/messages.json
@@ -1830,7 +1830,7 @@
"message": "Код за сигурност"
},
"cardNumber": {
- "message": "card number"
+ "message": "номер на карта"
},
"ex": {
"message": "напр."
@@ -3464,7 +3464,7 @@
"message": "Заявката е изпратена"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Заявката за вписване за $EMAIL$ на $DEVICE$ е одобрена",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Вие отказахте опит за вписване от друго устройство. Ако това сте били Вие, опитайте да се впишете от устройството отново."
},
"device": {
- "message": "Device"
+ "message": "Устройство"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Състояние на вписването"
},
"masterPasswordChanged": {
"message": "Главната парола е запазена"
@@ -3582,28 +3582,28 @@
"message": "Запомняне на това устройство, така че в бъдеще вписването да бъде по-лесно"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Управление на устройствата"
},
"currentSession": {
- "message": "Current session"
+ "message": "Текуща сесия"
},
"mobile": {
- "message": "Mobile",
+ "message": "Мобилно приложение",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Добавка за браузър",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Работен плот",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Трезор по уеб"
},
"webApp": {
- "message": "Web app"
+ "message": "Приложение по уеб"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Чакаща заявка"
},
"firstLogin": {
- "message": "First login"
+ "message": "Първо вписване"
},
"trusted": {
- "message": "Trusted"
+ "message": "Доверено"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Изисква одобрение"
},
"devices": {
- "message": "Devices"
+ "message": "Устройства"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Опит за достъп от $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Разрешаване на достъпа"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Отказване на достъпа"
},
"time": {
- "message": "Time"
+ "message": "Време"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Вид устройство"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Заявка за вписване"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Тази заявка вече не е активна."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Опитвате ли се да получите достъп до акаунта си?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Вписването за $EMAIL$ на $DEVICE$ е одобрено",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Вие отказахте опит за вписване от друго устройство. Ако това наистина сте били Вие, опитайте да се впишете от устройството отново."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Заявката за вписване вече е изтекла."
},
"justNow": {
- "message": "Just now"
+ "message": "Току-що"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "Заявено преди $MINUTES$ минути",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Копиране на $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/cs/messages.json b/apps/browser/src/_locales/cs/messages.json
index 86c1b650996..4e0096a1520 100644
--- a/apps/browser/src/_locales/cs/messages.json
+++ b/apps/browser/src/_locales/cs/messages.json
@@ -1830,7 +1830,7 @@
"message": "Bezpečnostní kód"
},
"cardNumber": {
- "message": "card number"
+ "message": "číslo karty"
},
"ex": {
"message": "např."
@@ -3480,10 +3480,10 @@
"message": "Pokus o přihlášení byl zamítnut z jiného zařízení. Pokud jste to Vy, zkuste se znovu přihlásit do zařízení."
},
"device": {
- "message": "Device"
+ "message": "Zařízení"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Stav přihlášení"
},
"masterPasswordChanged": {
"message": "Hlavní heslo bylo uloženo"
@@ -3652,13 +3652,13 @@
"message": "Požadavek na přihlášení"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Tento požadavek již není platný."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Pokoušíte se získat přístup k Vašemu účtu?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Přihlášení bylo potvrzeno z $EMAIL$ pro $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Pokus o přihlášení byl zamítnut z jiného zařízení. Pokud jste to opravdu Vy, zkuste se znovu přihlásit do zařízení."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Požadavek na přihlášení již vypršel."
},
"justNow": {
"message": "Právě teď"
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopírovat $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/de/messages.json b/apps/browser/src/_locales/de/messages.json
index 91dfac2e7c0..2e3d9369c41 100644
--- a/apps/browser/src/_locales/de/messages.json
+++ b/apps/browser/src/_locales/de/messages.json
@@ -1174,10 +1174,10 @@
"description": "Detailed error message shown when saving login details fails."
},
"changePasswordWarning": {
- "message": "After changing your password, you will need to log in with your new password. Active sessions on other devices will be logged out within one hour."
+ "message": "Nachdem du dein Passwort geändert hast, musst du dich mit deinem neuen Passwort anmelden. Aktive Sitzungen auf anderen Geräten werden innerhalb einer Stunde abgemeldet."
},
"accountRecoveryUpdateMasterPasswordSubtitle": {
- "message": "Change your master password to complete account recovery."
+ "message": "Ändere dein Master-Passwort, um die Kontowiederherstellung abzuschließen."
},
"enableChangedPasswordNotification": {
"message": "Nach dem Aktualisieren bestehender Zugangsdaten fragen"
@@ -2929,7 +2929,7 @@
"message": "Du musst deine E-Mail Adresse verifizieren, um diese Funktion nutzen zu können. Du kannst deine E-Mail im Web-Tresor verifizieren."
},
"masterPasswordSuccessfullySet": {
- "message": "Master-Passwort erfolgreich eingerichtet"
+ "message": "Master-Passwort erfolgreich festgelegt"
},
"updatedMasterPassword": {
"message": "Master-Passwort aktualisiert"
@@ -3464,7 +3464,7 @@
"message": "Anfrage gesendet"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Anmeldeanfrage für $EMAIL$ auf $DEVICE$ genehmigt",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,10 +3477,10 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Du hast einen Anmeldeversuch von einem anderen Gerät abgelehnt. Wenn du das wirklich warst, versuche dich erneut mit dem Gerät anzumelden."
},
"device": {
- "message": "Device"
+ "message": "Gerät"
},
"loginStatus": {
"message": "Anmeldestatus"
@@ -3582,17 +3582,17 @@
"message": "Dieses Gerät merken, um zukünftige Anmeldungen reibungslos zu gestalten"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Geräte verwalten"
},
"currentSession": {
"message": "Aktuelle Sitzung"
},
"mobile": {
- "message": "Mobile",
+ "message": "Mobile App",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Erweiterung",
"description": "Browser extension/addon"
},
"desktop": {
@@ -3613,7 +3613,7 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Anfrage ausstehend"
},
"firstLogin": {
"message": "Erste Anmeldung"
@@ -3625,7 +3625,7 @@
"message": "Benötigt Genehmigung"
},
"devices": {
- "message": "Devices"
+ "message": "Geräte"
},
"accessAttemptBy": {
"message": "Zugriffsversuch von $EMAIL$",
@@ -3643,13 +3643,13 @@
"message": "Zugriff ablehnen"
},
"time": {
- "message": "Time"
+ "message": "Zeit"
},
"deviceType": {
"message": "Gerätetyp"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Anmeldungsanfrage"
},
"thisRequestIsNoLongerValid": {
"message": "Diese Anfrage ist nicht mehr gültig."
@@ -3710,10 +3710,10 @@
"message": "Admin-Genehmigung anfragen"
},
"unableToCompleteLogin": {
- "message": "Unable to complete login"
+ "message": "Anmeldung kann nicht abgeschlossen werden"
},
"loginOnTrustedDeviceOrAskAdminToAssignPassword": {
- "message": "You need to log in on a trusted device or ask your administrator to assign you a password."
+ "message": "Du musst dich auf einem vertrauenswürdigen Gerät anmelden oder deinem Administrator bitten, dir ein Passwort zuzuweisen."
},
"ssoIdentifierRequired": {
"message": "SSO-Kennung der Organisation erforderlich."
@@ -4395,15 +4395,15 @@
"description": "Label indicating the most common import formats"
},
"uriMatchDefaultStrategyHint": {
- "message": "URI match detection is how Bitwarden identifies autofill suggestions.",
+ "message": "Die URI-Übereinstimmungserkennung ist die Methode, mit der Bitwarden Auto-Ausfüllen-Vorschläge erkennt.",
"description": "Explains to the user that URI match detection determines how Bitwarden suggests autofill options, and clarifies that this default strategy applies when no specific match detection is set for a login item."
},
"regExAdvancedOptionWarning": {
- "message": "\"Regular expression\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Regulärer Ausdruck\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'regular expression' matching strategy as a cipher match strategy"
},
"startsWithAdvancedOptionWarning": {
- "message": "\"Starts with\" is an advanced option with increased risk of exposing credentials.",
+ "message": "\"Beginnt mit\" ist eine erweiterte Option mit erhöhtem Risiko der Kompromittierung von Zugangsdaten.",
"description": "Content for dialog which warns a user when selecting 'starts with' matching strategy as a cipher match strategy"
},
"uriMatchWarningDialogLink": {
@@ -4411,7 +4411,7 @@
"description": "Link to match detection docs on warning dialog for advance match strategy"
},
"uriAdvancedOption": {
- "message": "Advanced options",
+ "message": "Erweiterte Optionen",
"description": "Advanced option placeholder for uri option component"
},
"confirmContinueToBrowserSettingsTitle": {
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ kopieren",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/hu/messages.json b/apps/browser/src/_locales/hu/messages.json
index 228f7ef8c09..b77d613da51 100644
--- a/apps/browser/src/_locales/hu/messages.json
+++ b/apps/browser/src/_locales/hu/messages.json
@@ -1830,7 +1830,7 @@
"message": "Biztonsági Kód"
},
"cardNumber": {
- "message": "card number"
+ "message": "kártya szám"
},
"ex": {
"message": "példa:"
@@ -3464,7 +3464,7 @@
"message": "A kérés elküldésre került."
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "A bejelentkezési kérelem jóváhagyásra került: $EMAIL$ - $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Megtagadásra került egy bejelentkezési kísérletet egy másik eszközről. Ha valóban mi voltunk, próbáljunk meg újra bejelentkezni az eszközzel."
},
"device": {
- "message": "Device"
+ "message": "Eszköz"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Bejelentkezési állapot"
},
"masterPasswordChanged": {
"message": "A mesterjelszó mentésre került."
@@ -3582,28 +3582,28 @@
"message": "Emlékezés az eszközre, hogy zökkenőmentes legyen a jövőbeni bejelentkezés"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Eszközök kezelése"
},
"currentSession": {
- "message": "Current session"
+ "message": "Jelenlegi munkamenet"
},
"mobile": {
- "message": "Mobile",
+ "message": "Mobil",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Kiterjesztés",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Asztali",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Webes széf"
},
"webApp": {
- "message": "Web app"
+ "message": "Webalkalmazás"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Függőben lévő kérelem"
},
"firstLogin": {
- "message": "First login"
+ "message": "Első bejelentkezés"
},
"trusted": {
- "message": "Trusted"
+ "message": "Megbízható"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Jóváhagyást igényel"
},
"devices": {
- "message": "Devices"
+ "message": "Eszközök"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Bejelentkezési kísérlet $EMAIL$ segítségével",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Hozzáférés megerősítése"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Hozzáférés megtagadása"
},
"time": {
- "message": "Time"
+ "message": "Időpont"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Eszköz típus"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Bejelentkezés kérés"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "A kérés a továbbiakban már nem érvényes."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "A fiókhoz próbálunk hozzáférni?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "A bejelelentketés $EMAIL$ email címmel megerősítésre került $DEVICE$ eszközön.",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Megtagadásra került egy bejelentkezési kísérletet egy másik eszközről. Ha valóban mi voltunk, próbáljunk meg újra bejelentkezni az eszközzel."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "A bejelentkezési kérés már lejárt."
},
"justNow": {
- "message": "Just now"
+ "message": "Éppen most"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "Kérve $MINUTES$ perccel ezelőtt",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "$FIELD$, $CIPHERNAME$ másolása",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/lv/messages.json b/apps/browser/src/_locales/lv/messages.json
index 9763801b773..ba43b1e5f44 100644
--- a/apps/browser/src/_locales/lv/messages.json
+++ b/apps/browser/src/_locales/lv/messages.json
@@ -1830,7 +1830,7 @@
"message": "Drošības kods"
},
"cardNumber": {
- "message": "card number"
+ "message": "kartes numurs"
},
"ex": {
"message": "piem."
@@ -3464,7 +3464,7 @@
"message": "Pieprasījums nosūtīts"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "$EMAIL$ pieteikšanās pieprasījums apstiprināts $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Tu noraidīji pieteikšanās mēģinājumu no citas ierīces. Ja tas biji Tu, mēģini pieteikties no ierīces vēlreiz!"
},
"device": {
- "message": "Device"
+ "message": "Ierīce"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Pieteikšanās stāvoklis"
},
"masterPasswordChanged": {
"message": "Galvenā parole saglabāta"
@@ -3582,28 +3582,28 @@
"message": "Atcerēties šo ierīci, lai nākotnes pieteikšanos padarītu plūdenāku"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Pārvaldīt ierīces"
},
"currentSession": {
- "message": "Current session"
+ "message": "Pašreizējā sesija"
},
"mobile": {
- "message": "Mobile",
+ "message": "Tālrunis",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Paplašinājums",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Darbvirsma",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Tīmekļa glabātava"
},
"webApp": {
- "message": "Web app"
+ "message": "Tīmekļa lietotne"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Pieprasījums gaida uz apstrādi"
},
"firstLogin": {
- "message": "First login"
+ "message": "Pirmā pieteikšanās"
},
"trusted": {
- "message": "Trusted"
+ "message": "Uzticama"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Nepieciešams apstiprinājums"
},
"devices": {
- "message": "Devices"
+ "message": "Ierīces"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "$EMAIL$ piekļuves mēģinājums",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Apstiprināt piekļuvi"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Noraidīt piekļuvi"
},
"time": {
- "message": "Time"
+ "message": "Laiks"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Ierīces veids"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Pieteikšanās pieprasījums"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Šis pieprasījums vairs nav derīgs."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Vai mēģini piekļūt savam kontam?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "$EMAIL$ pieteikšanās apstiprināta ierīcē $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Tu noraidīji pieteikšanās mēģinājumu no citas ierīces. Ja tas tiešām biji Tu, mēģini pieteikties no ierīces vēlreiz!"
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Pieteikšanās pieprasījuma derīgums jau ir beidzies."
},
"justNow": {
- "message": "Just now"
+ "message": "Tikko"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "Pieprasīts pirms $MINUTES$ minūtēm",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Ievietot starpliktuvē $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/nl/messages.json b/apps/browser/src/_locales/nl/messages.json
index b67df127da0..b5220861652 100644
--- a/apps/browser/src/_locales/nl/messages.json
+++ b/apps/browser/src/_locales/nl/messages.json
@@ -3464,7 +3464,7 @@
"message": "Verzoek verzonden"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Inloggen voor $EMAIL$ goedgekeurd op $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,7 +3477,7 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Je hebt een inlogpoging vanaf een ander apparaat geweigerd. Als je dit toch echt zelf was, probeer dan opnieuw in te loggen met het apparaat."
},
"device": {
"message": "Apparaat"
@@ -3582,17 +3582,17 @@
"message": "Onthoud dit apparaat om in het vervolg naadloos in te loggen"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Apparaten beheren"
},
"currentSession": {
- "message": "Current session"
+ "message": "Huidige sessie"
},
"mobile": {
- "message": "Mobile",
+ "message": "Mobiel",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Extensie",
"description": "Browser extension/addon"
},
"desktop": {
@@ -3600,10 +3600,10 @@
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Webkluis"
},
"webApp": {
- "message": "Web app"
+ "message": "Web-app"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Verzoek in behandeling"
},
"firstLogin": {
- "message": "First login"
+ "message": "Eerst inloggen"
},
"trusted": {
- "message": "Trusted"
+ "message": "Vertrouwd"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Heeft goedkeuring nodig"
},
"devices": {
- "message": "Devices"
+ "message": "Apparaten"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Inlogpoging door $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,19 +3637,19 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Toegang bevestigen"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Toegang weigeren"
},
"time": {
- "message": "Time"
+ "message": "Tijd"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Apparaattype"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Log-inverzoek"
},
"thisRequestIsNoLongerValid": {
"message": "Dit verzoek is niet langer geldig."
@@ -3677,10 +3677,10 @@
"message": "Inlogverzoek is al verlopen."
},
"justNow": {
- "message": "Just now"
+ "message": "Zojuist"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "$MINUTES$ minuten geleden aangevraagd",
"placeholders": {
"minutes": {
"content": "$1",
diff --git a/apps/browser/src/_locales/pl/messages.json b/apps/browser/src/_locales/pl/messages.json
index 23221633916..aa8ab76d543 100644
--- a/apps/browser/src/_locales/pl/messages.json
+++ b/apps/browser/src/_locales/pl/messages.json
@@ -1761,10 +1761,10 @@
"message": "Pokaż ikony stron internetowych"
},
"faviconDesc": {
- "message": "Pokaż rozpoznawalny obraz obok danych logowania."
+ "message": "Pokaż rozpoznawalną ikonę obok danych logowania."
},
"faviconDescAlt": {
- "message": "Pokaż rozpoznawalny obraz obok danych logowania. Dotyczy wszystkich zalogowanych kont."
+ "message": "Pokaż rozpoznawalną ikonę obok danych logowania. Dotyczy wszystkich zalogowanych kont."
},
"enableBadgeCounter": {
"message": "Pokaż licznik na ikonie"
@@ -3464,7 +3464,7 @@
"message": "Prośba została wysłana"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Logowanie potwierdzone dla $EMAIL$ na $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Odrzucono próby logowania z innego urządzenia. Jeśli to naprawdę Ty, spróbuj ponownie zalogować się za pomocą urządzenia."
},
"device": {
"message": "Urządzenie"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Status zalogowania"
},
"masterPasswordChanged": {
"message": "Hasło główne zostało zapisane"
@@ -3613,7 +3613,7 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Zapytanie oczekuje"
},
"firstLogin": {
"message": "Pierwsze logowanie"
@@ -3628,7 +3628,7 @@
"message": "Urządzenia"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Próba dostępu przez $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3652,13 +3652,13 @@
"message": "Żądanie logowania"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Prośba nie jest już ważna."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Czy próbujesz uzyskać dostęp do swojego konta?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Logowanie potwierdzone dla $EMAIL$ na $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Odrzucono próby logowania z innego urządzenia. Jeśli to naprawdę Ty, spróbuj ponownie zalogować się za pomocą urządzenia."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Prośba logowania wygasła."
},
"justNow": {
"message": "Teraz"
diff --git a/apps/browser/src/_locales/pt_PT/messages.json b/apps/browser/src/_locales/pt_PT/messages.json
index b31a7797df3..1e77e1c3035 100644
--- a/apps/browser/src/_locales/pt_PT/messages.json
+++ b/apps/browser/src/_locales/pt_PT/messages.json
@@ -450,7 +450,7 @@
"message": "Gera automaticamente palavras-passe fortes e únicas para as suas credenciais."
},
"bitWebVaultApp": {
- "message": "Aplicação Web Bitwarden"
+ "message": "Aplicação web Bitwarden"
},
"importItems": {
"message": "Importar itens"
@@ -653,7 +653,7 @@
"message": "Classificar a extensão"
},
"browserNotSupportClipboard": {
- "message": "O seu navegador Web não suporta a cópia fácil da área de transferência. Em vez disso, copie manualmente."
+ "message": "O seu navegador web não suporta a cópia fácil da área de transferência. Em vez disso, copie manualmente."
},
"verifyYourIdentity": {
"message": "Verifique a sua identidade"
@@ -929,7 +929,7 @@
"message": "Torne a sua conta mais segura configurando a verificação de dois passos na aplicação Web Bitwarden."
},
"twoStepLoginConfirmationTitle": {
- "message": "Continuar para a aplicação Web?"
+ "message": "Continuar para a aplicação web?"
},
"editedFolder": {
"message": "Pasta guardada"
@@ -1584,7 +1584,7 @@
"message": "URL do servidor da API"
},
"webVaultUrl": {
- "message": "URL do servidor do cofre Web"
+ "message": "URL do servidor do cofre web"
},
"identityUrl": {
"message": "URL do servidor de identidade"
@@ -1830,7 +1830,7 @@
"message": "Código de segurança"
},
"cardNumber": {
- "message": "card number"
+ "message": "número do cartão"
},
"ex": {
"message": "ex."
@@ -3464,7 +3464,7 @@
"message": "Pedido enviado"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Pedido de início de sessão aprovado para $EMAIL$ no $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Recusou uma tentativa de início de sessão de outro dispositivo. Se foi realmente o caso, tente iniciar sessão com o dispositivo novamente."
},
"device": {
- "message": "Device"
+ "message": "Dispositivo"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Estado do início de sessão"
},
"masterPasswordChanged": {
"message": "Palavra-passe mestra guardada"
@@ -3582,28 +3582,28 @@
"message": "Memorizar este dispositivo para facilitar futuros inícios de sessão"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Gerir dispositivos"
},
"currentSession": {
- "message": "Current session"
+ "message": "Sessão atual"
},
"mobile": {
- "message": "Mobile",
+ "message": "Móvel",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Extensão",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Computador",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Cofre web"
},
"webApp": {
- "message": "Web app"
+ "message": "Aplicação web"
},
"cli": {
"message": "CLI"
@@ -3613,22 +3613,22 @@
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Pedido pendente"
},
"firstLogin": {
- "message": "First login"
+ "message": "Primeiro início de sessão"
},
"trusted": {
- "message": "Trusted"
+ "message": "Confiável"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Precisa de aprovação"
},
"devices": {
- "message": "Devices"
+ "message": "Dispositivos"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Tentativa de acesso por $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Confirmar acesso"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Recusar acesso"
},
"time": {
- "message": "Time"
+ "message": "Hora"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Tipo de dispositivo"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Pedido de início de sessão"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Este pedido já não é válido."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Está a tentar aceder à sua conta?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Início de sessão confirmado para $EMAIL$ no $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Recusou uma tentativa de início de sessão de outro dispositivo. Se foi realmente o caso, tente iniciar sessão com o dispositivo novamente."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "O pedido de início de sessão já expirou."
},
"justNow": {
- "message": "Just now"
+ "message": "Agora mesmo"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "Pedido há $MINUTES$ minutos",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Copiar $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/ru/messages.json b/apps/browser/src/_locales/ru/messages.json
index 31e331fadad..db236cbfcc8 100644
--- a/apps/browser/src/_locales/ru/messages.json
+++ b/apps/browser/src/_locales/ru/messages.json
@@ -3480,10 +3480,10 @@
"message": "Вы отклонили попытку авторизации с другого устройства. Если это были вы, попробуйте авторизоваться с этого устройства еще раз."
},
"device": {
- "message": "Device"
+ "message": "Устройство"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Статус авторизации"
},
"masterPasswordChanged": {
"message": "Мастер-пароль сохранен"
@@ -3652,13 +3652,13 @@
"message": "Запрос на вход"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Этот запрос больше не действителен."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Вы пытаетесь получить доступ к своему аккаунту?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Вход подтвержден для $EMAIL$ на $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Вы отклонили попытку авторизации с другого устройства. Если это действительно были вы, попробуйте авторизоваться с этого устройства еще раз."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Запрос на вход истек."
},
"justNow": {
"message": "Только что"
diff --git a/apps/browser/src/_locales/sk/messages.json b/apps/browser/src/_locales/sk/messages.json
index 7285399af73..e98c643edb9 100644
--- a/apps/browser/src/_locales/sk/messages.json
+++ b/apps/browser/src/_locales/sk/messages.json
@@ -3480,10 +3480,10 @@
"message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli vy, skúste sa prihlásiť pomocou zariadenia znova."
},
"device": {
- "message": "Device"
+ "message": "Zariadenie"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Stav prihlásenia"
},
"masterPasswordChanged": {
"message": "Hlavné heslo uložené"
@@ -3652,13 +3652,13 @@
"message": "Žiadosť o prihlásenie"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Táto žiadosť už nie je platná."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Snažíte sa získať prístup k svojmu účtu?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Potvrdené prihlásenie pre $EMAIL$ na $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Odmietli ste pokus o prihlásenie z iného zariadenia. Ak ste to boli naozaj vy, skúste sa prihlásiť pomocou zariadenia znova."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Platnosť žiadosti o prihlásenie už vypršala."
},
"justNow": {
"message": "Práve teraz"
diff --git a/apps/browser/src/_locales/sv/messages.json b/apps/browser/src/_locales/sv/messages.json
index 725497cc26b..cbfc3e478f5 100644
--- a/apps/browser/src/_locales/sv/messages.json
+++ b/apps/browser/src/_locales/sv/messages.json
@@ -1830,7 +1830,7 @@
"message": "Säkerhetskod"
},
"cardNumber": {
- "message": "card number"
+ "message": "kortnummer"
},
"ex": {
"message": "t. ex."
@@ -3480,10 +3480,10 @@
"message": "Du nekade ett inloggningsförsök från en annan enhet. Om det var du, försök att logga in med enheten igen."
},
"device": {
- "message": "Device"
+ "message": "Enhet"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Inloggningsstatus"
},
"masterPasswordChanged": {
"message": "Huvudlösenordet sparades"
@@ -3652,13 +3652,13 @@
"message": "Begäran om inloggning"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Denna begäran är inte längre giltig."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Försöker du komma åt ditt konto?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Inloggning bekräftad för $EMAIL$ på $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Du har avvisat ett inloggningsförsök från en annan enhet. Om det verkligen var du, försök logga in med enheten igen."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Inloggningsbegäran har redan gått ut."
},
"justNow": {
"message": "Just nu"
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Kopiera $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/vi/messages.json b/apps/browser/src/_locales/vi/messages.json
index 7aa8348c6b8..b5de1c2981c 100644
--- a/apps/browser/src/_locales/vi/messages.json
+++ b/apps/browser/src/_locales/vi/messages.json
@@ -1830,7 +1830,7 @@
"message": "Mã bảo mật"
},
"cardNumber": {
- "message": "card number"
+ "message": "số thẻ"
},
"ex": {
"message": "Ví dụ:"
@@ -3464,7 +3464,7 @@
"message": "Đã gửi yêu cầu"
},
"loginRequestApprovedForEmailOnDevice": {
- "message": "Login request approved for $EMAIL$ on $DEVICE$",
+ "message": "Đã phê duyệt yêu cầu đăng nhập cho $EMAIL$ trên $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3477,13 +3477,13 @@
}
},
"youDeniedLoginAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
+ "message": "Bạn đã từ chối một lần đăng nhập từ thiết bị khác. Nếu đó là bạn, hãy thử đăng nhập lại bằng thiết bị đó."
},
"device": {
- "message": "Device"
+ "message": "Thiết bị"
},
"loginStatus": {
- "message": "Login status"
+ "message": "Trạng thái đăng nhập"
},
"masterPasswordChanged": {
"message": "Đã lưu mật khẩu chính"
@@ -3582,53 +3582,53 @@
"message": "Nhớ thiết bị này để đăng nhập dễ dàng trong tương lai"
},
"manageDevices": {
- "message": "Manage devices"
+ "message": "Quản lý thiết bị"
},
"currentSession": {
- "message": "Current session"
+ "message": "Phiên hiện tại"
},
"mobile": {
- "message": "Mobile",
+ "message": "Di động",
"description": "Mobile app"
},
"extension": {
- "message": "Extension",
+ "message": "Tiện ích mở rộng",
"description": "Browser extension/addon"
},
"desktop": {
- "message": "Desktop",
+ "message": "Máy tính",
"description": "Desktop app"
},
"webVault": {
- "message": "Web vault"
+ "message": "Kho web"
},
"webApp": {
- "message": "Web app"
+ "message": "Ứng dụng web"
},
"cli": {
- "message": "CLI"
+ "message": "Giao diện dòng lệnh (CLI)"
},
"sdk": {
"message": "SDK",
"description": "Software Development Kit"
},
"requestPending": {
- "message": "Request pending"
+ "message": "Yêu cầu đang chờ xử lý"
},
"firstLogin": {
- "message": "First login"
+ "message": "Đăng nhập lần đầu"
},
"trusted": {
- "message": "Trusted"
+ "message": "Tin tưởng"
},
"needsApproval": {
- "message": "Needs approval"
+ "message": "Cần phê duyệt"
},
"devices": {
- "message": "Devices"
+ "message": "Thiết bị"
},
"accessAttemptBy": {
- "message": "Access attempt by $EMAIL$",
+ "message": "Cố gắng truy cập bởi $EMAIL$",
"placeholders": {
"email": {
"content": "$1",
@@ -3637,28 +3637,28 @@
}
},
"confirmAccess": {
- "message": "Confirm access"
+ "message": "Xác nhận truy cập"
},
"denyAccess": {
- "message": "Deny access"
+ "message": "Từ chối truy cập"
},
"time": {
- "message": "Time"
+ "message": "Thời gian"
},
"deviceType": {
- "message": "Device Type"
+ "message": "Loại thiết bị"
},
"loginRequest": {
- "message": "Login request"
+ "message": "Yêu cầu đăng nhập"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "Yêu cầu này không còn hiệu lực."
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "Bạn đang cố gắng truy cập tài khoản của mình?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "Đã xác nhận đăng nhập cho $EMAIL$ trên $DEVICE$",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,16 +3671,16 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "Bạn đã từ chối một lần đăng nhập từ thiết bị khác. Nếu thực sự là bạn, hãy thử đăng nhập lại bằng thiết bị đó."
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "Yêu cầu đăng nhập đã hết hạn."
},
"justNow": {
- "message": "Just now"
+ "message": "Vừa xong"
},
"requestedXMinutesAgo": {
- "message": "Requested $MINUTES$ minutes ago",
+ "message": "Đã yêu cầu $MINUTES$ phút trước",
"placeholders": {
"minutes": {
"content": "$1",
@@ -4598,7 +4598,7 @@
}
},
"copyFieldCipherName": {
- "message": "Copy $FIELD$, $CIPHERNAME$",
+ "message": "Sao chép $FIELD$, $CIPHERNAME$",
"description": "Title for a button that copies a field value to the clipboard.",
"placeholders": {
"field": {
diff --git a/apps/browser/src/_locales/zh_CN/messages.json b/apps/browser/src/_locales/zh_CN/messages.json
index 9b7d460261a..f44265425e9 100644
--- a/apps/browser/src/_locales/zh_CN/messages.json
+++ b/apps/browser/src/_locales/zh_CN/messages.json
@@ -3480,10 +3480,10 @@
"message": "You denied a login attempt from another device. If this was you, try to log in with the device again."
},
"device": {
- "message": "Device"
+ "message": "设备"
},
"loginStatus": {
- "message": "Login status"
+ "message": "登录状态"
},
"masterPasswordChanged": {
"message": "主密码已保存"
@@ -3652,13 +3652,13 @@
"message": "Login request"
},
"thisRequestIsNoLongerValid": {
- "message": "This request is no longer valid."
+ "message": "此请求已失效。"
},
"areYouTryingToAccessYourAccount": {
- "message": "Are you trying to access your account?"
+ "message": "您正在尝试访问您的账户吗?"
},
"logInConfirmedForEmailOnDevice": {
- "message": "Login confirmed for $EMAIL$ on $DEVICE$",
+ "message": "已确认 $EMAIL$ 在 $DEVICE$ 上的登录",
"placeholders": {
"email": {
"content": "$1",
@@ -3671,10 +3671,10 @@
}
},
"youDeniedALogInAttemptFromAnotherDevice": {
- "message": "You denied a login attempt from another device. If this really was you, try to log in with the device again."
+ "message": "您拒绝了另一台设备的登录尝试。如果真的是您,请尝试再次使用该设备登录。"
},
"loginRequestHasAlreadyExpired": {
- "message": "Login request has already expired."
+ "message": "登录请求已过期。"
},
"justNow": {
"message": "Just now"
From 8dc97ca1a7038a14981aa3176ae41eb835fa4022 Mon Sep 17 00:00:00 2001
From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com>
Date: Sun, 20 Jul 2025 18:53:10 -0500
Subject: [PATCH 23/54] [PM-20128] Update Claimed Domains description (#15630)
* chore: update claimed domain description width, refs PM-20128
* chore: add new message key, delete old message, update reference to new key, refs PM-20128
* chore: change width to max width for claimed domains description, refs PM-20128
---
apps/web/src/locales/en/messages.json | 4 ++--
.../domain-verification/domain-verification.component.html | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json
index 4c4a97e6404..d5ded3c75ea 100644
--- a/apps/web/src/locales/en/messages.json
+++ b/apps/web/src/locales/en/messages.json
@@ -10400,8 +10400,8 @@
"domainStatusUnderVerification": {
"message": "Under verification"
},
- "claimedDomainsDesc": {
- "message": "Claim a domain to own all member accounts whose email address matches the domain. Members will be able to skip the SSO identifier when logging in. Administrators will also be able to delete member accounts."
+ "claimedDomainsDescription": {
+ "message": "Claim a domain to own member accounts. The SSO identifier page will be skipped during login for members with claimed domains and administrators will be able to delete claimed accounts."
},
"invalidDomainNameClaimMessage": {
"message": "Input is not a valid format. Format: mydomain.com. Subdomains require separate entries to be claimed."
diff --git a/bitwarden_license/bit-web/src/app/admin-console/organizations/manage/domain-verification/domain-verification.component.html b/bitwarden_license/bit-web/src/app/admin-console/organizations/manage/domain-verification/domain-verification.component.html
index 4b8d916f776..20afe902b73 100644
--- a/bitwarden_license/bit-web/src/app/admin-console/organizations/manage/domain-verification/domain-verification.component.html
+++ b/bitwarden_license/bit-web/src/app/admin-console/organizations/manage/domain-verification/domain-verification.component.html
@@ -4,8 +4,8 @@
-