text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
import { Component } from "@angular/core";
import { PolicyType } from "jslib-common/enums/policyType";
import { BasePolicy, BasePolicyComponent } from "./base-policy.component";
export class DisableSendPolicy extends BasePolicy {
name = "disableSend";
description = "disableSendPolicyDesc";
type = PolicyType.DisableSend;
component = DisableSendPolicyComponent;
}
@Component({
selector: "policy-disable-send",
templateUrl: "disable-send.component.html",
})
export class DisableSendPolicyComponent extends BasePolicyComponent {}
| bitwarden/web/src/app/organizations/policies/disable-send.component.ts/0 | {
"file_path": "bitwarden/web/src/app/organizations/policies/disable-send.component.ts",
"repo_id": "bitwarden",
"token_count": 146
} | 145 |
import { Component } from "@angular/core";
import { PolicyType } from "jslib-common/enums/policyType";
import { BasePolicy, BasePolicyComponent } from "./base-policy.component";
export class TwoFactorAuthenticationPolicy extends BasePolicy {
name = "twoStepLogin";
description = "twoStepLoginPolicyDesc";
type = PolicyType.TwoFactorAuthentication;
component = TwoFactorAuthenticationPolicyComponent;
}
@Component({
selector: "policy-two-factor-authentication",
templateUrl: "two-factor-authentication.component.html",
})
export class TwoFactorAuthenticationPolicyComponent extends BasePolicyComponent {}
| bitwarden/web/src/app/organizations/policies/two-factor-authentication.component.ts/0 | {
"file_path": "bitwarden/web/src/app/organizations/policies/two-factor-authentication.component.ts",
"repo_id": "bitwarden",
"token_count": 162
} | 146 |
<div class="page-header d-flex">
<h1>
{{ "billing" | i18n }}
</h1>
<button
(click)="load()"
class="btn btn-sm btn-outline-primary ml-auto"
*ngIf="firstLoaded"
[disabled]="loading"
>
<i class="bwi bwi-refresh bwi-fw" [ngClass]="{ 'bwi-spin': loading }" aria-hidden="true"></i>
{{ "refresh" | i18n }}
</button>
</div>
<ng-container *ngIf="!firstLoaded && loading">
<i
class="bwi bwi-spinner bwi-spin text-muted"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "loading" | i18n }}</span>
</ng-container>
<ng-container *ngIf="billing">
<h2>{{ (isCreditBalance ? "accountCredit" : "accountBalance") | i18n }}</h2>
<p class="text-lg">
<strong>{{ creditOrBalance | currency: "$" }}</strong>
</p>
<p>{{ "creditAppliedDesc" | i18n }}</p>
<button
type="button"
class="btn btn-outline-secondary"
(click)="addCredit()"
*ngIf="!showAddCredit"
>
{{ "addCredit" | i18n }}
</button>
<app-add-credit
[organizationId]="organizationId"
(onAdded)="closeAddCredit(true)"
(onCanceled)="closeAddCredit(false)"
*ngIf="showAddCredit"
>
</app-add-credit>
<h2 class="spaced-header">{{ "paymentMethod" | i18n }}</h2>
<p *ngIf="!paymentSource">{{ "noPaymentMethod" | i18n }}</p>
<ng-container *ngIf="paymentSource">
<app-callout
type="warning"
title="{{ 'verifyBankAccount' | i18n }}"
*ngIf="
paymentSource.type === paymentMethodType.BankAccount && paymentSource.needsVerification
"
>
<p>{{ "verifyBankAccountDesc" | i18n }} {{ "verifyBankAccountFailureWarning" | i18n }}</p>
<form
#verifyForm
class="form-inline"
(ngSubmit)="verifyBank()"
[appApiAction]="verifyBankPromise"
ngNativeValidate
>
<label class="sr-only" for="verifyAmount1">{{ "amount" | i18n: "1" }}</label>
<div class="input-group mr-2">
<div class="input-group-prepend">
<div class="input-group-text">$0.</div>
</div>
<input
type="number"
class="form-control"
id="verifyAmount1"
placeholder="xx"
name="Amount1"
[(ngModel)]="verifyAmount1"
min="1"
max="99"
step="1"
required
/>
</div>
<label class="sr-only" for="verifyAmount2">{{ "amount" | i18n: "2" }}</label>
<div class="input-group mr-2">
<div class="input-group-prepend">
<div class="input-group-text">$0.</div>
</div>
<input
type="number"
class="form-control"
id="verifyAmount2"
placeholder="xx"
name="Amount2"
[(ngModel)]="verifyAmount2"
min="1"
max="99"
step="1"
required
/>
</div>
<button
type="submit"
class="btn btn-outline-primary btn-submit"
[disabled]="verifyForm.loading"
>
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "verifyBankAccount" | i18n }}</span>
</button>
</form>
</app-callout>
<p>
<i
class="bwi bwi-fw"
[ngClass]="{
'bwi-credit-card': paymentSource.type === paymentMethodType.Card,
'bwi-bank': paymentSource.type === paymentMethodType.BankAccount,
'bwi-money': paymentSource.type === paymentMethodType.Check,
'bwi-paypal text-primary': paymentSource.type === paymentMethodType.PayPal,
'bwi-apple text-muted': paymentSource.type === paymentMethodType.AppleInApp,
'bwi-google text-muted': paymentSource.type === paymentMethodType.GoogleInApp
}"
></i>
<span *ngIf="paymentSourceInApp">{{ "inAppPurchase" | i18n }}</span>
{{ paymentSource.description }}
</p>
</ng-container>
<button
type="button"
class="btn btn-outline-secondary"
(click)="changePayment()"
*ngIf="!showAdjustPayment"
>
{{ (paymentSource ? "changePaymentMethod" : "addPaymentMethod") | i18n }}
</button>
<app-adjust-payment
[currentType]="paymentSource != null ? paymentSource.type : null"
[organizationId]="organizationId"
(onAdjusted)="closePayment(true)"
(onCanceled)="closePayment(false)"
*ngIf="showAdjustPayment"
>
</app-adjust-payment>
<h2 class="spaced-header">{{ "invoices" | i18n }}</h2>
<p *ngIf="!invoices || !invoices.length">{{ "noInvoices" | i18n }}</p>
<table class="table mb-2" *ngIf="invoices && invoices.length">
<tbody>
<tr *ngFor="let i of invoices">
<td>{{ i.date | date: "mediumDate" }}</td>
<td>
<a
href="{{ i.pdfUrl }}"
target="_blank"
rel="noopener"
class="mr-2"
appA11yTitle="{{ 'downloadInvoice' | i18n }}"
>
<i class="bwi bwi-file-pdf" aria-hidden="true"></i
></a>
<a href="{{ i.url }}" target="_blank" rel="noopener" title="{{ 'viewInvoice' | i18n }}">
{{ "invoiceNumber" | i18n: i.number }}</a
>
</td>
<td>{{ i.amount | currency: "$" }}</td>
<td>
<span *ngIf="i.paid">
<i class="bwi bwi-check text-success" aria-hidden="true"></i>
{{ "paid" | i18n }}
</span>
<span *ngIf="!i.paid">
<i class="bwi bwi-exclamation-circle text-muted" aria-hidden="true"></i>
{{ "unpaid" | i18n }}
</span>
</td>
</tr>
</tbody>
</table>
<h2 class="spaced-header">{{ "transactions" | i18n }}</h2>
<p *ngIf="!transactions || !transactions.length">{{ "noTransactions" | i18n }}</p>
<table class="table mb-2" *ngIf="transactions && transactions.length">
<tbody>
<tr *ngFor="let t of transactions">
<td>{{ t.createdDate | date: "mediumDate" }}</td>
<td>
<span *ngIf="t.type === transactionType.Charge || t.type === transactionType.Credit">
{{ "chargeNoun" | i18n }}
</span>
<span *ngIf="t.type === transactionType.Refund">{{ "refundNoun" | i18n }}</span>
</td>
<td>
<i
class="bwi bwi-fw"
*ngIf="t.paymentMethodType"
aria-hidden="true"
[ngClass]="{
'bwi-credit-card': t.paymentMethodType === paymentMethodType.Card,
'bwi-bank':
t.paymentMethodType === paymentMethodType.BankAccount ||
t.paymentMethodType === paymentMethodType.WireTransfer,
'bwi-bitcoin text-warning': t.paymentMethodType === paymentMethodType.BitPay,
'bwi-paypal text-primary': t.paymentMethodType === paymentMethodType.PayPal
}"
></i>
{{ t.details }}
</td>
<td
[ngClass]="{ 'text-strike': t.refunded }"
title="{{ (t.refunded ? 'refunded' : '') | i18n }}"
>
{{ t.amount | currency: "$" }}
</td>
</tr>
</tbody>
</table>
<small class="text-muted">* {{ "chargesStatement" | i18n: "BITWARDEN" }}</small>
</ng-container>
| bitwarden/web/src/app/organizations/settings/organization-billing.component.html/0 | {
"file_path": "bitwarden/web/src/app/organizations/settings/organization-billing.component.html",
"repo_id": "bitwarden",
"token_count": 3580
} | 147 |
<div class="container page-content">
<ng-container *ngIf="loading">
<i
class="bwi bwi-spinner bwi-spin text-muted"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "loading" | i18n }}</span>
</ng-container>
<ng-container *ngIf="!loading">
<div class="row">
<div class="col-3">
<div class="card mb-4" *ngIf="organization.canAccessImportExport">
<div class="card-header">{{ "tools" | i18n }}</div>
<div class="list-group list-group-flush">
<a routerLink="import" class="list-group-item" routerLinkActive="active">
{{ "importData" | i18n }}
</a>
<a routerLink="export" class="list-group-item" routerLinkActive="active">
{{ "exportVault" | i18n }}
</a>
</div>
</div>
<div class="card" *ngIf="organization.canAccessReports">
<div class="card-header d-flex">
{{ "reports" | i18n }}
<div class="ml-auto">
<a
href="#"
appStopClick
class="badge badge-primary"
*ngIf="!accessReports"
(click)="upgradeOrganization()"
>
{{ "upgrade" | i18n }}
</a>
</div>
</div>
<div class="list-group list-group-flush">
<a
routerLink="exposed-passwords-report"
class="list-group-item"
routerLinkActive="active"
>
{{ "exposedPasswordsReport" | i18n }}
</a>
<a
routerLink="reused-passwords-report"
class="list-group-item"
routerLinkActive="active"
>
{{ "reusedPasswordsReport" | i18n }}
</a>
<a routerLink="weak-passwords-report" class="list-group-item" routerLinkActive="active">
{{ "weakPasswordsReport" | i18n }}
</a>
<a
routerLink="unsecured-websites-report"
class="list-group-item"
routerLinkActive="active"
>
{{ "unsecuredWebsitesReport" | i18n }}
</a>
<a
routerLink="inactive-two-factor-report"
class="list-group-item"
routerLinkActive="active"
>
{{ "inactive2faReport" | i18n }}
</a>
</div>
</div>
</div>
<div class="col-9">
<router-outlet></router-outlet>
</div>
</div>
</ng-container>
</div>
| bitwarden/web/src/app/organizations/tools/tools.component.html/0 | {
"file_path": "bitwarden/web/src/app/organizations/tools/tools.component.html",
"repo_id": "bitwarden",
"token_count": 1458
} | 148 |
<div class="page-header">
<h1>{{ "exposedPasswordsReport" | i18n }}</h1>
</div>
<p>{{ "exposedPasswordsReportDesc" | i18n }}</p>
<button
bitButton
buttonType="primary"
type="button"
class="btn-submit"
[disabled]="loading"
(click)="load()"
>
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "checkExposedPasswords" | i18n }}</span>
</button>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{ 'goodNews' | i18n }}" *ngIf="!ciphers.length">
{{ "noExposedPasswords" | i18n }}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{ 'exposedPasswordsFound' | i18n }}" [useAlertRole]="true">
{{ "exposedPasswordsFoundDesc" | i18n: (ciphers.length | number) }}
</app-callout>
<table class="table table-hover table-list table-ciphers">
<tbody>
<tr *ngFor="let c of ciphers">
<td class="table-list-icon">
<app-vault-icon [cipher]="c"></app-vault-icon>
</td>
<td class="reduced-lh wrap">
<ng-container *ngIf="!organization || canManageCipher(c); else cantManage">
<a href="#" appStopClick (click)="selectCipher(c)" title="{{ 'editItem' | i18n }}">{{
c.name
}}</a>
</ng-container>
<ng-template #cantManage>
<span>{{ c.name }}</span>
</ng-template>
<ng-container *ngIf="!organization && c.organizationId">
<i
class="bwi bwi-collection"
appStopProp
title="{{ 'shared' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "shared" | i18n }}</span>
</ng-container>
<ng-container *ngIf="c.hasAttachments">
<i
class="bwi bwi-paperclip"
appStopProp
title="{{ 'attachments' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "attachments" | i18n }}</span>
</ng-container>
<br />
<small>{{ c.subTitle }}</small>
</td>
<td class="text-right">
<span class="badge badge-warning">
{{ "exposedXTimes" | i18n: (exposedPasswordMap.get(c.id) | number) }}
</span>
</td>
</tr>
</tbody>
</table>
</ng-container>
</div>
<ng-template #cipherAddEdit></ng-template>
| bitwarden/web/src/app/reports/exposed-passwords-report.component.html/0 | {
"file_path": "bitwarden/web/src/app/reports/exposed-passwords-report.component.html",
"repo_id": "bitwarden",
"token_count": 1313
} | 149 |
import { Component, OnInit } from "@angular/core";
import { ModalService } from "jslib-angular/services/modal.service";
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { MessagingService } from "jslib-common/abstractions/messaging.service";
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
import { PasswordRepromptService } from "jslib-common/abstractions/passwordReprompt.service";
import { StateService } from "jslib-common/abstractions/state.service";
import { CipherType } from "jslib-common/enums/cipherType";
import { CipherView } from "jslib-common/models/view/cipherView";
import { CipherReportComponent } from "./cipher-report.component";
@Component({
selector: "app-weak-passwords-report",
templateUrl: "weak-passwords-report.component.html",
})
export class WeakPasswordsReportComponent extends CipherReportComponent implements OnInit {
passwordStrengthMap = new Map<string, [string, string]>();
private passwordStrengthCache = new Map<string, number>();
constructor(
protected cipherService: CipherService,
protected passwordGenerationService: PasswordGenerationService,
modalService: ModalService,
messagingService: MessagingService,
stateService: StateService,
passwordRepromptService: PasswordRepromptService
) {
super(modalService, messagingService, true, stateService, passwordRepromptService);
}
async ngOnInit() {
if (await this.checkAccess()) {
await super.load();
}
}
async setCiphers() {
const allCiphers = await this.getAllCiphers();
const weakPasswordCiphers: CipherView[] = [];
const isUserNameNotEmpty = (c: CipherView): boolean => {
return c.login.username != null && c.login.username.trim() !== "";
};
const getCacheKey = (c: CipherView): string => {
return c.login.password + "_____" + (isUserNameNotEmpty(c) ? c.login.username : "");
};
allCiphers.forEach((c) => {
if (
c.type !== CipherType.Login ||
c.login.password == null ||
c.login.password === "" ||
c.isDeleted
) {
return;
}
const hasUserName = isUserNameNotEmpty(c);
const cacheKey = getCacheKey(c);
if (!this.passwordStrengthCache.has(cacheKey)) {
let userInput: string[] = [];
if (hasUserName) {
const atPosition = c.login.username.indexOf("@");
if (atPosition > -1) {
userInput = userInput
.concat(
c.login.username
.substr(0, atPosition)
.trim()
.toLowerCase()
.split(/[^A-Za-z0-9]/)
)
.filter((i) => i.length >= 3);
} else {
userInput = c.login.username
.trim()
.toLowerCase()
.split(/[^A-Za-z0-9]/)
.filter((i) => i.length >= 3);
}
}
const result = this.passwordGenerationService.passwordStrength(
c.login.password,
userInput.length > 0 ? userInput : null
);
this.passwordStrengthCache.set(cacheKey, result.score);
}
const score = this.passwordStrengthCache.get(cacheKey);
if (score != null && score <= 2) {
this.passwordStrengthMap.set(c.id, this.scoreKey(score));
weakPasswordCiphers.push(c);
}
});
weakPasswordCiphers.sort((a, b) => {
return (
this.passwordStrengthCache.get(getCacheKey(a)) -
this.passwordStrengthCache.get(getCacheKey(b))
);
});
this.ciphers = weakPasswordCiphers;
}
protected getAllCiphers(): Promise<CipherView[]> {
return this.cipherService.getAllDecrypted();
}
protected canManageCipher(c: CipherView): boolean {
// this will only ever be false from the org view;
return true;
}
private scoreKey(score: number): [string, string] {
switch (score) {
case 4:
return ["strong", "success"];
case 3:
return ["good", "primary"];
case 2:
return ["weak", "warning"];
default:
return ["veryWeak", "danger"];
}
}
}
| bitwarden/web/src/app/reports/weak-passwords-report.component.ts/0 | {
"file_path": "bitwarden/web/src/app/reports/weak-passwords-report.component.ts",
"repo_id": "bitwarden",
"token_count": 1707
} | 150 |
import { Component, ViewChild, ViewContainerRef } from "@angular/core";
import { ModalService } from "jslib-angular/services/modal.service";
import { ApiService } from "jslib-common/abstractions/api.service";
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
import { StateService } from "jslib-common/abstractions/state.service";
import { DeauthorizeSessionsComponent } from "./deauthorize-sessions.component";
import { DeleteAccountComponent } from "./delete-account.component";
import { PurgeVaultComponent } from "./purge-vault.component";
@Component({
selector: "app-account",
templateUrl: "account.component.html",
})
export class AccountComponent {
@ViewChild("deauthorizeSessionsTemplate", { read: ViewContainerRef, static: true })
deauthModalRef: ViewContainerRef;
@ViewChild("purgeVaultTemplate", { read: ViewContainerRef, static: true })
purgeModalRef: ViewContainerRef;
@ViewChild("deleteAccountTemplate", { read: ViewContainerRef, static: true })
deleteModalRef: ViewContainerRef;
showChangeEmail = true;
constructor(
private modalService: ModalService,
private apiService: ApiService,
private keyConnectorService: KeyConnectorService,
private stateService: StateService
) {}
async ngOnInit() {
this.showChangeEmail = !(await this.keyConnectorService.getUsesKeyConnector());
}
async deauthorizeSessions() {
await this.modalService.openViewRef(DeauthorizeSessionsComponent, this.deauthModalRef);
}
async purgeVault() {
await this.modalService.openViewRef(PurgeVaultComponent, this.purgeModalRef);
}
async deleteAccount() {
await this.modalService.openViewRef(DeleteAccountComponent, this.deleteModalRef);
}
}
| bitwarden/web/src/app/settings/account.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/account.component.ts",
"repo_id": "bitwarden",
"token_count": 527
} | 151 |
import { Component } from "@angular/core";
import { Router } from "@angular/router";
import { ChangePasswordComponent as BaseChangePasswordComponent } from "jslib-angular/components/change-password.component";
import { ApiService } from "jslib-common/abstractions/api.service";
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { CryptoService } from "jslib-common/abstractions/crypto.service";
import { FolderService } from "jslib-common/abstractions/folder.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
import { MessagingService } from "jslib-common/abstractions/messaging.service";
import { OrganizationService } from "jslib-common/abstractions/organization.service";
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { PolicyService } from "jslib-common/abstractions/policy.service";
import { SendService } from "jslib-common/abstractions/send.service";
import { StateService } from "jslib-common/abstractions/state.service";
import { SyncService } from "jslib-common/abstractions/sync.service";
import { EmergencyAccessStatusType } from "jslib-common/enums/emergencyAccessStatusType";
import { Utils } from "jslib-common/misc/utils";
import { EncString } from "jslib-common/models/domain/encString";
import { SymmetricCryptoKey } from "jslib-common/models/domain/symmetricCryptoKey";
import { CipherWithIdRequest } from "jslib-common/models/request/cipherWithIdRequest";
import { EmergencyAccessUpdateRequest } from "jslib-common/models/request/emergencyAccessUpdateRequest";
import { FolderWithIdRequest } from "jslib-common/models/request/folderWithIdRequest";
import { OrganizationUserResetPasswordEnrollmentRequest } from "jslib-common/models/request/organizationUserResetPasswordEnrollmentRequest";
import { PasswordRequest } from "jslib-common/models/request/passwordRequest";
import { SendWithIdRequest } from "jslib-common/models/request/sendWithIdRequest";
import { UpdateKeyRequest } from "jslib-common/models/request/updateKeyRequest";
@Component({
selector: "app-change-password",
templateUrl: "change-password.component.html",
})
export class ChangePasswordComponent extends BaseChangePasswordComponent {
rotateEncKey = false;
currentMasterPassword: string;
constructor(
i18nService: I18nService,
cryptoService: CryptoService,
messagingService: MessagingService,
stateService: StateService,
passwordGenerationService: PasswordGenerationService,
platformUtilsService: PlatformUtilsService,
policyService: PolicyService,
private folderService: FolderService,
private cipherService: CipherService,
private syncService: SyncService,
private apiService: ApiService,
private sendService: SendService,
private organizationService: OrganizationService,
private keyConnectorService: KeyConnectorService,
private router: Router
) {
super(
i18nService,
cryptoService,
messagingService,
passwordGenerationService,
platformUtilsService,
policyService,
stateService
);
}
async ngOnInit() {
if (await this.keyConnectorService.getUsesKeyConnector()) {
this.router.navigate(["/settings/security/two-factor"]);
}
await super.ngOnInit();
}
async rotateEncKeyClicked() {
if (this.rotateEncKey) {
const ciphers = await this.cipherService.getAllDecrypted();
let hasOldAttachments = false;
if (ciphers != null) {
for (let i = 0; i < ciphers.length; i++) {
if (ciphers[i].organizationId == null && ciphers[i].hasOldAttachments) {
hasOldAttachments = true;
break;
}
}
}
if (hasOldAttachments) {
const learnMore = await this.platformUtilsService.showDialog(
this.i18nService.t("oldAttachmentsNeedFixDesc"),
null,
this.i18nService.t("learnMore"),
this.i18nService.t("close"),
"warning"
);
if (learnMore) {
this.platformUtilsService.launchUri(
"https://bitwarden.com/help/attachments/#add-storage-space"
);
}
this.rotateEncKey = false;
return;
}
const result = await this.platformUtilsService.showDialog(
this.i18nService.t("updateEncryptionKeyWarning") +
" " +
this.i18nService.t("updateEncryptionKeyExportWarning") +
" " +
this.i18nService.t("rotateEncKeyConfirmation"),
this.i18nService.t("rotateEncKeyTitle"),
this.i18nService.t("yes"),
this.i18nService.t("no"),
"warning"
);
if (!result) {
this.rotateEncKey = false;
}
}
}
async submit() {
const hasEncKey = await this.cryptoService.hasEncKey();
if (!hasEncKey) {
this.platformUtilsService.showToast("error", null, this.i18nService.t("updateKey"));
return;
}
await super.submit();
}
async setupSubmitActions() {
if (this.currentMasterPassword == null || this.currentMasterPassword === "") {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("masterPassRequired")
);
return false;
}
if (this.rotateEncKey) {
await this.syncService.fullSync(true);
}
return super.setupSubmitActions();
}
async performSubmitActions(
newMasterPasswordHash: string,
newKey: SymmetricCryptoKey,
newEncKey: [SymmetricCryptoKey, EncString]
) {
const request = new PasswordRequest();
request.masterPasswordHash = await this.cryptoService.hashPassword(
this.currentMasterPassword,
null
);
request.newMasterPasswordHash = newMasterPasswordHash;
request.key = newEncKey[1].encryptedString;
try {
if (this.rotateEncKey) {
this.formPromise = this.apiService.postPassword(request).then(() => {
return this.updateKey(newKey, request.newMasterPasswordHash);
});
} else {
this.formPromise = this.apiService.postPassword(request);
}
await this.formPromise;
this.platformUtilsService.showToast(
"success",
this.i18nService.t("masterPasswordChanged"),
this.i18nService.t("logBackIn")
);
this.messagingService.send("logout");
} catch {
this.platformUtilsService.showToast("error", null, this.i18nService.t("errorOccurred"));
}
}
private async updateKey(key: SymmetricCryptoKey, masterPasswordHash: string) {
const encKey = await this.cryptoService.makeEncKey(key);
const privateKey = await this.cryptoService.getPrivateKey();
let encPrivateKey: EncString = null;
if (privateKey != null) {
encPrivateKey = await this.cryptoService.encrypt(privateKey, encKey[0]);
}
const request = new UpdateKeyRequest();
request.privateKey = encPrivateKey != null ? encPrivateKey.encryptedString : null;
request.key = encKey[1].encryptedString;
request.masterPasswordHash = masterPasswordHash;
const folders = await this.folderService.getAllDecrypted();
for (let i = 0; i < folders.length; i++) {
if (folders[i].id == null) {
continue;
}
const folder = await this.folderService.encrypt(folders[i], encKey[0]);
request.folders.push(new FolderWithIdRequest(folder));
}
const ciphers = await this.cipherService.getAllDecrypted();
for (let i = 0; i < ciphers.length; i++) {
if (ciphers[i].organizationId != null) {
continue;
}
const cipher = await this.cipherService.encrypt(ciphers[i], encKey[0]);
request.ciphers.push(new CipherWithIdRequest(cipher));
}
const sends = await this.sendService.getAll();
await Promise.all(
sends.map(async (send) => {
const cryptoKey = await this.cryptoService.decryptToBytes(send.key, null);
send.key = (await this.cryptoService.encrypt(cryptoKey, encKey[0])) ?? send.key;
request.sends.push(new SendWithIdRequest(send));
})
);
await this.apiService.postAccountKey(request);
await this.updateEmergencyAccesses(encKey[0]);
await this.updateAllResetPasswordKeys(encKey[0]);
}
private async updateEmergencyAccesses(encKey: SymmetricCryptoKey) {
const emergencyAccess = await this.apiService.getEmergencyAccessTrusted();
const allowedStatuses = [
EmergencyAccessStatusType.Confirmed,
EmergencyAccessStatusType.RecoveryInitiated,
EmergencyAccessStatusType.RecoveryApproved,
];
const filteredAccesses = emergencyAccess.data.filter((d) => allowedStatuses.includes(d.status));
for (const details of filteredAccesses) {
const publicKeyResponse = await this.apiService.getUserPublicKey(details.granteeId);
const publicKey = Utils.fromB64ToArray(publicKeyResponse.publicKey);
const encryptedKey = await this.cryptoService.rsaEncrypt(encKey.key, publicKey.buffer);
const updateRequest = new EmergencyAccessUpdateRequest();
updateRequest.type = details.type;
updateRequest.waitTimeDays = details.waitTimeDays;
updateRequest.keyEncrypted = encryptedKey.encryptedString;
await this.apiService.putEmergencyAccess(details.id, updateRequest);
}
}
private async updateAllResetPasswordKeys(encKey: SymmetricCryptoKey) {
const orgs = await this.organizationService.getAll();
for (const org of orgs) {
// If not already enrolled, skip
if (!org.resetPasswordEnrolled) {
continue;
}
// Retrieve public key
const response = await this.apiService.getOrganizationKeys(org.id);
const publicKey = Utils.fromB64ToArray(response?.publicKey);
// Re-enroll - encrpyt user's encKey.key with organization public key
const encryptedKey = await this.cryptoService.rsaEncrypt(encKey.key, publicKey.buffer);
// Create/Execute request
const request = new OrganizationUserResetPasswordEnrollmentRequest();
request.resetPasswordKey = encryptedKey.encryptedString;
await this.apiService.putOrganizationUserResetPasswordEnrollment(org.id, org.userId, request);
}
}
}
| bitwarden/web/src/app/settings/change-password.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/change-password.component.ts",
"repo_id": "bitwarden",
"token_count": 3746
} | 152 |
<div class="page-header">
<h1>{{ "vault" | i18n }}</h1>
</div>
<div class="mt-4">
<ng-container *ngIf="ciphers.length">
<table class="table table-hover table-list table-ciphers">
<tbody>
<tr *ngFor="let c of ciphers">
<td class="table-list-icon">
<app-vault-icon [cipher]="c"></app-vault-icon>
</td>
<td class="reduced-lh wrap">
<a href="#" appStopClick (click)="selectCipher(c)" title="{{ 'editItem' | i18n }}">{{
c.name
}}</a>
<ng-container *ngIf="c.organizationId">
<i
class="bwi bwi-collection"
appStopProp
title="{{ 'shared' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "shared" | i18n }}</span>
</ng-container>
<ng-container *ngIf="c.hasAttachments">
<i
class="bwi bwi-paperclip"
appStopProp
title="{{ 'attachments' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "attachments" | i18n }}</span>
</ng-container>
<br />
<small>{{ c.subTitle }}</small>
</td>
<td class="table-list-options">
<div class="dropdown" appListDropdown *ngIf="c.hasAttachments">
<button
class="btn btn-outline-secondary dropdown-toggle"
type="button"
id="dropdownMenuButton"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
appA11yTitle="{{ 'options' | i18n }}"
>
<i class="bwi bwi-cog bwi-lg" aria-hidden="true"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="#" appStopClick (click)="viewAttachments(c)">
<i class="bwi bwi-fw bwi-paperclip" aria-hidden="true"></i>
{{ "attachments" | i18n }}
</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</ng-container>
<ng-container *ngIf="!loaded">
<i
class="bwi bwi-spinner bwi-spin text-muted"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "loading" | i18n }}</span>
</ng-container>
</div>
<ng-template #cipherAddEdit></ng-template>
<ng-template #attachments></ng-template>
| bitwarden/web/src/app/settings/emergency-access-view.component.html/0 | {
"file_path": "bitwarden/web/src/app/settings/emergency-access-view.component.html",
"repo_id": "bitwarden",
"token_count": 1461
} | 153 |
import { Component, OnInit } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { CryptoService } from "jslib-common/abstractions/crypto.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
import { LogService } from "jslib-common/abstractions/log.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { StateService } from "jslib-common/abstractions/state.service";
import { UpdateProfileRequest } from "jslib-common/models/request/updateProfileRequest";
import { ProfileResponse } from "jslib-common/models/response/profileResponse";
@Component({
selector: "app-profile",
templateUrl: "profile.component.html",
})
export class ProfileComponent implements OnInit {
loading = true;
profile: ProfileResponse;
fingerprint: string;
hidePasswordHint = false;
formPromise: Promise<any>;
constructor(
private apiService: ApiService,
private i18nService: I18nService,
private platformUtilsService: PlatformUtilsService,
private cryptoService: CryptoService,
private logService: LogService,
private keyConnectorService: KeyConnectorService,
private stateService: StateService
) {}
async ngOnInit() {
this.profile = await this.apiService.getProfile();
this.loading = false;
const fingerprint = await this.cryptoService.getFingerprint(
await this.stateService.getUserId()
);
if (fingerprint != null) {
this.fingerprint = fingerprint.join("-");
}
this.hidePasswordHint = await this.keyConnectorService.getUsesKeyConnector();
}
async submit() {
try {
const request = new UpdateProfileRequest(this.profile.name, this.profile.masterPasswordHint);
this.formPromise = this.apiService.putProfile(request);
await this.formPromise;
this.platformUtilsService.showToast("success", null, this.i18nService.t("accountUpdated"));
} catch (e) {
this.logService.error(e);
}
}
}
| bitwarden/web/src/app/settings/profile.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/profile.component.ts",
"repo_id": "bitwarden",
"token_count": 677
} | 154 |
import { Component } from "@angular/core";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { TokenService } from "jslib-common/abstractions/token.service";
@Component({
selector: "app-subscription",
templateUrl: "subscription.component.html",
})
export class SubscriptionComponent {
hasPremium: boolean;
selfHosted: boolean;
constructor(
private tokenService: TokenService,
private platformUtilsService: PlatformUtilsService
) {}
async ngOnInit() {
this.hasPremium = await this.tokenService.getPremium();
this.selfHosted = this.platformUtilsService.isSelfHost();
}
get subscriptionRoute(): string {
return this.hasPremium ? "user-subscription" : "premium";
}
}
| bitwarden/web/src/app/settings/subscription.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/subscription.component.ts",
"repo_id": "bitwarden",
"token_count": 229
} | 155 |
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="2faU2fTitle">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title" id="2faU2fTitle">
{{ "twoStepLogin" | i18n }}
<small>{{ "webAuthnTitle" | i18n }}</small>
</h2>
<button
type="button"
class="close"
data-dismiss="modal"
appA11yTitle="{{ 'close' | i18n }}"
>
<span aria-hidden="true">×</span>
</button>
</div>
<app-two-factor-verify
[organizationId]="organizationId"
[type]="type"
(onAuthed)="auth($event)"
*ngIf="!authed"
>
</app-two-factor-verify>
<form
#form
(ngSubmit)="submit()"
[appApiAction]="formPromise"
ngNativeValidate
*ngIf="authed"
>
<div class="modal-body">
<app-callout
type="success"
title="{{ 'enabled' | i18n }}"
icon="bwi bwi-check-circle"
*ngIf="enabled"
>
{{ "twoStepLoginProviderEnabled" | i18n }}
</app-callout>
<app-callout type="warning">
<p>{{ "twoFactorWebAuthnWarning" | i18n }}</p>
<ul class="mb-0">
<li>{{ "twoFactorWebAuthnSupportWeb" | i18n }}</li>
</ul>
</app-callout>
<img class="float-right ml-5 mfaType7" alt="FIDO2 WebAuthn logo'" />
<ul class="bwi-ul">
<li
*ngFor="let k of keys; let i = index"
#removeKeyBtn
[appApiAction]="k.removePromise"
>
<i class="bwi bwi-li bwi-key"></i>
<strong *ngIf="!k.configured || !k.name">{{ "webAuthnkeyX" | i18n: i + 1 }}</strong>
<strong *ngIf="k.configured && k.name">{{ k.name }}</strong>
<ng-container *ngIf="k.configured && !removeKeyBtn.loading">
<ng-container *ngIf="k.migrated">
<span>{{ "webAuthnMigrated" | i18n }}</span>
</ng-container>
</ng-container>
<ng-container *ngIf="keysConfiguredCount > 1 && k.configured">
<i
class="bwi bwi-spin bwi-spinner text-muted bwi-fw"
title="{{ 'loading' | i18n }}"
*ngIf="removeKeyBtn.loading"
aria-hidden="true"
></i>
-
<a href="#" appStopClick (click)="remove(k)">{{ "remove" | i18n }}</a>
</ng-container>
</li>
</ul>
<hr />
<p>{{ "twoFactorWebAuthnAdd" | i18n }}:</p>
<ol>
<li>{{ "twoFactorU2fGiveName" | i18n }}</li>
<li>{{ "twoFactorU2fPlugInReadKey" | i18n }}</li>
<li>{{ "twoFactorU2fTouchButton" | i18n }}</li>
<li>{{ "twoFactorU2fSaveForm" | i18n }}</li>
</ol>
<div class="row">
<div class="form-group col-6">
<label for="name">{{ "name" | i18n }}</label>
<input
id="name"
type="text"
name="Name"
class="form-control"
[(ngModel)]="name"
[disabled]="!keyIdAvailable"
/>
</div>
</div>
<button
type="button"
(click)="readKey()"
class="btn btn-outline-secondary mr-2"
[disabled]="readKeyBtn.loading || webAuthnListening || !keyIdAvailable"
#readKeyBtn
[appApiAction]="challengePromise"
>
{{ "readKey" | i18n }}
</button>
<ng-container *ngIf="readKeyBtn.loading">
<i class="bwi bwi-spinner bwi-spin text-muted" aria-hidden="true"></i>
</ng-container>
<ng-container *ngIf="!readKeyBtn.loading">
<ng-container *ngIf="webAuthnListening">
<i class="bwi bwi-spinner bwi-spin text-muted" aria-hidden="true"></i>
{{ "twoFactorU2fWaiting" | i18n }}...
</ng-container>
<ng-container *ngIf="webAuthnResponse">
<i class="bwi bwi-check-circle text-success" aria-hidden="true"></i>
{{ "twoFactorU2fClickSave" | i18n }}
</ng-container>
<ng-container *ngIf="webAuthnError">
<i class="bwi bwi-exclamation-triangle text-danger" aria-hidden="true"></i>
{{ "twoFactorU2fProblemReadingTryAgain" | i18n }}
</ng-container>
</ng-container>
</div>
<div class="modal-footer">
<button
type="submit"
class="btn btn-primary"
[disabled]="form.loading || !webAuthnResponse"
>
<i
class="bwi bwi-spinner bwi-spin"
*ngIf="form.loading"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span *ngIf="!form.loading">{{ "save" | i18n }}</span>
</button>
<button
#disableBtn
type="button"
class="btn btn-outline-secondary btn-submit"
[appApiAction]="disablePromise"
[disabled]="disableBtn.loading"
(click)="disable()"
*ngIf="enabled"
>
<i
class="bwi bwi-spinner bwi-spin"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span>{{ "disableAllKeys" | i18n }}</span>
</button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">
{{ "close" | i18n }}
</button>
</div>
</form>
</div>
</div>
</div>
| bitwarden/web/src/app/settings/two-factor-webauthn.component.html/0 | {
"file_path": "bitwarden/web/src/app/settings/two-factor-webauthn.component.html",
"repo_id": "bitwarden",
"token_count": 3353
} | 156 |
<form
#form
(ngSubmit)="submit()"
ngNativeValidate
[appApiAction]="formPromise"
[formGroup]="exportForm"
>
<div class="page-header">
<h1>{{ "exportVault" | i18n }}</h1>
</div>
<app-callout type="error" title="{{ 'vaultExportDisabled' | i18n }}" *ngIf="disabledByPolicy">
{{ "personalVaultExportPolicyInEffect" | i18n }}
</app-callout>
<app-export-scope-callout
[organizationId]="organizationId"
*ngIf="!disabledByPolicy"
></app-export-scope-callout>
<div class="row">
<div class="form-group col-6">
<label for="format">{{ "fileFormat" | i18n }}</label>
<select class="form-control" id="format" name="Format" formControlName="format">
<option *ngFor="let f of formatOptions" [value]="f.value">{{ f.name }}</option>
</select>
</div>
</div>
<div class="row">
<div class="form-group col-6">
<app-user-verification ngDefaultControl formControlName="secret" name="secret">
</app-user-verification>
</div>
</div>
<button
type="submit"
class="btn btn-primary btn-submit"
[disabled]="form.loading || exportForm.disabled"
>
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "exportVault" | i18n }}</span>
</button>
</form>
| bitwarden/web/src/app/tools/export.component.html/0 | {
"file_path": "bitwarden/web/src/app/tools/export.component.html",
"repo_id": "bitwarden",
"token_count": 526
} | 157 |
<div class="dropdown mr-2" appListDropdown>
<button
class="btn btn-sm btn-outline-secondary dropdown-toggle"
type="button"
id="bulkActionsButton"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
appA11yTitle="{{ 'options' | i18n }}"
>
<i class="bwi bwi-cog" aria-hidden="true"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="bulkActionsButton">
<button
class="dropdown-item"
appStopClick
(click)="bulkMove()"
*ngIf="!deleted && !organization"
>
<i class="bwi bwi-fw bwi-folder" aria-hidden="true"></i>
{{ "moveSelected" | i18n }}
</button>
<button
class="dropdown-item"
appStopClick
(click)="bulkShare()"
*ngIf="!deleted && !organization"
>
<i class="bwi bwi-fw bwi-arrow-circle-right" aria-hidden="true"></i>
{{ "moveSelectedToOrg" | i18n }}
</button>
<button class="dropdown-item" (click)="bulkRestore()" *ngIf="deleted && !organization">
<i class="bwi bwi-fw bwi-undo" aria-hidden="true"></i>
{{ "restoreSelected" | i18n }}
</button>
<button class="dropdown-item text-danger" (click)="bulkDelete()">
<i class="bwi bwi-fw bwi-trash" aria-hidden="true"></i>
{{ (deleted ? "permanentlyDeleteSelected" : "deleteSelected") | i18n }}
</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" appStopClick (click)="selectAll(true)">
<i class="bwi bwi-fw bwi-check-square" aria-hidden="true"></i>
{{ "selectAll" | i18n }}
</button>
<button class="dropdown-item" appStopClick (click)="selectAll(false)">
<i class="bwi bwi-fw bwi-minus-square" aria-hidden="true"></i>
{{ "unselectAll" | i18n }}
</button>
</div>
</div>
<ng-template #bulkDeleteTemplate></ng-template>
<ng-template #bulkRestoreTemplate></ng-template>
<ng-template #bulkMoveTemplate></ng-template>
<ng-template #bulkShareTemplate></ng-template>
| bitwarden/web/src/app/vault/bulk-actions.component.html/0 | {
"file_path": "bitwarden/web/src/app/vault/bulk-actions.component.html",
"repo_id": "bitwarden",
"token_count": 862
} | 158 |
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="shareTitle">
<div class="modal-dialog modal-dialog-scrollable" role="document">
<form class="modal-content" #form (ngSubmit)="submit()" [appApiAction]="formPromise">
<div class="modal-header">
<h2 class="modal-title" id="shareTitle">
{{ "moveToOrganization" | i18n }}
<small *ngIf="cipher">{{ cipher.name }}</small>
</h2>
<button
type="button"
class="close"
data-dismiss="modal"
appA11yTitle="{{ 'close' | i18n }}"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" *ngIf="!organizations || !organizations.length">
{{ "noOrganizationsList" | i18n }}
</div>
<div class="modal-body" *ngIf="organizations && organizations.length">
<p>{{ "moveToOrgDesc" | i18n }}</p>
<div class="form-group">
<label for="organization">{{ "organization" | i18n }}</label>
<select
id="organization"
name="OrganizationId"
[(ngModel)]="organizationId"
class="form-control"
(change)="filterCollections()"
>
<option *ngFor="let o of organizations" [ngValue]="o.id">{{ o.name }}</option>
</select>
</div>
<div class="d-flex">
<h3>{{ "collections" | i18n }}</h3>
<div class="ml-auto d-flex" *ngIf="collections && collections.length">
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
{{ "selectAll" | i18n }}
</button>
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
{{ "unselectAll" | i18n }}
</button>
</div>
</div>
<div *ngIf="!collections || !collections.length">
{{ "noCollectionsInList" | i18n }}
</div>
<table class="table table-hover table-list mb-0" *ngIf="collections && collections.length">
<tbody>
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
<td class="table-list-checkbox">
<input
type="checkbox"
[(ngModel)]="c.checked"
name="Collection[{{ i }}].Checked"
appStopProp
/>
</td>
<td>
{{ c.name }}
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button
type="submit"
class="btn btn-primary btn-submit manual"
[disabled]="form.loading || !canSave"
[ngClass]="{ loading: form.loading }"
*ngIf="organizations && organizations.length"
>
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "save" | i18n }}</span>
</button>
<a
href="#"
routerLink="/create-organization"
class="btn btn-primary"
*ngIf="!organizations || !organizations.length"
>
{{ "newOrganization" | i18n }}
</a>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">
{{ "cancel" | i18n }}
</button>
</div>
</form>
</div>
</div>
| bitwarden/web/src/app/vault/share.component.html/0 | {
"file_path": "bitwarden/web/src/app/vault/share.component.html",
"repo_id": "bitwarden",
"token_count": 1787
} | 159 |
import { getQsParam } from "./common";
require("./sso.scss");
document.addEventListener("DOMContentLoaded", () => {
const code = getQsParam("code");
const state = getQsParam("state");
if (state != null && state.includes(":clientId=browser")) {
initiateBrowserSso(code, state);
} else {
window.location.href = window.location.origin + "/#/sso?code=" + code + "&state=" + state;
// Match any characters between "_returnUri='" and the next "'"
const returnUri = extractFromRegex(state, "(?<=_returnUri=')(.*)(?=')");
if (returnUri) {
window.location.href = window.location.origin + `/#${returnUri}`;
} else {
window.location.href = window.location.origin + "/#/sso?code=" + code + "&state=" + state;
}
}
});
function initiateBrowserSso(code: string, state: string) {
window.postMessage({ command: "authResult", code: code, state: state }, "*");
const handOffMessage = ("; " + document.cookie)
.split("; ssoHandOffMessage=")
.pop()
.split(";")
.shift();
document.cookie = "ssoHandOffMessage=;SameSite=strict;max-age=0";
const content = document.getElementById("content");
content.innerHTML = "";
const p = document.createElement("p");
p.innerText = handOffMessage;
content.appendChild(p);
}
function extractFromRegex(s: string, regexString: string) {
const regex = new RegExp(regexString);
const results = regex.exec(s);
if (!results) {
return null;
}
return results[0];
}
| bitwarden/web/src/connectors/sso.ts/0 | {
"file_path": "bitwarden/web/src/connectors/sso.ts",
"repo_id": "bitwarden",
"token_count": 527
} | 160 |
{
"pageTitle": {
"message": "$APP_NAME$ ವೆಬ್ ವಾಲ್ಟ್",
"description": "The title of the website in the browser window.",
"placeholders": {
"app_name": {
"content": "$1",
"example": "Bitwarden"
}
}
},
"whatTypeOfItem": {
"message": "ಇದು ಯಾವ ರೀತಿಯ ಐಟಂ?"
},
"name": {
"message": "ಹೆಸರು"
},
"uri": {
"message": "ಯು ಆರ್ ಐ"
},
"uriPosition": {
"message": "ಯು ಆರ್ ಐ $POSITION$",
"description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.",
"placeholders": {
"position": {
"content": "$1",
"example": "2"
}
}
},
"newUri": {
"message": "ಹೊಸ ಯು ಆರ್ ಐ"
},
"username": {
"message": "ಬಳಕೆದಾರ ಹೆಸರು"
},
"password": {
"message": "ಪಾಸ್ವರ್ಡ್"
},
"newPassword": {
"message": "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
},
"passphrase": {
"message": "ಪಾಸ್ಫ್ರೇಸ್"
},
"notes": {
"message": "ಟಿಪ್ಪಣಿಗಳು"
},
"customFields": {
"message": "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರಗಳು"
},
"cardholderName": {
"message": "ಕಾರ್ಡುದಾರನ ಹೆಸರು"
},
"number": {
"message": "ಸಂಖ್ಯೆ"
},
"brand": {
"message": "ಬ್ರ್ಯಾಂಡ್"
},
"expiration": {
"message": "ಮುಕ್ತಾಯ"
},
"securityCode": {
"message": "ಭದ್ರತಾ ಕೋಡ್ (ಸಿವಿವಿ)"
},
"identityName": {
"message": "ಹೆಸರು ಗುರುತು"
},
"company": {
"message": "ಕಂಪನಿ"
},
"ssn": {
"message": "ಸಾಮಾಜಿಕ ಭದ್ರತೆ ಸಂಖ್ಯೆ"
},
"passportNumber": {
"message": "ಪಾಸ್ಪೋರ್ಟ್ ಸಂಖ್ಯೆ"
},
"licenseNumber": {
"message": "ಪರವಾನಗಿ ಸಂಖ್ಯೆ"
},
"email": {
"message": "ಇಮೇಲ್"
},
"phone": {
"message": "ಫೋನ್"
},
"january": {
"message": "ಜನವರಿ"
},
"february": {
"message": "ಫೆಬ್ರವರಿ"
},
"march": {
"message": "ಮಾರ್ಚ್"
},
"april": {
"message": "ಏಪ್ರಿಲ್"
},
"may": {
"message": "ಮೇ"
},
"june": {
"message": "ಜೂನ್"
},
"july": {
"message": "ಜುಲೈ"
},
"august": {
"message": "ಆಗಸ್ಟ್"
},
"september": {
"message": "ಸೆಪ್ಟೆಂಬರ್"
},
"october": {
"message": "ಅಕ್ಟೋಬರ್"
},
"november": {
"message": "ನವೆಂಬರ್"
},
"december": {
"message": "ಡಿಸೆಂಬರ್"
},
"title": {
"message": "ಶೀರ್ಷಿಕೆ"
},
"mr": {
"message": "ಶ್ರೀ"
},
"mrs": {
"message": "ಶ್ರೀಮತಿ"
},
"ms": {
"message": "ಮಿಸ್"
},
"dr": {
"message": "Dr"
},
"expirationMonth": {
"message": "ಮುಕ್ತಾಯ ತಿಂಗಳು"
},
"expirationYear": {
"message": "ಮುಕ್ತಾಯ ವರ್ಷ"
},
"authenticatorKeyTotp": {
"message": "ದೃಢೀಕರಣ ಕೀ (TOTP)"
},
"folder": {
"message": "ಫೋಲ್ಡರ್"
},
"newCustomField": {
"message": "ಹೊಸ ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರ"
},
"value": {
"message": "ಮೌಲ್ಯ"
},
"dragToSort": {
"message": "ವಿಂಗಡಿಸಲು ಎಳೆಯಿರಿ"
},
"cfTypeText": {
"message": "ಪಠ್ಯ"
},
"cfTypeHidden": {
"message": "ಮರೆಮಾಡಲಾಗಿದೆ"
},
"cfTypeBoolean": {
"message": "ಬೂಲಿಯನ್"
},
"cfTypeLinked": {
"message": "ಸಂಪರ್ಕಿತ",
"description": "This describes a field that is 'linked' (related) to another field."
},
"remove": {
"message": "ತೆಗೆ"
},
"unassigned": {
"message": "ನಿಯೋಜಿಸಲಾಗಿಲ್ಲ"
},
"noneFolder": {
"message": "ಫೋಲ್ಡರ್ ಇಲ್ಲ",
"description": "This is the folder for uncategorized items"
},
"addFolder": {
"message": "ಫೋಲ್ಡರ್ ಸೇರಿಸಿ"
},
"editFolder": {
"message": "ಫೋಲ್ಡರ್ ಸಂಪಾದಿಸಿ"
},
"baseDomain": {
"message": "ಮೂಲ ಡೊಮೇನ್",
"description": "Domain name. Ex. website.com"
},
"domainName": {
"message": "Domain Name",
"description": "Domain name. Ex. website.com"
},
"host": {
"message": "ಅತಿಥೆಯ",
"description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'."
},
"exact": {
"message": "ನಿಖರವಾಗಿ"
},
"startsWith": {
"message": "ಇದರೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ"
},
"regEx": {
"message": "ನಿಯಮಿತ ಅಭಿವ್ಯಕ್ತಿ",
"description": "A programming term, also known as 'RegEx'."
},
"matchDetection": {
"message": "ಹೊಂದಾಣಿಕೆ ಪತ್ತೆ",
"description": "URI match detection for auto-fill."
},
"defaultMatchDetection": {
"message": "ಡೀಫಾಲ್ಟ್ ಪಂದ್ಯ ಪತ್ತೆ",
"description": "Default URI match detection for auto-fill."
},
"never": {
"message": "ಇಲ್ಲವೇ ಇಲ್ಲ"
},
"toggleVisibility": {
"message": "ಗೋಚರತೆಯನ್ನು ಟಾಗಲ್ ಮಾಡಿ"
},
"toggleCollapse": {
"message": "ಟಾಗಲ್ ಕುಸಿತ",
"description": "Toggling an expand/collapse state."
},
"generatePassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ರಚಿಸಿ"
},
"checkPassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ಬಹಿರಂಗಗೊಂಡಿದೆಯೇ ಎಂದು ಪರಿಶೀಲಿಸಿ."
},
"passwordExposed": {
"message": "ಈ ಗುಪ್ತಪದವು ಡೇಟಾ ಉಲ್ಲಂಘನೆಯಲ್ಲಿ $VALUE$ ಮೌಲ್ಯವನ್ನು (ಗಳು) ಬಹಿರಂಗಪಡಿಸಲಾಗಿದೆ. ನೀವು ಅದನ್ನು ಬದಲಾಯಿಸಬೇಕು.",
"placeholders": {
"value": {
"content": "$1",
"example": "2"
}
}
},
"passwordSafe": {
"message": "ತಿಳಿದಿರುವ ಯಾವುದೇ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ ಈ ಪಾಸ್ವರ್ಡ್ ಕಂಡುಬಂದಿಲ್ಲ. ಅದನ್ನು ಬಳಸಲು ಸುರಕ್ಷಿತವಾಗಿರಬೇಕು."
},
"save": {
"message": "ಉಳಿಸಿ"
},
"cancel": {
"message": "ರದ್ದು"
},
"canceled": {
"message": "ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
},
"close": {
"message": "ಮುಚ್ಚಿ"
},
"delete": {
"message": "ಅಳಿಸು"
},
"favorite": {
"message": "ಮೆಚ್ಚಿನ"
},
"unfavorite": {
"message": "ಮೆಚ್ಚಿನದಲ್ಲದ"
},
"edit": {
"message": "ಎಡಿಟ್"
},
"searchCollection": {
"message": "ಸಂಗ್ರಹಣೆ ಹುಡುಕಿ"
},
"searchFolder": {
"message": "ಫೋಲ್ಡರ್ ಹುಡುಕಿ"
},
"searchFavorites": {
"message": "ಮೆಚ್ಚುಗೆಗಳಲ್ಲಿ ಶೋಧ"
},
"searchType": {
"message": "ಹುಡುಕಾಟ ಪ್ರಕಾರ",
"description": "Search item type"
},
"searchVault": {
"message": "ವಾಲ್ಟ್ ಹುಡುಕಿ"
},
"allItems": {
"message": "ಎಲ್ಲಾ ವಸ್ತುಗಳು"
},
"favorites": {
"message": "ಮೆಚ್ಚುಗೆಗಳು"
},
"types": {
"message": "ರೀತಿಯ"
},
"typeLogin": {
"message": "ಲಾಗಿನ್"
},
"typeCard": {
"message": "ಕಾರ್ಡ್"
},
"typeIdentity": {
"message": "ಗುರುತಿಸುವಿಕೆ"
},
"typeSecureNote": {
"message": "ಸುರಕ್ಷಿತ ಟಿಪ್ಪಣಿ"
},
"typeLoginPlural": {
"message": "Logins"
},
"typeCardPlural": {
"message": "Cards"
},
"typeIdentityPlural": {
"message": "Identities"
},
"typeSecureNotePlural": {
"message": "Secure Notes"
},
"folders": {
"message": "ಫೋಲ್ಡರ್ಗಳು"
},
"collections": {
"message": "ಸಂಗ್ರಹಣೆಗಳು"
},
"firstName": {
"message": "ಮೊದಲ ಹೆಸರು"
},
"middleName": {
"message": "ಮಧ್ಯದ ಹೆಸರು"
},
"lastName": {
"message": "ಕೊನೆ ಹೆಸರು"
},
"fullName": {
"message": "ಪೂರ್ಣ ಹೆಸರು"
},
"address1": {
"message": "ವಿಳಾಸ 1"
},
"address2": {
"message": "ವಿಳಾಸ 2"
},
"address3": {
"message": "ವಿಳಾಸ 3"
},
"cityTown": {
"message": "ನಗರ / ಪಟ್ಟಣ"
},
"stateProvince": {
"message": "ರಾಜ್ಯ / ಪ್ರಾಂತ್ಯ"
},
"zipPostalCode": {
"message": "ಪಿನ್ / ಅಂಚೆ ಕೋಡ್"
},
"country": {
"message": "ದೇಶ"
},
"shared": {
"message": "ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ"
},
"attachments": {
"message": "ಲಗತ್ತುಗಳು"
},
"select": {
"message": "ಆಯ್ಕೆಮಾಡಿ"
},
"addItem": {
"message": "ಐಟಂ ಸೇರಿಸಿ"
},
"editItem": {
"message": "ವಸ್ತುಗಳನ್ನು ಸಂಪಾದಿಸಿ"
},
"viewItem": {
"message": "ಐಟಂ ವೀಕ್ಷಿಸಿ"
},
"ex": {
"message": "ಉದಾಹರಣೆ.",
"description": "Short abbreviation for 'example'."
},
"other": {
"message": "ಇತರೆ"
},
"share": {
"message": "ಹಂಚಿಕೊಳ್ಳಿ"
},
"moveToOrganization": {
"message": "ಸಂಸ್ಥೆಗೆ ಸರಿಸಿ"
},
"valueCopied": {
"message": "$VALUE$ ನಕಲಿಸಲಾಗಿದೆ",
"description": "Value has been copied to the clipboard.",
"placeholders": {
"value": {
"content": "$1",
"example": "Password"
}
}
},
"copyValue": {
"message": "ಮೌಲ್ಯವನ್ನು ನಕಲಿಸಿ",
"description": "Copy value to clipboard"
},
"copyPassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ನಕಲಿಸಿ",
"description": "Copy password to clipboard"
},
"copyUsername": {
"message": "ಬಳಕೆಹೆಸರು ನಕಲಿಸು",
"description": "Copy username to clipboard"
},
"copyNumber": {
"message": "ನಕಲು ಸಂಖ್ಯೆ",
"description": "Copy credit card number"
},
"copySecurityCode": {
"message": "ಭದ್ರತಾ ಕೋಡ್ ಅನ್ನು ನಕಲಿಸಿ",
"description": "Copy credit card security code (CVV)"
},
"copyUri": {
"message": "ಯು ಆರ್ ಐ ಅನ್ನು ನಕಲಿಸಿ",
"description": "Copy URI to clipboard"
},
"myVault": {
"message": "ನನ್ನ ವಾಲ್ಟ್"
},
"vault": {
"message": "ವಾಲ್ಟ್"
},
"moveSelectedToOrg": {
"message": "ಆಯ್ದ ಸಂಸ್ಥೆಗೆ ಸರಿಸಿ"
},
"deleteSelected": {
"message": "ಆಯ್ಕೆಮಾಡಿದ ಅಳಿಸಿ"
},
"moveSelected": {
"message": "ಆರಿಸಿದುದನ್ನು ಸರಿಸಿ"
},
"selectAll": {
"message": "ಎಲ್ಲವನ್ನು ಆರಿಸು"
},
"unselectAll": {
"message": "ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆ ರದ್ದುಮಾಡಿ"
},
"launch": {
"message": "ಶುರು"
},
"newAttachment": {
"message": "ಹೊಸ ಲಗತ್ತನ್ನು ಸೇರಿಸಿ"
},
"deletedAttachment": {
"message": "ಲಗತ್ತು ಅಳಿಸಲಾಗಿದೆ"
},
"deleteAttachmentConfirmation": {
"message": "ಈ ಲಗತ್ತನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"attachmentSaved": {
"message": "ಲಗತ್ತನ್ನು ಉಳಿಸಲಾಗಿದೆ."
},
"file": {
"message": "ಫೈಲ್"
},
"selectFile": {
"message": "ಫೈಲನ್ನು ಆಯ್ಕೆಮಾಡು."
},
"maxFileSize": {
"message": "ಗರಿಷ್ಠ ಫೈಲ್ ಗಾತ್ರ 500 ಎಂಬಿ."
},
"updateKey": {
"message": "ನಿಮ್ಮ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನವೀಕರಿಸುವವರೆಗೆ ನೀವು ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ."
},
"addedItem": {
"message": "ಐಟಂ ಸೇರಿಸಲಾಗಿದೆ"
},
"editedItem": {
"message": "ಐಟಂ ಸಂಪಾದಿಸಲಾಗಿದೆ"
},
"movedItemToOrg": {
"message": "$ITEMNAME$ ಅನ್ನು $ORGNAME$ ಗೆ ಸರಿಸಲಾಗಿದೆ",
"placeholders": {
"itemname": {
"content": "$1",
"example": "Secret Item"
},
"orgname": {
"content": "$2",
"example": "Company Name"
}
}
},
"movedItemsToOrg": {
"message": "ಆಯ್ದ ವಸ್ತುಗಳನ್ನು $ORGNAME$ ಗೆ ಸರಿಸಲಾಗಿದೆ",
"placeholders": {
"orgname": {
"content": "$1",
"example": "Company Name"
}
}
},
"deleteItem": {
"message": "ಐಟಂ ಅಳಿಸಿ"
},
"deleteFolder": {
"message": "ಫೋಲ್ಡರ್ ಅಳಿಸಿ"
},
"deleteAttachment": {
"message": "ಲಗತ್ತನ್ನು ಅಳಿಸಿ"
},
"deleteItemConfirmation": {
"message": "ನೀವು ನಿಜವಾಗಿಯೂ ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲು ಬಯಸುವಿರಾ?"
},
"deletedItem": {
"message": "ಐಟಂ ಅನ್ನು ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ"
},
"deletedItems": {
"message": "ವಸ್ತುಗಳನ್ನು ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ"
},
"movedItems": {
"message": "ಸರಿಸಲಾದ ವಸ್ತುಗಳು"
},
"overwritePasswordConfirmation": {
"message": "ಪ್ರಸ್ತುತ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ತಿದ್ದಿಬರೆಯಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"editedFolder": {
"message": "ಫೋಲ್ಡರ್ ತಿದ್ದಲಾಗಿದೆ"
},
"addedFolder": {
"message": "ಫೋಲ್ಡರ್ ಸೇರಿಸಿ"
},
"deleteFolderConfirmation": {
"message": "ನೀವು ಈ ಕಡತಕೋಶವನ್ನು ಖಚಿತವಾಗಿಯೂ ಅಳಿಸಬಯಸುವಿರಾ?"
},
"deletedFolder": {
"message": "ಫೋಲ್ಡರ್ ಅಳಿಸಿ"
},
"loggedOut": {
"message": "ಲಾಗ್ ಔಟ್"
},
"loginExpired": {
"message": "ನಿಮ್ಮ ಲಾಗಿನ್ ಸೆಷನ್ ಅವಧಿ ಮೀರಿದೆ."
},
"logOutConfirmation": {
"message": "ಲಾಗ್ ಔಟ್ ಮಾಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"logOut": {
"message": "ಲಾಗ್ ಔಟ್"
},
"ok": {
"message": "ಸರಿ"
},
"yes": {
"message": "ಹೌದು"
},
"no": {
"message": "ಇಲ್ಲ"
},
"loginOrCreateNewAccount": {
"message": "ನಿಮ್ಮ ಸುರಕ್ಷಿತ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ಲಾಗ್ ಇನ್ ಮಾಡಿ ಅಥವಾ ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ."
},
"createAccount": {
"message": "ಖಾತೆ ತೆರೆ"
},
"logIn": {
"message": "ಲಾಗಿನ್"
},
"submit": {
"message": "ಒಪ್ಪಿಸು"
},
"emailAddressDesc": {
"message": "ಲಾಗ್ ಇನ್ ಮಾಡಲು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನೀವು ಬಳಸುತ್ತೀರಿ."
},
"yourName": {
"message": "ನಿಮ್ಮ ಹೆಸರು"
},
"yourNameDesc": {
"message": "ನಾವು ನಿಮ್ಮನ್ನು ಏನು ಕರೆಯಬೇಕು?"
},
"masterPass": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್"
},
"masterPassDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಬಳಸುವ ಪಾಸ್ವರ್ಡ್ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಆಗಿದೆ. ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆಯದಿರುವುದು ಬಹಳ ಮುಖ್ಯ. ನೀವು ಅದನ್ನು ಮರೆತ ಸಂದರ್ಭದಲ್ಲಿ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಪಡೆಯಲು ಯಾವುದೇ ಮಾರ್ಗವಿಲ್ಲ."
},
"masterPassHintDesc": {
"message": "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆತರೆ ಅದನ್ನು ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲು ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ."
},
"reTypeMasterPass": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರು-ಟೈಪ್ ಮಾಡಿ"
},
"masterPassHint": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು (ಐಚ್ಛಿಕ)"
},
"masterPassHintLabel": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು"
},
"settings": {
"message": "ಸೆಟ್ಟಿಂಗ್ಗಳು"
},
"passwordHint": {
"message": "ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು"
},
"enterEmailToGetHint": {
"message": "ವಿಸ್ತರಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ಮೆನುವಿನಲ್ಲಿರುವ ಬಿಟ್ವಾರ್ಡೆನ್ ಐಕಾನ್ ಟ್ಯಾಪ್ ಮಾಡಿ."
},
"getMasterPasswordHint": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವನ್ನು ಪಡೆಯಿರಿ"
},
"emailRequired": {
"message": "ಇಮೇಲ್ ವಿಳಾಸದ ಅಗತ್ಯವಿದೆ."
},
"invalidEmail": {
"message": "ಅಮಾನ್ಯ ಇಮೇಲ್ ವಿಳಾಸ."
},
"masterPassRequired": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ."
},
"masterPassLength": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಕನಿಷ್ಠ 8 ಅಕ್ಷರಗಳಷ್ಟು ಉದ್ದವಾಗಿರಬೇಕು."
},
"masterPassDoesntMatch": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಣವು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ."
},
"newAccountCreated": {
"message": "ನಿಮ್ಮ ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಲಾಗಿದೆ! ನೀವು ಈಗ ಲಾಗ್ ಇನ್ ಮಾಡಬಹುದು."
},
"masterPassSent": {
"message": "ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವಿನೊಂದಿಗೆ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿದ್ದೇವೆ."
},
"unexpectedError": {
"message": "ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ."
},
"emailAddress": {
"message": "ಇಮೇಲ್ ವಿಳಾಸ"
},
"yourVaultIsLocked": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಲಾಕ್ ಆಗಿದೆ. ಮುಂದುವರೆಯಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ."
},
"unlock": {
"message": "ಅನ್ಲಾಕ್ ಮಾಡಿ"
},
"loggedInAsEmailOn": {
"message": "$HOSTNAME$ನಲ್ಲಿ $EMAIL$ಆಗಿ ಲಾಗ್ ಇನ್ ಮಾಡಲಾಗಿದೆ.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
},
"hostname": {
"content": "$2",
"example": "bitwarden.com"
}
}
},
"invalidMasterPassword": {
"message": "ಅಮಾನ್ಯ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್"
},
"lockNow": {
"message": "ಈಗ ಲಾಕ್ ಮಾಡಿ"
},
"noItemsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಐಟಂಗಳಿಲ್ಲ."
},
"noCollectionsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಸಂಗ್ರಹಗಳಿಲ್ಲ."
},
"noGroupsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಗುಂಪುಗಳಿಲ್ಲ."
},
"noUsersInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಬಳಕೆದಾರರಿಲ್ಲ."
},
"noEventsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಘಟನೆಗಳಿಲ್ಲ."
},
"newOrganization": {
"message": "ಹೊಸ ಸಂಸ್ಥೆ"
},
"noOrganizationsList": {
"message": "ನೀವು ಯಾವುದೇ ಸಂಸ್ಥೆಗಳಿಗೆ ಸೇರಿಲ್ಲ. ಇತರ ಬಳಕೆದಾರರೊಂದಿಗೆ ವಸ್ತುಗಳನ್ನು ಸುರಕ್ಷಿತವಾಗಿ ಹಂಚಿಕೊಳ್ಳಲು ಸಂಘಟನೆಗಳು ನಿಮಗೆ ಅವಕಾಶ ನೀಡುತ್ತವೆ."
},
"versionNumber": {
"message": "ಆವೃತ್ತಿ $VERSION_NUMBER$",
"placeholders": {
"version_number": {
"content": "$1",
"example": "1.2.3"
}
}
},
"enterVerificationCodeApp": {
"message": "ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ನಿಂದ 6 ಅಂಕಿಯ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ."
},
"enterVerificationCodeEmail": {
"message": "$EMAIL$ಗೆ ಇಮೇಲ್ ಮಾಡಲಾದ 6 ಅಂಕಿಯ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"verificationCodeEmailSent": {
"message": "ಪರಿಶೀಲನೆ ಇಮೇಲ್ $EMAIL$ ಗೆ ಕಳುಹಿಸಲಾಗಿದೆ.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"rememberMe": {
"message": "ನನ್ನನ್ನು ನೆನಪಿನಲ್ಲಿ ಇಡು"
},
"sendVerificationCodeEmailAgain": {
"message": "ಪರಿಶೀಲನೆ ಕೋಡ್ ಇಮೇಲ್ ಅನ್ನು ಮತ್ತೆ ಕಳುಹಿಸಿ"
},
"useAnotherTwoStepMethod": {
"message": "ಮತ್ತೊಂದು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ವಿಧಾನವನ್ನು ಬಳಸಿ"
},
"insertYubiKey": {
"message": "ನಿಮ್ಮ ಯುಬಿಕಿಯನ್ನು ನಿಮ್ಮ ಕಂಪ್ಯೂಟರ್ನ ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ಗೆ ಸೇರಿಸಿ, ನಂತರ ಅದರ ಗುಂಡಿಯನ್ನು ಸ್ಪರ್ಶಿಸಿ."
},
"insertU2f": {
"message": "ನಿಮ್ಮ ಕಂಪ್ಯೂಟರ್ನ ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ಗೆ ನಿಮ್ಮ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಸೇರಿಸಿ. ಅದು ಬಟನ್ ಹೊಂದಿದ್ದರೆ, ಅದನ್ನು ಸ್ಪರ್ಶಿಸಿ."
},
"loginUnavailable": {
"message": "ಲಾಗಿನ್ ಲಭ್ಯವಿಲ್ಲ"
},
"noTwoStepProviders": {
"message": "ಈ ಖಾತೆಯು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದೆ, ಆದಾಗ್ಯೂ, ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾದ ಎರಡು-ಹಂತದ ಪೂರೈಕೆದಾರರಲ್ಲಿ ಯಾರೂ ಈ ವೆಬ್ ಬ್ರೌಸರ್ನಿಂದ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ."
},
"noTwoStepProviders2": {
"message": "ದಯವಿಟ್ಟು ಬೆಂಬಲಿತ ವೆಬ್ ಬ್ರೌಸರ್ ಅನ್ನು ಬಳಸಿ (Chrome ನಂತಹ) ಮತ್ತು / ಅಥವಾ ವೆಬ್ ಬ್ರೌಸರ್ಗಳಲ್ಲಿ (ದೃ hentic ೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ನಂತಹ) ಉತ್ತಮವಾಗಿ ಬೆಂಬಲಿತವಾದ ಹೆಚ್ಚುವರಿ ಪೂರೈಕೆದಾರರನ್ನು ಸೇರಿಸಿ."
},
"twoStepOptions": {
"message": "ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಆಯ್ಕೆಗಳು"
},
"recoveryCodeDesc": {
"message": "ನಿಮ್ಮ ಎಲ್ಲಾ ಎರಡು ಅಂಶ ಪೂರೈಕೆದಾರರಿಗೆ ಪ್ರವೇಶವನ್ನು ಕಳೆದುಕೊಂಡಿದ್ದೀರಾ? ನಿಮ್ಮ ಖಾತೆಯಿಂದ ಎಲ್ಲಾ ಎರಡು ಅಂಶ ಪೂರೈಕೆದಾರರನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ನಿಮ್ಮ ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ ಬಳಸಿ."
},
"recoveryCodeTitle": {
"message": "ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್"
},
"authenticatorAppTitle": {
"message": "ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್"
},
"authenticatorAppDesc": {
"message": "ಸಮಯ ಆಧಾರಿತ ಪರಿಶೀಲನಾ ಕೋಡ್ಗಳನ್ನು ರಚಿಸಲು ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಬಳಸಿ (ಆಥಿ ಅಥವಾ ಗೂಗಲ್ ಅಥೆಂಟಿಕೇಟರ್).",
"description": "'Authy' and 'Google Authenticator' are product names and should not be translated."
},
"yubiKeyTitle": {
"message": "ಯುಬಿಕೆ ಒಟಿಪಿ ಭದ್ರತಾ ಕೀ"
},
"yubiKeyDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಯುಬಿಕೆ ಬಳಸಿ. ಯುಬಿಕೆ 4 ಸರಣಿ, 5 ಸರಣಿಗಳು ಮತ್ತು ಎನ್ಇಒ ಸಾಧನಗಳೊಂದಿಗೆ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತದೆ."
},
"duoDesc": {
"message": "ಡ್ಯುಯೊ ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್, ಎಸ್ಎಂಎಸ್, ಫೋನ್ ಕರೆ ಅಥವಾ ಯು 2 ಎಫ್ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ಡ್ಯುಯೊ ಸೆಕ್ಯುರಿಟಿಯೊಂದಿಗೆ ಪರಿಶೀಲಿಸಿ.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
"message": "ಡ್ಯುಯೊ ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್, ಎಸ್ಎಂಎಸ್, ಫೋನ್ ಕರೆ ಅಥವಾ ಯು 2 ಎಫ್ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಸಂಸ್ಥೆಗಾಗಿ ಡ್ಯುಯೊ ಸೆಕ್ಯುರಿಟಿಯೊಂದಿಗೆ ಪರಿಶೀಲಿಸಿ.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"u2fDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಯಾವುದೇ FIDO U2F ಶಕ್ತಗೊಂಡ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಬಳಸಿ."
},
"u2fTitle": {
"message": "FIDO U2F ಭದ್ರತಾ ಕೀ"
},
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
"webAuthnDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಯಾವುದೇ ವೆಬ್ಆಥ್ನ್ ಸಕ್ರಿಯಗೊಳಿಸಿದ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಬಳಸಿ."
},
"webAuthnMigrated": {
"message": "(FIDO ನಿಂದ ವಲಸೆ ಬಂದಿದೆ)"
},
"emailTitle": {
"message": "ಇಮೇಲ್"
},
"emailDesc": {
"message": "ಪರಿಶೀಲನೆ ಕೋಡ್ಗಳನ್ನು ನಿಮಗೆ ಇಮೇಲ್ ಮಾಡಲಾಗುತ್ತದೆ."
},
"continue": {
"message": "ಮುಂದುವರಿಸಿ"
},
"organization": {
"message": "ಸಂಸ್ಥೆ"
},
"organizations": {
"message": "ಸಂಸ್ಥೆಗಳು"
},
"moveToOrgDesc": {
"message": "ಈ ಐಟಂ ಅನ್ನು ಸರಿಸಲು ನೀವು ಬಯಸುವ ಸಂಸ್ಥೆಯನ್ನು ಆರಿಸಿ. ಸಂಸ್ಥೆಗೆ ಹೋಗುವುದರಿಂದ ವಸ್ತುವಿನ ಮಾಲೀಕತ್ವವನ್ನು ಆ ಸಂಸ್ಥೆಗೆ ವರ್ಗಾಯಿಸುತ್ತದೆ. ಈ ಐಟಂ ಅನ್ನು ಸರಿಸಿದ ನಂತರ ನೀವು ಇನ್ನು ಮುಂದೆ ಅದರ ನೇರ ಮಾಲೀಕರಾಗಿರುವುದಿಲ್ಲ."
},
"moveManyToOrgDesc": {
"message": "ಈ ವಸ್ತುಗಳನ್ನು ಸರಿಸಲು ನೀವು ಬಯಸುವ ಸಂಸ್ಥೆಯನ್ನು ಆರಿಸಿ. ಸಂಸ್ಥೆಗೆ ಹೋಗುವುದರಿಂದ ವಸ್ತುಗಳ ಮಾಲೀಕತ್ವವನ್ನು ಆ ಸಂಸ್ಥೆಗೆ ವರ್ಗಾಯಿಸುತ್ತದೆ. ಈ ವಸ್ತುಗಳನ್ನು ಸರಿಸಿದ ನಂತರ ನೀವು ಇನ್ನು ಮುಂದೆ ಅವರ ನೇರ ಮಾಲೀಕರಾಗಿರುವುದಿಲ್ಲ."
},
"collectionsDesc": {
"message": "ಈ ಐಟಂ ಹಂಚಿಕೊಳ್ಳುತ್ತಿರುವ ಸಂಗ್ರಹಗಳನ್ನು ಸಂಪಾದಿಸಿ. ಈ ಸಂಗ್ರಹಣೆಗಳಿಗೆ ಪ್ರವೇಶ ಹೊಂದಿರುವ ಸಂಸ್ಥೆಯ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ ಈ ಐಟಂ ಅನ್ನು ನೋಡಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ."
},
"deleteSelectedItemsDesc": {
"message": "ಅಳಿಸಲು ನೀವು $COUNT$ ಐಟಂ (ಗಳನ್ನು) ಆಯ್ಕೆ ಮಾಡಿದ್ದೀರಿ. ಈ ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsDesc": {
"message": "ನೀವು $COUNT$ ಆಯ್ದ ಐಟಂ (ಗಳನ್ನು) ಗೆ ಸರಿಸಲು ಬಯಸುವ ಫೋಲ್ಡರ್ ಆಯ್ಕೆಮಾಡಿ.",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsCountDesc": {
"message": "ನೀವು $COUNT$ ಐಟಂ (ಗಳನ್ನು) ಆಯ್ಕೆ ಮಾಡಿದ್ದೀರಿ. $MOVEABLE_COUNT$ ಐಟಂ (ಗಳನ್ನು) ಸಂಸ್ಥೆಗೆ ಸರಿಸಬಹುದು, $NONMOVEABLE_COUNT$ ಸಾಧ್ಯವಿಲ್ಲ.",
"placeholders": {
"count": {
"content": "$1",
"example": "10"
},
"moveable_count": {
"content": "$2",
"example": "8"
},
"nonmoveable_count": {
"content": "$3",
"example": "2"
}
}
},
"verificationCodeTotp": {
"message": "ಪರಿಶೀಲನಾ ಕೋಡ್ಗಳು (TOTP)"
},
"copyVerificationCode": {
"message": "ಪರಿಶೀಲನೆ ಕೋಡ್ ನಕಲಿಸಿ"
},
"warning": {
"message": "ಎಚ್ಚರಿಕೆ"
},
"confirmVaultExport": {
"message": "ವಾಲ್ಟ್ ರಫ್ತು ಖಚಿತಪಡಿಸಿ"
},
"exportWarningDesc": {
"message": "ಈ ರಫ್ತು ನಿಮ್ಮ ವಾಲ್ಟ್ ಡೇಟಾವನ್ನು ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡದ ಸ್ವರೂಪದಲ್ಲಿ ಒಳಗೊಂಡಿದೆ. ನೀವು ರಫ್ತು ಮಾಡಿದ ಫೈಲ್ ಅನ್ನು ಅಸುರಕ್ಷಿತ ಚಾನಲ್ಗಳಲ್ಲಿ (ಇಮೇಲ್ ನಂತಹ) ಸಂಗ್ರಹಿಸಬಾರದು ಅಥವಾ ಕಳುಹಿಸಬಾರದು. ನೀವು ಅದನ್ನು ಬಳಸಿದ ನಂತರ ಅದನ್ನು ಅಳಿಸಿ."
},
"encExportKeyWarningDesc": {
"message": "ಈ ರಫ್ತು ನಿಮ್ಮ ಖಾತೆಯ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡುತ್ತದೆ. ನಿಮ್ಮ ಖಾತೆಯ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನೀವು ಎಂದಾದರೂ ತಿರುಗಿಸಿದರೆ ನೀವು ಈ ರಫ್ತು ಫೈಲ್ ಅನ್ನು ಡೀಕ್ರಿಪ್ಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗದ ಕಾರಣ ನೀವು ಮತ್ತೆ ರಫ್ತು ಮಾಡಬೇಕು."
},
"encExportAccountWarningDesc": {
"message": "ಖಾತೆ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಗಳು ಪ್ರತಿ ಬಿಟ್ವಾರ್ಡೆನ್ ಬಳಕೆದಾರ ಖಾತೆಗೆ ಅನನ್ಯವಾಗಿವೆ, ಆದ್ದರಿಂದ ನೀವು ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ರಫ್ತು ಬೇರೆ ಖಾತೆಗೆ ಆಮದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ."
},
"export": {
"message": "ರಫ್ತು"
},
"exportVault": {
"message": "ರಫ್ತು ವಾಲ್ಟ್"
},
"fileFormat": {
"message": "ಫೈಲ್ ಮಾದರಿ"
},
"exportSuccess": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಲಾಗಿದೆ."
},
"passwordGenerator": {
"message": "ಪಾಸ್ವರ್ಡ್ ಜನರೇಟರ್"
},
"minComplexityScore": {
"message": "ಕನಿಷ್ಠ ಸಂಕೀರ್ಣತೆ ಸ್ಕೋರ್"
},
"minNumbers": {
"message": "ಕನಿಷ್ಠ ಸಂಖ್ಯೆಗಳು"
},
"minSpecial": {
"message": "ಕನಿಷ್ಠ ವಿಶೇಷ",
"description": "Minimum Special Characters"
},
"ambiguous": {
"message": "ಅಸ್ಪಷ್ಟ ಅಕ್ಷರಗಳನ್ನು ತಪ್ಪಿಸಿ"
},
"regeneratePassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಪುನರುತ್ಪಾದಿಸಿ"
},
"length": {
"message": "ಉದ್ದ"
},
"numWords": {
"message": "ಪದಗಳ ಸಂಖ್ಯೆ"
},
"wordSeparator": {
"message": "ಪದ ವಿಭಜಕ"
},
"capitalize": {
"message": "ದೊಡ್ಡಕ್ಷರ ಮಾಡಿ",
"description": "Make the first letter of a work uppercase."
},
"includeNumber": {
"message": "ಸಂಖ್ಯೆಯನ್ನು ಸೇರಿಸಿ"
},
"passwordHistory": {
"message": "ಪಾಸ್ವರ್ಡ್ ಇತಿಹಾಸ"
},
"noPasswordsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಯಾವುದೇ ಪಾಸ್ವರ್ಡ್ಗಳು ಇಲ್ಲ."
},
"clear": {
"message": "ಕ್ಲಿಯರ್",
"description": "To clear something out. example: To clear browser history."
},
"accountUpdated": {
"message": "ಖಾತೆಯನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ"
},
"changeEmail": {
"message": "ಇಮೇಲ್ ಬದಲಾಯಿಸಿ"
},
"changeEmailTwoFactorWarning": {
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
},
"newEmail": {
"message": "ಹೊಸ ಇಮೇಲ್"
},
"code": {
"message": "ಸಂಕೇತ"
},
"changeEmailDesc": {
"message": "ನಾವು ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು $EMAIL$ ಗೆ ಇಮೇಲ್ ಮಾಡಿದ್ದೇವೆ. ದಯವಿಟ್ಟು ಈ ಕೋಡ್ಗಾಗಿ ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಇಮೇಲ್ ವಿಳಾಸ ಬದಲಾವಣೆಯನ್ನು ಅಂತಿಮಗೊಳಿಸಲು ಅದನ್ನು ಕೆಳಗೆ ನಮೂದಿಸಿ.",
"placeholders": {
"email": {
"content": "$1",
"example": "john.smith@example.com"
}
}
},
"loggedOutWarning": {
"message": "ಮುಂದುವರಿಯುವುದರಿಂದ ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಸೆಷನ್ನಿಂದ ನಿಮ್ಮನ್ನು ಲಾಗ್ out ಟ್ ಮಾಡುತ್ತದೆ, ನಿಮಗೆ ಮತ್ತೆ ಲಾಗ್ ಇನ್ ಆಗುವ ಅಗತ್ಯವಿರುತ್ತದೆ. ಇತರ ಸಾಧನಗಳಲ್ಲಿನ ಸಕ್ರಿಯ ಸೆಷನ್ಗಳು ಒಂದು ಗಂಟೆಯವರೆಗೆ ಸಕ್ರಿಯವಾಗಿ ಮುಂದುವರಿಯಬಹುದು."
},
"emailChanged": {
"message": "ಇಮೇಲ್ ಬದಲಾಯಿಸಲಾಗಿದೆ"
},
"logBackIn": {
"message": "ದಯವಿಟ್ಟು ಮತ್ತೆ ಲಾಗ್ ಇನ್ ಮಾಡಿ."
},
"logBackInOthersToo": {
"message": "ದಯವಿಟ್ಟು ಮತ್ತೆ ಲಾಗ್ ಇನ್ ಮಾಡಿ. ನೀವು ಇತರ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಬಳಸುತ್ತಿದ್ದರೆ ಲಾಗ್ಔಟ್ ಮಾಡಿ ಮತ್ತು ಅವುಗಳಿಗೆ ಹಿಂತಿರುಗಿ."
},
"changeMasterPassword": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಿ"
},
"masterPasswordChanged": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಲಾಗಿದೆ"
},
"currentMasterPass": {
"message": "ಪ್ರಸ್ತುತ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್"
},
"newMasterPass": {
"message": "ಹೊಸ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್"
},
"confirmNewMasterPass": {
"message": "ಹೊಸ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ದೃಢೀಕರಣ"
},
"encKeySettings": {
"message": "ಗೂಢ ಲಿಪೀಕರಣ ಕೀ ಸೆಟ್ಟಿಂಗ್ಗಳು"
},
"kdfAlgorithm": {
"message": "ಕೆಡಿಎಫ್ ಅಲ್ಗಾರಿದಮ್"
},
"kdfIterations": {
"message": "ಕೆಡಿಎಫ್ ಪುನರಾವರ್ತನೆಗಳು"
},
"kdfIterationsDesc": {
"message": "ಹೆಚ್ಚಿನ ಕೆಡಿಎಫ್ ಪುನರಾವರ್ತನೆಗಳು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಆಕ್ರಮಣಕಾರರಿಂದ ವಿವೇಚನಾರಹಿತವಾಗಿ ರಕ್ಷಿಸಲು ಸಹಾಯ ಮಾಡುತ್ತದೆ. $VALUE$ ಅಥವಾ ಹೆಚ್ಚಿನ ಮೌಲ್ಯವನ್ನು ನಾವು ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ.",
"placeholders": {
"value": {
"content": "$1",
"example": "100,000"
}
}
},
"kdfIterationsWarning": {
"message": "ನಿಮ್ಮ ಕೆಡಿಎಫ್ ಪುನರಾವರ್ತನೆಗಳನ್ನು ತುಂಬಾ ಹೆಚ್ಚು ಹೊಂದಿಸುವುದರಿಂದ ನಿಧಾನವಾದ ಸಿಪಿಯು ಹೊಂದಿರುವ ಸಾಧನಗಳಲ್ಲಿ ಬಿಟ್ವಾರ್ಡೆನ್ಗೆ ಲಾಗ್ ಇನ್ ಆಗುವಾಗ (ಮತ್ತು ಅನ್ಲಾಕ್ ಮಾಡುವಾಗ) ಕಳಪೆ ಕಾರ್ಯಕ್ಷಮತೆಗೆ ಕಾರಣವಾಗಬಹುದು. $INCREMENT$ ನ ಏರಿಕೆಗಳಲ್ಲಿ ಮೌಲ್ಯವನ್ನು ಹೆಚ್ಚಿಸಲು ನಾವು ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ ಮತ್ತು ನಂತರ ನಿಮ್ಮ ಎಲ್ಲಾ ಸಾಧನಗಳನ್ನು ಪರೀಕ್ಷಿಸಿ.",
"placeholders": {
"increment": {
"content": "$1",
"example": "50,000"
}
}
},
"changeKdf": {
"message": "ಕೆಡಿಎಫ್ ಬದಲಾಯಿಸಿ"
},
"encKeySettingsChanged": {
"message": "ಗೂಢ ಲಿಪೀಕರಣ ಕೀ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ"
},
"dangerZone": {
"message": "ಅಪಾಯ ವಲಯ"
},
"dangerZoneDesc": {
"message": "ಎಚ್ಚರಿಕೆಯಿಂದ, ಈ ಕ್ರಿಯೆಗಳು ಹಿಂತಿರುಗಿಸಲಾಗುವುದಿಲ್ಲ!"
},
"deauthorizeSessions": {
"message": "ಸೆಷನ್ಗಳನ್ನು ಅನಧಿಕೃತಗೊಳಿಸಿ"
},
"deauthorizeSessionsDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತೊಂದು ಸಾಧನದಲ್ಲಿ ಲಾಗ್ ಇನ್ ಮಾಡಲಾಗಿದೆ? ನೀವು ಈ ಹಿಂದೆ ಬಳಸಿದ ಎಲ್ಲಾ ಕಂಪ್ಯೂಟರ್ ಅಥವಾ ಸಾಧನಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಕೆಳಗೆ ಮುಂದುವರಿಯಿರಿ. ನೀವು ಈ ಹಿಂದೆ ಸಾರ್ವಜನಿಕ ಕಂಪ್ಯೂಟರ್ ಅನ್ನು ಬಳಸಿದ್ದರೆ ಅಥವಾ ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಿಮ್ಮದಲ್ಲದ ಸಾಧನದಲ್ಲಿ ಆಕಸ್ಮಿಕವಾಗಿ ಉಳಿಸಿದ್ದರೆ ಈ ಸುರಕ್ಷತಾ ಹಂತವನ್ನು ಶಿಫಾರಸು ಮಾಡಲಾಗುತ್ತದೆ. ಈ ಹಂತವು ಈ ಹಿಂದೆ ನೆನಪಿನಲ್ಲಿರುವ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಸೆಷನ್ಗಳನ್ನು ಸಹ ತೆರವುಗೊಳಿಸುತ್ತದೆ."
},
"deauthorizeSessionsWarning": {
"message": "ಮುಂದುವರಿಯುವುದರಿಂದ ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಸೆಷನ್ನಿಂದ ನಿಮ್ಮನ್ನು ಲಾಗ್ಔಟ್ ಮಾಡುತ್ತದೆ, ನಿಮಗೆ ಮತ್ತೆ ಲಾಗ್ ಇನ್ ಆಗುವ ಅಗತ್ಯವಿರುತ್ತದೆ. ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ ಮತ್ತೆ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ಗೆ ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ. ಇತರ ಸಾಧನಗಳಲ್ಲಿ ಸಕ್ರಿಯ ಸೆಷನ್ಗಳು ಒಂದು ಗಂಟೆಯವರೆಗೆ ಸಕ್ರಿಯವಾಗಿ ಮುಂದುವರಿಯಬಹುದು."
},
"sessionsDeauthorized": {
"message": "ಎಲ್ಲಾ ಸೆಷನ್ಗಳು ಅನಧಿಕೃತವಾಗಿವೆ"
},
"purgeVault": {
"message": "ವಾಲ್ಟ್ ಅನ್ನು ಶುದ್ಧೀಕರಿಸಿ"
},
"purgedOrganizationVault": {
"message": "ಶುದ್ಧೀಕರಿಸಿದ ಸಂಸ್ಥೆ ವಾಲ್ಟ್."
},
"vaultAccessedByProvider": {
"message": "Vault accessed by provider."
},
"purgeVaultDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಎಲ್ಲಾ ಐಟಂಗಳು ಮತ್ತು ಫೋಲ್ಡರ್ಗಳನ್ನು ಅಳಿಸಲು ಕೆಳಗೆ ಮುಂದುವರಿಯಿರಿ. ನೀವು ಹಂಚಿಕೊಳ್ಳುವ ಸಂಸ್ಥೆಗೆ ಸೇರಿದ ವಸ್ತುಗಳನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ."
},
"purgeOrgVaultDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಎಲ್ಲಾ ಐಟಂಗಳು ಮತ್ತು ಫೋಲ್ಡರ್ಗಳನ್ನು ಅಳಿಸಲು ಕೆಳಗೆ ಮುಂದುವರಿಯಿರಿ. ನೀವು ಹಂಚಿಕೊಳ್ಳುವ ಸಂಸ್ಥೆಗೆ ಸೇರಿದ ವಸ್ತುಗಳನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ."
},
"purgeVaultWarning": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಶುದ್ಧೀಕರಿಸುವುದು ಶಾಶ್ವತವಾಗಿದೆ. ಅದನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
},
"vaultPurged": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಶುದ್ಧೀಕರಿಸಲಾಗಿದೆ."
},
"deleteAccount": {
"message": "ಖಾತೆ ಅಳಿಸಿ"
},
"deleteAccountDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ಎಲ್ಲಾ ಸಂಬಂಧಿತ ಡೇಟಾವನ್ನು ಅಳಿಸಲು ಕೆಳಗೆ ಮುಂದುವರಿಯಿರಿ."
},
"deleteAccountWarning": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅಳಿಸುವುದು ಶಾಶ್ವತವಾಗಿದೆ. ಅದನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
},
"accountDeleted": {
"message": "ಖಾತೆಯನ್ನು ಅಳಿಸಲಾಗಿದೆ"
},
"accountDeletedDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮುಚ್ಚಲಾಗಿದೆ ಮತ್ತು ಎಲ್ಲಾ ಸಂಬಂಧಿತ ಡೇಟಾವನ್ನು ಅಳಿಸಲಾಗಿದೆ."
},
"myAccount": {
"message": "ನನ್ನ ಖಾತೆ"
},
"tools": {
"message": "ಉಪಕರಣ"
},
"importData": {
"message": "ಡೇಟಾವನ್ನು ಆಮದು ಮಾಡಿ"
},
"importError": {
"message": "ಆಮದು ದೋಷ"
},
"importErrorDesc": {
"message": "ನೀವು ಆಮದು ಮಾಡಲು ಪ್ರಯತ್ನಿಸಿದ ಡೇಟಾದಲ್ಲಿ ಸಮಸ್ಯೆ ಇದೆ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಮೂಲ ಫೈಲ್ನಲ್ಲಿ ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ದೋಷಗಳನ್ನು ಪರಿಹರಿಸಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
},
"importSuccess": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ಗೆ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಆಮದು ಮಾಡಲಾಗಿದೆ."
},
"importWarning": {
"message": "ನೀವು $ORGANIZATION$ ಗೆ ಡೇಟಾವನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳುತ್ತಿದ್ದೀರಿ. ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಈ ಸಂಸ್ಥೆಯ ಸದಸ್ಯರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಬಹುದು. ನೀವು ಮುಂದುವರಿಯಲು ಬಯಸುವಿರಾ?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"importFormatError": {
"message": "ಡೇಟಾವನ್ನು ಸರಿಯಾಗಿ ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಆಮದು ಫೈಲ್ ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."
},
"importNothingError": {
"message": "ಯಾವುದನ್ನೂ ಆಮದು ಮಾಡಿಕೊಳ್ಳಲಾಗಿಲ್ಲ."
},
"importEncKeyError": {
"message": "ರಫ್ತು ಮಾಡಿದ ಫೈಲ್ ಅನ್ನು ಡೀಕ್ರಿಪ್ಟ್ ಮಾಡುವಲ್ಲಿ ದೋಷ. ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಲು ಬಳಸಿದ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಗೆ ನಿಮ್ಮ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ."
},
"selectFormat": {
"message": "ಆಮದು ಫೈಲ್ನ ಸ್ವರೂಪವನ್ನು ಆಯ್ಕೆಮಾಡಿ"
},
"selectImportFile": {
"message": "ಆಮದು ಫೈಲ್ ಆಯ್ಕೆಮಾಡಿ"
},
"orCopyPasteFileContents": {
"message": "ಅಥವಾ ಆಮದು ಫೈಲ್ ವಿಷಯಗಳನ್ನು ನಕಲಿಸಿ / ಅಂಟಿಸಿ"
},
"instructionsFor": {
"message": "$NAME$ ಸೂಚನೆಗಳು",
"description": "The title for the import tool instructions.",
"placeholders": {
"name": {
"content": "$1",
"example": "LastPass (csv)"
}
}
},
"options": {
"message": "ಆಯ್ಕೆಗಳು"
},
"optionsDesc": {
"message": "ನಿಮ್ಮ ವೆಬ್ ವಾಲ್ಟ್ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ."
},
"optionsUpdated": {
"message": "ಆಯ್ಕೆಗಳನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ"
},
"language": {
"message": "ಭಾಷೆ"
},
"languageDesc": {
"message": "ವೆಬ್ ವಾಲ್ಟ್ ಬಳಸುವ ಭಾಷೆಯನ್ನು ಬದಲಾಯಿಸಿ."
},
"disableIcons": {
"message": "ವೆಬ್ಸೈಟ್ ಚಿಹ್ನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
},
"disableIconsDesc": {
"message": "ವೆಬ್ಸೈಟ್ ಐಕಾನ್ಗಳು ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಪ್ರತಿ ಲಾಗಿನ್ ಐಟಂನ ಪಕ್ಕದಲ್ಲಿ ಗುರುತಿಸಬಹುದಾದ ಚಿತ್ರವನ್ನು ಒದಗಿಸುತ್ತದೆ."
},
"enableGravatars": {
"message": "Gravatars ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ",
"description": "'Gravatar' is the name of a service. See www.gravatar.com"
},
"enableGravatarsDesc": {
"message": "Gravatar.com ನಿಂದ ಲೋಡ್ ಮಾಡಲಾದ ಅವತಾರ್ ಚಿತ್ರಗಳನ್ನು ಬಳಸಿ."
},
"enableFullWidth": {
"message": "ಪೂರ್ಣ ಅಗಲ ವಿನ್ಯಾಸವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ",
"description": "Allows scaling the web vault UI's width"
},
"enableFullWidthDesc": {
"message": "ಬ್ರೌಸರ್ ವಿಂಡೋದ ಪೂರ್ಣ ಅಗಲವನ್ನು ವಿಸ್ತರಿಸಲು ವೆಬ್ ವಾಲ್ಟ್ ಅನ್ನು ಅನುಮತಿಸಿ."
},
"default": {
"message": "ಡಿಫಾಲ್ಟ್"
},
"domainRules": {
"message": "ಡೊಮೇನ್ ನಿಯಮಗಳು"
},
"domainRulesDesc": {
"message": "ನೀವು ಅನೇಕ ವಿಭಿನ್ನ ವೆಬ್ಸೈಟ್ ಡೊಮೇನ್ಗಳಲ್ಲಿ ಒಂದೇ ರೀತಿಯ ಲಾಗಿನ್ ಹೊಂದಿದ್ದರೆ, ನೀವು ವೆಬ್ಸೈಟ್ ಅನ್ನು \"ಸಮಾನ\" ಎಂದು ಗುರುತಿಸಬಹುದು. \"ಗ್ಲೋಬಲ್\" ಡೊಮೇನ್ಗಳು ನಿಮಗಾಗಿ ಈಗಾಗಲೇ ಬಿಟ್ವಾರ್ಡೆನ್ ರಚಿಸಿದವು."
},
"globalEqDomains": {
"message": "ಜಾಗತಿಕ ಸಮಾನ ಡೊಮೇನ್ಗಳು"
},
"customEqDomains": {
"message": "ಕಸ್ಟಮ್ ಸಮಾನ ಡೊಮೇನ್ಗಳು"
},
"exclude": {
"message": "ಹೊರತುಪಡಿಸಿ"
},
"include": {
"message": "ಸೇರಿಸಿ"
},
"customize": {
"message": "ಕಸ್ಟಮೈಸ್ ಮಾಡಿ"
},
"newCustomDomain": {
"message": "ಹೊಸ ಕಸ್ಟಮ್ ಡೊಮೇನ್"
},
"newCustomDomainDesc": {
"message": "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಟ್ಟ ಡೊಮೇನ್ಗಳ ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ. \"ಮೂಲ\" ಡೊಮೇನ್ಗಳನ್ನು ಮಾತ್ರ ಅನುಮತಿಸಲಾಗಿದೆ. ಸಬ್ಡೊಮೇನ್ಗಳನ್ನು ನಮೂದಿಸಬೇಡಿ. ಉದಾಹರಣೆಗೆ, \"www.google.com\" ಬದಲಿಗೆ \"google.com\" ಅನ್ನು ನಮೂದಿಸಿ. ಆಂಡ್ರಾಯ್ಡ್ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇತರ ವೆಬ್ಸೈಟ್ ಡೊಮೇನ್ಗಳೊಂದಿಗೆ ಸಂಯೋಜಿಸಲು ನೀವು \"androidapp: //package.name\" ಅನ್ನು ಸಹ ನಮೂದಿಸಬಹುದು."
},
"customDomainX": {
"message": "ಕಸ್ಟಮ್ ಡೊಮೇನ್ $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"domainsUpdated": {
"message": "ಡೊಮೇನ್ಗಳನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ"
},
"twoStepLogin": {
"message": "ಎರಡು ಹಂತದ ಲಾಗಿನ್"
},
"twoStepLoginDesc": {
"message": "ಲಾಗಿನ್ ಆಗುವಾಗ ಹೆಚ್ಚುವರಿ ಹಂತದ ಅಗತ್ಯವಿರುವ ಮೂಲಕ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಸುರಕ್ಷಿತಗೊಳಿಸಿ."
},
"twoStepLoginOrganizationDesc": {
"message": "ಸಂಸ್ಥೆಯ ಮಟ್ಟದಲ್ಲಿ ಪೂರೈಕೆದಾರರನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡುವ ಮೂಲಕ ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಬಳಕೆದಾರರಿಗೆ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅಗತ್ಯವಿದೆ."
},
"twoStepLoginRecoveryWarning": {
"message": "ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವುದರಿಂದ ನಿಮ್ಮ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯಿಂದ ನಿಮ್ಮನ್ನು ಶಾಶ್ವತವಾಗಿ ಲಾಕ್ ಮಾಡಬಹುದು. ನಿಮ್ಮ ಸಾಮಾನ್ಯ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಪೂರೈಕೆದಾರರನ್ನು ನೀವು ಇನ್ನು ಮುಂದೆ ಬಳಸಲಾಗದಿದ್ದಲ್ಲಿ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ ನಿಮಗೆ ಅನುಮತಿಸುತ್ತದೆ (ಉದಾ. ನಿಮ್ಮ ಸಾಧನವನ್ನು ನೀವು ಕಳೆದುಕೊಳ್ಳುತ್ತೀರಿ). ನಿಮ್ಮ ಖಾತೆಗೆ ನೀವು ಪ್ರವೇಶವನ್ನು ಕಳೆದುಕೊಂಡರೆ ಬಿಟ್ವಾರ್ಡನ್ ಬೆಂಬಲವು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ. ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ ಅನ್ನು ಬರೆಯಲು ಅಥವಾ ಮುದ್ರಿಸಲು ಮತ್ತು ಅದನ್ನು ಸುರಕ್ಷಿತ ಸ್ಥಳದಲ್ಲಿ ಇರಿಸಲು ನಾವು ಶಿಫಾರಸು ಮಾಡುತ್ತೇವೆ."
},
"viewRecoveryCode": {
"message": "ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ ವೀಕ್ಷಿಸಿ"
},
"providers": {
"message": "ಸೇವಾದಾರರು",
"description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc."
},
"enable": {
"message": "ಸಕ್ರಿಯಗೊಳಿಸಿ"
},
"enabled": {
"message": "ಸಕ್ರಿಯಗೊಳಿಸಿದೆ"
},
"premium": {
"message": "ಪ್ರೀಮಿಯಮ್",
"description": "Premium Membership"
},
"premiumMembership": {
"message": "ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವ"
},
"premiumRequired": {
"message": "ಪ್ರೀಮಿಯಂ ಅಗತ್ಯವಿದೆ"
},
"premiumRequiredDesc": {
"message": "ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವ ಅಗತ್ಯವಿದೆ."
},
"youHavePremiumAccess": {
"message": "ನಿಮಗೆ ಪ್ರೀಮಿಯಂ ಪ್ರವೇಶವಿದೆ"
},
"alreadyPremiumFromOrg": {
"message": "ನೀವು ಸದಸ್ಯರಾಗಿರುವ ಸಂಸ್ಥೆಯ ಕಾರಣದಿಂದಾಗಿ ನೀವು ಈಗಾಗಲೇ ಪ್ರೀಮಿಯಂ ವೈಶಿಷ್ಟ್ಯಗಳಿಗೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿದ್ದೀರಿ."
},
"manage": {
"message": "ವ್ಯವಸ್ಥಾಪಕ"
},
"disable": {
"message": "ನಿಷ್ಕ್ರಿಯೆಗೊಳಿಸಿ"
},
"twoStepLoginProviderEnabled": {
"message": "ಈ ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಒದಗಿಸುವವರನ್ನು ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
},
"twoStepLoginAuthDesc": {
"message": "ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ."
},
"twoStepAuthenticatorDesc": {
"message": "ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ನೊಂದಿಗೆ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಹೊಂದಿಸಲು ಈ ಹಂತಗಳನ್ನು ಅನುಸರಿಸಿ:"
},
"twoStepAuthenticatorDownloadApp": {
"message": "ಎರಡು ಹಂತದ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"
},
"twoStepAuthenticatorNeedApp": {
"message": "ಎರಡು-ಹಂತದ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅಗತ್ಯವಿದೆಯೇ? ಕೆಳಗಿನವುಗಳಲ್ಲಿ ಒಂದನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ"
},
"iosDevices": {
"message": "ಐಒಎಸ್ ಸಾಧನಗಳು"
},
"androidDevices": {
"message": "ಆಂಡ್ರಾಯ್ಡ್ ಸಾಧನಗಳು"
},
"windowsDevices": {
"message": "ವಿಂಡೋಸ್ ಸಾಧನಗಳು"
},
"twoStepAuthenticatorAppsRecommended": {
"message": "ಈ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಶಿಫಾರಸು ಮಾಡಲಾಗಿದೆ, ಆದಾಗ್ಯೂ, ಇತರ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗಳು ಸಹ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತವೆ."
},
"twoStepAuthenticatorScanCode": {
"message": "ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ನೊಂದಿಗೆ ಈ ಕ್ಯೂಆರ್ ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ"
},
"key": {
"message": "ಕೀ"
},
"twoStepAuthenticatorEnterCode": {
"message": "ಅಪ್ಲಿಕೇಶನ್ನಿಂದ ಫಲಿತಾಂಶದ 6 ಅಂಕಿಯ ಪರಿಶೀಲನೆ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ"
},
"twoStepAuthenticatorReaddDesc": {
"message": "ಒಂದು ವೇಳೆ ನೀವು ಅದನ್ನು ಮತ್ತೊಂದು ಸಾಧನಕ್ಕೆ ಸೇರಿಸಬೇಕಾದರೆ, ನಿಮ್ಮದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗೆ ಅಗತ್ಯವಿರುವ ಕ್ಯೂಆರ್ ಕೋಡ್ (ಅಥವಾ ಕೀ) ಕೆಳಗೆ ಇದೆ."
},
"twoStepDisableDesc": {
"message": "ಈ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಪೂರೈಕೆದಾರರನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"twoStepDisabled": {
"message": "ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಒದಗಿಸುವವರನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
},
"twoFactorYubikeyAdd": {
"message": "ನಿಮ್ಮ ಖಾತೆಗೆ ಹೊಸ ಯೂಬಿಕೆ ಸೇರಿಸಿ"
},
"twoFactorYubikeyPlugIn": {
"message": "ನಿಮ್ಮ ಕಂಪ್ಯೂಟರ್ನ ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ಗೆ ಯೂಬಿಕಿಯನ್ನು ಪ್ಲಗ್ ಮಾಡಿ."
},
"twoFactorYubikeySelectKey": {
"message": "ಕೆಳಗಿನ ಮೊದಲ ಖಾಲಿ ಯುಬಿಕೆ ಇನ್ಪುಟ್ ಕ್ಷೇತ್ರವನ್ನು ಆಯ್ಕೆಮಾಡಿ."
},
"twoFactorYubikeyTouchButton": {
"message": "ಯೂಬಿಕಿಯ ಬಟನ್ ಸ್ಪರ್ಶಿಸಿ."
},
"twoFactorYubikeySaveForm": {
"message": "ಫಾರ್ಮ್ ಅನ್ನು ಉಳಿಸಿ."
},
"twoFactorYubikeyWarning": {
"message": "ಪ್ಲಾಟ್ಫಾರ್ಮ್ ಮಿತಿಗಳ ಕಾರಣ, ಎಲ್ಲಾ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳಲ್ಲಿ ಯೂಬಿಕೀಸ್ ಅನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಇನ್ನೊಂದು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಪೂರೈಕೆದಾರರನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು ಇದರಿಂದ ಯುಬಿಕೀಸ್ ಅನ್ನು ಬಳಸಲಾಗದಿದ್ದಾಗ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಬಹುದು. ಬೆಂಬಲಿತ ವೇದಿಕೆಗಳು:"
},
"twoFactorYubikeySupportUsb": {
"message": "ವೆಬ್ ವಾಲ್ಟ್, ಡೆಸ್ಕ್ಟಾಪ್ ಅಪ್ಲಿಕೇಶನ್, ಸಿಎಲ್ಐ ಮತ್ತು ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ ಹೊಂದಿರುವ ಸಾಧನದಲ್ಲಿನ ಎಲ್ಲಾ ಬ್ರೌಸರ್ ವಿಸ್ತರಣೆಗಳು ನಿಮ್ಮ ಯೂಬಿಕಿಯನ್ನು ಸ್ವೀಕರಿಸಬಹುದು."
},
"twoFactorYubikeySupportMobile": {
"message": "ಎನ್ಎಫ್ಸಿ ಸಾಮರ್ಥ್ಯಗಳನ್ನು ಹೊಂದಿರುವ ಸಾಧನದಲ್ಲಿನ ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್ಗಳು ಅಥವಾ ನಿಮ್ಮ ಯೂಬಿಕಿಯನ್ನು ಸ್ವೀಕರಿಸುವ ಡೇಟಾ ಪೋರ್ಟ್."
},
"yubikeyX": {
"message": "ಯುಬಿಕೆ $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"u2fkeyX": {
"message": "ಯು 2 ಎಫ್ ಕೀ $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"webAuthnkeyX": {
"message": "ವೆಬ್ಆಥ್ನ್ ಕೀ $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"nfcSupport": {
"message": "ಎನ್ಎಫ್ಸಿ ಬೆಂಬಲ"
},
"twoFactorYubikeySupportsNfc": {
"message": "ನನ್ನ ಕೀಲಿಗಳಲ್ಲಿ ಒಂದು ಎನ್ಎಫ್ಸಿಯನ್ನು ಬೆಂಬಲಿಸುತ್ತದೆ."
},
"twoFactorYubikeySupportsNfcDesc": {
"message": "ನಿಮ್ಮ ಯೂಬಿಕೀಸ್ ಒಬ್ಬರು ಎನ್ಎಫ್ಸಿಯನ್ನು ಬೆಂಬಲಿಸಿದರೆ (ಉದಾಹರಣೆಗೆ ಯೂಬಿಕೀ ಎನ್ಇಒ), ಎನ್ಎಫ್ಸಿ ಲಭ್ಯತೆ ಪತ್ತೆಯಾದಾಗಲೆಲ್ಲಾ ಮೊಬೈಲ್ ಸಾಧನಗಳಲ್ಲಿ ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
},
"yubikeysUpdated": {
"message": "ಯೂಬಿಕೀಸ್ ನವೀಕರಿಸಲಾಗಿದೆ"
},
"disableAllKeys": {
"message": "ಎಲ್ಲಾ ಕೀಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
},
"twoFactorDuoDesc": {
"message": "ನಿಮ್ಮ ಡ್ಯುವೋ ನಿರ್ವಹಣೆ ಫಲಕದಿಂದ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ ಮಾಹಿತಿಯನ್ನು ನಮೂದಿಸಿ."
},
"twoFactorDuoIntegrationKey": {
"message": "ಏಕೀಕರಣ ಕೀ"
},
"twoFactorDuoSecretKey": {
"message": "ರಹಸ್ಯ ಸಂಕೇತ"
},
"twoFactorDuoApiHostname": {
"message": "API ಹೋಸ್ಟ್ ಹೆಸರು"
},
"twoFactorEmailDesc": {
"message": "ಇಮೇಲ್ನೊಂದಿಗೆ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಹೊಂದಿಸಲು ಈ ಹಂತಗಳನ್ನು ಅನುಸರಿಸಿ:"
},
"twoFactorEmailEnterEmail": {
"message": "ಪರಿಶೀಲನಾ ಕೋಡ್ಗಳನ್ನು ಸ್ವೀಕರಿಸಲು ನೀವು ಬಯಸುವ ಇಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ"
},
"twoFactorEmailEnterCode": {
"message": "ಫಲಿತಾಂಶದಿಂದ 6 ಅಂಕೆಗಳ ಪರಿಶೀಲನೆ ಕೋಡ್ ಅನ್ನು ಇಮೇಲ್ನಿಂದ ನಮೂದಿಸಿ"
},
"sendEmail": {
"message": "ಇಮೇಲ್ ಕಳುಹಿಸಿ"
},
"twoFactorU2fAdd": {
"message": "ನಿಮ್ಮ ಖಾತೆಗೆ FIDO U2F ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಸೇರಿಸಿ"
},
"removeU2fConfirmation": {
"message": "ಈ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"twoFactorWebAuthnAdd": {
"message": "ನಿಮ್ಮ ಖಾತೆಗೆ ವೆಬ್ಆಥ್ನ್ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಸೇರಿಸಿ"
},
"readKey": {
"message": "ಕೀಲಿಯನ್ನು ಓದಿ"
},
"keyCompromised": {
"message": "ಕೀ ಹೊಂದಾಣಿಕೆ ಮಾಡಲಾಗಿದೆ."
},
"twoFactorU2fGiveName": {
"message": "ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಗುರುತಿಸಲು ಸ್ನೇಹಪರ ಹೆಸರನ್ನು ನೀಡಿ."
},
"twoFactorU2fPlugInReadKey": {
"message": "ನಿಮ್ಮ ಕಂಪ್ಯೂಟರ್ನ ಯುಎಸ್ಬಿ ಪೋರ್ಟ್ನಲ್ಲಿ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಪ್ಲಗ್ ಮಾಡಿ ಮತ್ತು \"ರೀಡ್ ಕೀ\" ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"twoFactorU2fTouchButton": {
"message": "ಭದ್ರತಾ ಕೀಲಿಯು ಬಟನ್ ಹೊಂದಿದ್ದರೆ, ಅದನ್ನು ಸ್ಪರ್ಶಿಸಿ."
},
"twoFactorU2fSaveForm": {
"message": "ಫಾರ್ಮ್ ಅನ್ನು ಉಳಿಸಿ."
},
"twoFactorU2fWarning": {
"message": "ಪ್ಲಾಟ್ಫಾರ್ಮ್ ಮಿತಿಗಳ ಕಾರಣ, ಎಲ್ಲಾ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳಲ್ಲಿ FIDO U2F ಅನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಇನ್ನೊಂದು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಒದಗಿಸುವವರನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು ಇದರಿಂದ FIDO U2F ಅನ್ನು ಬಳಸಲಾಗದಿದ್ದಾಗ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಬಹುದು. ಬೆಂಬಲಿತ ವೇದಿಕೆಗಳು:"
},
"twoFactorU2fSupportWeb": {
"message": "ಯು 2 ಎಫ್ ಶಕ್ತಗೊಂಡ ಬ್ರೌಸರ್ ಹೊಂದಿರುವ ಡೆಸ್ಕ್ಟಾಪ್ / ಲ್ಯಾಪ್ಟಾಪ್ನಲ್ಲಿ ವೆಬ್ ವಾಲ್ಟ್ ಮತ್ತು ಬ್ರೌಸರ್ ವಿಸ್ತರಣೆಗಳು (ಕ್ರೋಮ್, ಒಪೇರಾ, ವಿವಾಲ್ಡಿ, ಅಥವಾ ಎಫ್ಐಡಿಒ ಯು 2 ಎಫ್ ಸಕ್ರಿಯಗೊಳಿಸಿದ ಫೈರ್ಫಾಕ್ಸ್)."
},
"twoFactorU2fWaiting": {
"message": "ನಿಮ್ಮ ಭದ್ರತಾ ಕೀಲಿಯ ಬಟನ್ ಸ್ಪರ್ಶಿಸಲು ನೀವು ಕಾಯುತ್ತಿದ್ದೀರಿ"
},
"twoFactorU2fClickSave": {
"message": "ಎರಡು ಹಂತದ ಲಾಗಿನ್ಗಾಗಿ ಈ ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಕೆಳಗಿನ \"ಉಳಿಸು\" ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"twoFactorU2fProblemReadingTryAgain": {
"message": "ಭದ್ರತಾ ಕೀಲಿಯನ್ನು ಓದುವಲ್ಲಿ ಸಮಸ್ಯೆ ಇದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು."
},
"twoFactorWebAuthnWarning": {
"message": "ಪ್ಲಾಟ್ಫಾರ್ಮ್ ಮಿತಿಗಳ ಕಾರಣ, ಎಲ್ಲಾ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳಲ್ಲಿ ವೆಬ್ಆಥ್ನ್ ಅನ್ನು ಬಳಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಇನ್ನೊಂದು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಒದಗಿಸುವವರನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು ಇದರಿಂದ ವೆಬ್ಆಥ್ನ್ ಅನ್ನು ಬಳಸಲಾಗದಿದ್ದಾಗ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಬಹುದು. ಬೆಂಬಲಿತ ವೇದಿಕೆಗಳು:"
},
"twoFactorWebAuthnSupportWeb": {
"message": "ವೆಬ್ಆಥ್ನ್ ಶಕ್ತಗೊಂಡ ಬ್ರೌಸರ್ನೊಂದಿಗೆ ಡೆಸ್ಕ್ಟಾಪ್ / ಲ್ಯಾಪ್ಟಾಪ್ನಲ್ಲಿ ವೆಬ್ ವಾಲ್ಟ್ ಮತ್ತು ಬ್ರೌಸರ್ ವಿಸ್ತರಣೆಗಳು (ಕ್ರೋಮ್, ಒಪೇರಾ, ವಿವಾಲ್ಡಿ, ಅಥವಾ ಎಫ್ಐಡಿಒ ಯು 2 ಎಫ್ ಸಕ್ರಿಯಗೊಳಿಸಿದ ಫೈರ್ಫಾಕ್ಸ್)."
},
"twoFactorRecoveryYourCode": {
"message": "ನಿಮ್ಮ ಬಿಟ್ವಾರ್ಡೆನ್ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್"
},
"twoFactorRecoveryNoCode": {
"message": "ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಪೂರೈಕೆದಾರರನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಲ್ಲ. ನೀವು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಒದಗಿಸುವವರನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದ ನಂತರ ನಿಮ್ಮ ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ಗಾಗಿ ನೀವು ಇಲ್ಲಿ ಮತ್ತೆ ಪರಿಶೀಲಿಸಬಹುದು."
},
"printCode": {
"message": "ಪ್ರಿಂಟ್ ಕೋಡ್",
"description": "Print 2FA recovery code"
},
"reports": {
"message": "ವರದಿಗಳು"
},
"reportsDesc": {
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
},
"unsecuredWebsitesReport": {
"message": "ಅಸುರಕ್ಷಿತ ವೆಬ್ಸೈಟ್ಗಳ ವರದಿ"
},
"unsecuredWebsitesReportDesc": {
"message": "Http:// ಯೋಜನೆಯೊಂದಿಗೆ ಅಸುರಕ್ಷಿತ ವೆಬ್ಸೈಟ್ಗಳನ್ನು ಬಳಸುವುದು ಅಪಾಯಕಾರಿ. ವೆಬ್ಸೈಟ್ ಅನುಮತಿಸಿದರೆ, ನೀವು ಅದನ್ನು ಯಾವಾಗಲೂ https:// ಸ್ಕೀಮ್ ಬಳಸಿ ಪ್ರವೇಶಿಸಬೇಕು ಇದರಿಂದ ನಿಮ್ಮ ಸಂಪರ್ಕವನ್ನು ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಲಾಗುತ್ತದೆ."
},
"unsecuredWebsitesFound": {
"message": "ಅಸುರಕ್ಷಿತ ವೆಬ್ಸೈಟ್ಗಳು ಕಂಡುಬಂದಿವೆ"
},
"unsecuredWebsitesFoundDesc": {
"message": "ಅಸುರಕ್ಷಿತ URI ಗಳೊಂದಿಗೆ ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ $COUNT$ ವಸ್ತುಗಳನ್ನು ನಾವು ಕಂಡುಕೊಂಡಿದ್ದೇವೆ. ವೆಬ್ಸೈಟ್ ಅನುಮತಿಸಿದರೆ ನೀವು ಅವರ ಯುಆರ್ಐ ಯೋಜನೆಯನ್ನು https: // ಗೆ ಬದಲಾಯಿಸಬೇಕು.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noUnsecuredWebsites": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಯಾವುದೇ ಐಟಂಗಳು ಅಸುರಕ್ಷಿತ ಯುಆರ್ಐಗಳನ್ನು ಹೊಂದಿಲ್ಲ."
},
"inactive2faReport": {
"message": "ನಿಷ್ಕ್ರಿಯ 2 ಎಫ್ಎ ವರದಿ"
},
"inactive2faReportDesc": {
"message": "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ (2 ಎಫ್ಎ) ನಿಮ್ಮ ಖಾತೆಗಳನ್ನು ಸುರಕ್ಷಿತಗೊಳಿಸಲು ಸಹಾಯ ಮಾಡುವ ಪ್ರಮುಖ ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ ಆಗಿದೆ. ವೆಬ್ಸೈಟ್ ಅದನ್ನು ನೀಡಿದರೆ, ನೀವು ಯಾವಾಗಲೂ ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು."
},
"inactive2faFound": {
"message": "2FA ಇಲ್ಲದೆ ಲಾಗಿನ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ"
},
"inactive2faFoundDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ $COUNT$ ವೆಬ್ಸೈಟ್ (ಗಳನ್ನು) ನಾವು ಕಂಡುಕೊಂಡಿದ್ದೇವೆ, ಅದನ್ನು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣದೊಂದಿಗೆ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗುವುದಿಲ್ಲ (2fa.directory ಪ್ರಕಾರ). ಈ ಖಾತೆಗಳನ್ನು ಮತ್ತಷ್ಟು ರಕ್ಷಿಸಲು, ನೀವು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noInactive2fa": {
"message": "ಕಾಣೆಯಾದ ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ ಸಂರಚನೆಯೊಂದಿಗೆ ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ ಯಾವುದೇ ವೆಬ್ಸೈಟ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ."
},
"instructions": {
"message": "ಸೂಚನೆಗಳು"
},
"exposedPasswordsReport": {
"message": "ಬಹಿರಂಗಪಡಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳ ವರದಿ"
},
"exposedPasswordsReportDesc": {
"message": "ಬಹಿರಂಗಪಡಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಪಾಸ್ವರ್ಡ್ಗಳಾಗಿವೆ, ಅವುಗಳು ತಿಳಿದಿರುವ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ ಬಹಿರಂಗಗೊಂಡಿವೆ, ಅವು ಸಾರ್ವಜನಿಕವಾಗಿ ಬಿಡುಗಡೆಯಾಗಿವೆ ಅಥವಾ ಹ್ಯಾಕರ್ಗಳು ಡಾರ್ಕ್ ವೆಬ್ನಲ್ಲಿ ಮಾರಾಟವಾಗುತ್ತವೆ."
},
"exposedPasswordsFound": {
"message": "ಬಹಿರಂಗಪಡಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಕಂಡುಬಂದಿವೆ"
},
"exposedPasswordsFoundDesc": {
"message": "ತಿಳಿದಿರುವ ದತ್ತಾಂಶ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ ಬಹಿರಂಗಗೊಂಡ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಹೊಂದಿರುವ ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ $COUNT$ ವಸ್ತುಗಳನ್ನು ನಾವು ಕಂಡುಕೊಂಡಿದ್ದೇವೆ. ಹೊಸ ಪಾಸ್ವರ್ಡ್ ಬಳಸಲು ನೀವು ಅವುಗಳನ್ನು ಬದಲಾಯಿಸಬೇಕು.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noExposedPasswords": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಯಾವುದೇ ಐಟಂಗಳು ತಿಳಿದಿರುವ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ ಬಹಿರಂಗಗೊಂಡ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಹೊಂದಿಲ್ಲ."
},
"checkExposedPasswords": {
"message": "ಬಹಿರಂಗಪಡಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ"
},
"exposedXTimes": {
"message": "ಬಹಿರಂಗಪಡಿಸಿದ $COUNT$ ಸಮಯ (ಗಳು)",
"placeholders": {
"count": {
"content": "$1",
"example": "52"
}
}
},
"weakPasswordsReport": {
"message": "ದುರ್ಬಲ ಪಾಸ್ವರ್ಡ್ಗಳ ವರದಿ"
},
"weakPasswordsReportDesc": {
"message": "ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಭೇದಿಸಲು ಬಳಸುವ ಹ್ಯಾಕರ್ಸ್ ಮತ್ತು ಸ್ವಯಂಚಾಲಿತ ಸಾಧನಗಳಿಂದ ದುರ್ಬಲ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಸುಲಭವಾಗಿ ಊಹಿಸಬಹುದು. ಬಲವಾದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ರಚಿಸಲು ಬಿಟ್ವಾರ್ಡನ್ ಪಾಸ್ವರ್ಡ್ ಜನರೇಟರ್ ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ."
},
"weakPasswordsFound": {
"message": "ದುರ್ಬಲ ಪಾಸ್ವರ್ಡ್ಗಳು ಕಂಡುಬಂದಿವೆ"
},
"weakPasswordsFoundDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ ಪ್ರಬಲವಲ್ಲದ ಪಾಸ್ವರ್ಡ್ಗಳೊಂದಿಗೆ $COUNT$ ವಸ್ತುಗಳನ್ನು ನಾವು ಕಂಡುಕೊಂಡಿದ್ದೇವೆ. ಬಲವಾದ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಬಳಸಲು ನೀವು ಅವುಗಳನ್ನು ನವೀಕರಿಸಬೇಕು.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noWeakPasswords": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಯಾವುದೇ ಐಟಂಗಳು ದುರ್ಬಲ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಹೊಂದಿಲ್ಲ."
},
"reusedPasswordsReport": {
"message": "ಮರುಬಳಕೆ ಮಾಡಿದ ಪಾಸ್ವರ್ಡ್ಗಳ ವರದಿ"
},
"reusedPasswordsReportDesc": {
"message": "ನೀವು ಬಳಸುವ ಸೇವೆಯು ರಾಜಿ ಮಾಡಿಕೊಂಡಿದ್ದರೆ, ಅದೇ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬೇರೆಡೆ ಮರುಬಳಕೆ ಮಾಡುವುದರಿಂದ ನಿಮ್ಮ ಹೆಚ್ಚಿನ ಆನ್ಲೈನ್ ಖಾತೆಗಳಿಗೆ ಹ್ಯಾಕರ್ಗಳು ಸುಲಭವಾಗಿ ಪ್ರವೇಶ ಪಡೆಯಬಹುದು. ಪ್ರತಿ ಖಾತೆ ಅಥವಾ ಸೇವೆಗೆ ನೀವು ಅನನ್ಯ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬಳಸಬೇಕು."
},
"reusedPasswordsFound": {
"message": "ಮರುಬಳಕೆ ಮಾಡಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಕಂಡುಬಂದಿವೆ"
},
"reusedPasswordsFoundDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ ಮರುಬಳಕೆ ಮಾಡಲಾಗುತ್ತಿರುವ $COUNT$ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ನಾವು ಕಂಡುಕೊಂಡಿದ್ದೇವೆ. ನೀವು ಅವುಗಳನ್ನು ಅನನ್ಯ ಮೌಲ್ಯಕ್ಕೆ ಬದಲಾಯಿಸಬೇಕು.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noReusedPasswords": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿನ ಯಾವುದೇ ಲಾಗಿನ್ಗಳು ಮರುಬಳಕೆ ಮಾಡಲಾಗುತ್ತಿರುವ ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಹೊಂದಿಲ್ಲ."
},
"reusedXTimes": {
"message": "$COUNT$ ಬಾರಿ ಮರುಬಳಕೆ ಮಾಡಲಾಗಿದೆ",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"dataBreachReport": {
"message": "ಡೇಟಾ ಉಲ್ಲಂಘನೆ ವರದಿ"
},
"breachDesc": {
"message": "\"ಉಲ್ಲಂಘನೆ\" ಎನ್ನುವುದು ಸೈಟ್ನ ಡೇಟಾವನ್ನು ಹ್ಯಾಕರ್ಗಳು ಅಕ್ರಮವಾಗಿ ಪ್ರವೇಶಿಸಿ ನಂತರ ಸಾರ್ವಜನಿಕವಾಗಿ ಬಿಡುಗಡೆ ಮಾಡಿದ ಘಟನೆಯಾಗಿದೆ. ರಾಜಿ ಮಾಡಿಕೊಂಡ ಡೇಟಾದ ಪ್ರಕಾರಗಳನ್ನು ಪರಿಶೀಲಿಸಿ (ಇಮೇಲ್ ವಿಳಾಸಗಳು, ಪಾಸ್ವರ್ಡ್ಗಳು, ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್ಗಳು ಇತ್ಯಾದಿ) ಮತ್ತು ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಬದಲಾಯಿಸುವಂತಹ ಸೂಕ್ತ ಕ್ರಮ ತೆಗೆದುಕೊಳ್ಳಿ."
},
"breachCheckUsernameEmail": {
"message": "ನೀವು ಬಳಸುವ ಯಾವುದೇ ಬಳಕೆದಾರಹೆಸರುಗಳು ಅಥವಾ ಇಮೇಲ್ ವಿಳಾಸಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."
},
"checkBreaches": {
"message": "ಉಲ್ಲಂಘನೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ"
},
"breachUsernameNotFound": {
"message": "ತಿಳಿದಿರುವ ಯಾವುದೇ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ $USERNAME$\nಕಂಡುಬಂದಿಲ್ಲ.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
}
}
},
"goodNews": {
"message": "ಸಿಹಿ ಸುದ್ದಿ",
"description": "ex. Good News, No Breached Accounts Found!"
},
"breachUsernameFound": {
"message": "ಆನ್ಲೈನ್ನಲ್ಲಿ $COUNT$ ವಿಭಿನ್ನ ಡೇಟಾ ಉಲ್ಲಂಘನೆಗಳಲ್ಲಿ $USERNAME$ ಕಂಡುಬಂದಿದೆ.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
},
"count": {
"content": "$2",
"example": "7"
}
}
},
"breachFound": {
"message": "ಉಲ್ಲಂಘಿಸಿದ ಖಾತೆಗಳು ಕಂಡುಬಂದಿವೆ"
},
"compromisedData": {
"message": "ರಾಜಿ ಮಾಡಿಕೊಂಡ ಡೇಟಾ"
},
"website": {
"message": "ಜಾಲತಾಣ"
},
"affectedUsers": {
"message": "ಬಾಧಿತ ಬಳಕೆದಾರರು"
},
"breachOccurred": {
"message": "ಉಲ್ಲಂಘನೆ ಸಂಭವಿಸಿದೆ"
},
"breachReported": {
"message": "ಉಲ್ಲಂಘನೆ ವರದಿಯಾಗಿದೆ"
},
"reportError": {
"message": "ವರದಿಯನ್ನು ಲೋಡ್ ಮಾಡಲು ಪ್ರಯತ್ನಿಸುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು"
},
"billing": {
"message": "ಬಿಲ್ಲಿಂಗ್"
},
"accountCredit": {
"message": "ಖಾತೆ ಕ್ರೆಡಿಟ್",
"description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)."
},
"accountBalance": {
"message": "ಖಾತೆ ಬ್ಯಾಲೆನ್ಸ್",
"description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)."
},
"addCredit": {
"message": "ಕ್ರೆಡಿಟ್ ಸೇರಿಸಿ",
"description": "Add more credit to your account's balance."
},
"amount": {
"message": "ಮೊತ್ತ",
"description": "Dollar amount, or quantity."
},
"creditDelayed": {
"message": "ಪಾವತಿಯನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಿದ ನಂತರ ಸೇರಿಸಿದ ಕ್ರೆಡಿಟ್ ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಗೋಚರಿಸುತ್ತದೆ. ಕೆಲವು ಪಾವತಿ ವಿಧಾನಗಳು ವಿಳಂಬವಾಗುತ್ತವೆ ಮತ್ತು ಇತರರಿಗಿಂತ ಪ್ರಕ್ರಿಯೆಗೊಳಿಸಲು ಹೆಚ್ಚು ಸಮಯ ತೆಗೆದುಕೊಳ್ಳಬಹುದು."
},
"makeSureEnoughCredit": {
"message": "ಈ ಖರೀದಿಗೆ ನಿಮ್ಮ ಖಾತೆಗೆ ಸಾಕಷ್ಟು ಕ್ರೆಡಿಟ್ ಲಭ್ಯವಿದೆ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ. ನಿಮ್ಮ ಖಾತೆಗೆ ಸಾಕಷ್ಟು ಕ್ರೆಡಿಟ್ ಲಭ್ಯವಿಲ್ಲದಿದ್ದರೆ, ಫೈಲ್ನಲ್ಲಿ ನಿಮ್ಮ ಡೀಫಾಲ್ಟ್ ಪಾವತಿ ವಿಧಾನವನ್ನು ವ್ಯತ್ಯಾಸಕ್ಕಾಗಿ ಬಳಸಲಾಗುತ್ತದೆ. ಬಿಲ್ಲಿಂಗ್ ಪುಟದಿಂದ ನಿಮ್ಮ ಖಾತೆಗೆ ನೀವು ಕ್ರೆಡಿಟ್ ಸೇರಿಸಬಹುದು."
},
"creditAppliedDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಕ್ರೆಡಿಟ್ ಅನ್ನು ಖರೀದಿ ಮಾಡಲು ಬಳಸಬಹುದು. ಲಭ್ಯವಿರುವ ಯಾವುದೇ ಕ್ರೆಡಿಟ್ ಅನ್ನು ಈ ಖಾತೆಗಾಗಿ ರಚಿಸಲಾದ ಇನ್ವಾಯ್ಸ್ಗಳಿಗೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಅನ್ವಯಿಸಲಾಗುತ್ತದೆ."
},
"goPremium": {
"message": "ಪ್ರೀಮಿಯಮ್ ಮೆಂಬರ್ ಆಗಿ",
"description": "Another way of saying \"Get a premium membership\""
},
"premiumUpdated": {
"message": "ನೀವು ಪ್ರೀಮಿಯಂಗೆ ಅಪ್ಗ್ರೇಡ್ ಮಾಡಿದ್ದೀರಿ."
},
"premiumUpgradeUnlockFeatures": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವಕ್ಕೆ ಅಪ್ಗ್ರೇಡ್ ಮಾಡಿ ಮತ್ತು ಕೆಲವು ಉತ್ತಮ ಹೆಚ್ಚುವರಿ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಿ."
},
"premiumSignUpStorage": {
"message": "ಫೈಲ್ ಲಗತ್ತುಗಳಿಗಾಗಿ 1 ಜಿಬಿ ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ಸಂಗ್ರಹ."
},
"premiumSignUpTwoStep": {
"message": "ಹೆಚ್ಚುವರಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಆಯ್ಕೆಗಳಾದ ಯೂಬಿಕೆ, ಎಫ್ಐಡಿಒ ಯು 2 ಎಫ್, ಮತ್ತು ಡ್ಯುವೋ."
},
"premiumSignUpEmergency": {
"message": "ತುರ್ತು ಪ್ರವೇಶ"
},
"premiumSignUpReports": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಸುರಕ್ಷಿತವಾಗಿರಿಸಲು ಪಾಸ್ವರ್ಡ್ ನೈರ್ಮಲ್ಯ, ಖಾತೆ ಆರೋಗ್ಯ ಮತ್ತು ಡೇಟಾ ಉಲ್ಲಂಘನೆ ವರದಿಗಳು."
},
"premiumSignUpTotp": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿನ ಲಾಗಿನ್ಗಳಿಗಾಗಿ TOTP ಪರಿಶೀಲನಾ ಕೋಡ್ (2FA) ಜನರೇಟರ್."
},
"premiumSignUpSupport": {
"message": "ಆದ್ಯತೆಯ ಗ್ರಾಹಕ ಬೆಂಬಲ."
},
"premiumSignUpFuture": {
"message": "ಎಲ್ಲಾ ಭವಿಷ್ಯದ ಪ್ರೀಮಿಯಂ ವೈಶಿಷ್ಟ್ಯಗಳು. ಹೆಚ್ಚು ಶೀಘ್ರದಲ್ಲೇ ಬರಲಿದೆ!"
},
"premiumPrice": {
"message": "ಎಲ್ಲವೂ ಕೇವಲ $PRICE$ / ವರ್ಷಕ್ಕೆ!",
"placeholders": {
"price": {
"content": "$1",
"example": "$10"
}
}
},
"addons": {
"message": "ಆಡ್ಸಾನ್ಗಳು"
},
"premiumAccess": {
"message": "ಪ್ರೀಮಿಯಂ ಪ್ರವೇಶ"
},
"premiumAccessDesc": {
"message": "$PRICE$ / $INTERVAL$ ಗಾಗಿ ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಎಲ್ಲಾ ಸದಸ್ಯರಿಗೆ ನೀವು ಪ್ರೀಮಿಯಂ ಪ್ರವೇಶವನ್ನು ಸೇರಿಸಬಹುದು.",
"placeholders": {
"price": {
"content": "$1",
"example": "$3.33"
},
"interval": {
"content": "$2",
"example": "'month' or 'year'"
}
}
},
"additionalStorageGb": {
"message": "ಹೆಚ್ಚುವರಿ ಸಂಗ್ರಹಣೆ (ಜಿಬಿ)"
},
"additionalStorageGbDesc": {
"message": "# ಹೆಚ್ಚುವರಿ ಜಿಬಿ"
},
"additionalStorageIntervalDesc": {
"message": "ನಿಮ್ಮ ಯೋಜನೆ ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ಫೈಲ್ ಸಂಗ್ರಹಣೆಯ $SIZE$ ನೊಂದಿಗೆ ಬರುತ್ತದೆ. ಪ್ರತಿ ಜಿಬಿಗೆ $PRICE$ ಗೆ ನೀವು ಹೆಚ್ಚುವರಿ ಸಂಗ್ರಹಣೆಯನ್ನು ಸೇರಿಸಬಹುದು / $INTERVAL$.",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
},
"price": {
"content": "$2",
"example": "$4.00"
},
"interval": {
"content": "$3",
"example": "'month' or 'year'"
}
}
},
"summary": {
"message": "ಸಾರಾಂಶ"
},
"total": {
"message": "ಒಟ್ಟು"
},
"year": {
"message": "ವರ್ಷ"
},
"month": {
"message": "ತಿಂಗಳು"
},
"monthAbbr": {
"message": "ತಿಂ.",
"description": "Short abbreviation for 'month'"
},
"paymentChargedAnnually": {
"message": "ನಿಮ್ಮ ಪಾವತಿ ವಿಧಾನವನ್ನು ತಕ್ಷಣವೇ ನಂತರ ಪ್ರತಿ ವರ್ಷ ಮರುಕಳಿಸುವ ಆಧಾರದ ಮೇಲೆ ವಿಧಿಸಲಾಗುತ್ತದೆ. ನೀವು ಯಾವುದೇ ಸಮಯದಲ್ಲಿ ರದ್ದುಗೊಳಿಸಬಹುದು."
},
"paymentCharged": {
"message": "ನಿಮ್ಮ ಪಾವತಿ ವಿಧಾನವನ್ನು ತಕ್ಷಣವೇ ವಿಧಿಸಲಾಗುತ್ತದೆ ಮತ್ತು ನಂತರ ಮರುಕಳಿಸುವ ಆಧಾರದ ಮೇಲೆ ಪ್ರತಿ $INTERVAL$. ನೀವು ಯಾವುದೇ ಸಮಯದಲ್ಲಿ ರದ್ದುಗೊಳಿಸಬಹುದು.",
"placeholders": {
"interval": {
"content": "$1",
"example": "month or year"
}
}
},
"paymentChargedWithTrial": {
"message": "ನಿಮ್ಮ ಯೋಜನೆ 7 ದಿನಗಳ ಉಚಿತ ಪ್ರಯೋಗದೊಂದಿಗೆ ಬರುತ್ತದೆ. ಪ್ರಯೋಗ ಮುಗಿಯುವವರೆಗೆ ನಿಮ್ಮ ಪಾವತಿ ವಿಧಾನಕ್ಕೆ ಶುಲ್ಕ ವಿಧಿಸಲಾಗುವುದಿಲ್ಲ. ಪ್ರತಿ $INTERVAL$ ಮರುಕಳಿಸುವ ಆಧಾರದ ಮೇಲೆ ಬಿಲ್ಲಿಂಗ್ ಸಂಭವಿಸುತ್ತದೆ. ನೀವು ಯಾವುದೇ ಸಮಯದಲ್ಲಿ ರದ್ದುಗೊಳಿಸಬಹುದು."
},
"paymentInformation": {
"message": "ಪಾವತಿ ಮಾಹಿತಿ"
},
"billingInformation": {
"message": "ಬಿಲ್ಲಿಂಗ್ ಮಾಹಿತಿ"
},
"creditCard": {
"message": "ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್"
},
"paypalClickSubmit": {
"message": "ನಿಮ್ಮ ಪೇಪಾಲ್ ಖಾತೆಗೆ ಲಾಗ್ ಇನ್ ಮಾಡಲು ಪೇಪಾಲ್ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ, ನಂತರ ಮುಂದುವರಿಸಲು ಕೆಳಗಿನ ಸಲ್ಲಿಕೆ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"cancelSubscription": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಿ"
},
"subscriptionCanceled": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ."
},
"pendingCancellation": {
"message": "ರದ್ದತಿ ಬಾಕಿ ಉಳಿದಿದೆ"
},
"subscriptionPendingCanceled": {
"message": "ಪ್ರಸ್ತುತ ಬಿಲ್ಲಿಂಗ್ ಅವಧಿಯ ಕೊನೆಯಲ್ಲಿ ರದ್ದತಿಗೆ ಚಂದಾದಾರಿಕೆಯನ್ನು ಗುರುತಿಸಲಾಗಿದೆ."
},
"reinstateSubscription": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ಮರುಸ್ಥಾಪಿಸಿ"
},
"reinstateConfirmation": {
"message": "ಬಾಕಿ ಉಳಿದಿರುವ ರದ್ದತಿ ವಿನಂತಿಯನ್ನು ತೆಗೆದುಹಾಕಲು ಮತ್ತು ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ಮರುಸ್ಥಾಪಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"reinstated": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ಪುನಃ ಸ್ಥಾಪಿಸಲಾಗಿದೆ."
},
"cancelConfirmation": {
"message": "ನೀವು ರದ್ದು ಮಾಡಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಈ ಬಿಲ್ಲಿಂಗ್ ಚಕ್ರದ ಕೊನೆಯಲ್ಲಿ ಈ ಎಲ್ಲಾ ಚಂದಾದಾರಿಕೆಯ ವೈಶಿಷ್ಟ್ಯಗಳಿಗೆ ನೀವು ಪ್ರವೇಶವನ್ನು ಕಳೆದುಕೊಳ್ಳುತ್ತೀರಿ."
},
"canceledSubscription": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ."
},
"neverExpires": {
"message": "ಎಂದಿಗೂ ಅವಧಿ"
},
"status": {
"message": "ಸ್ಥಿತಿ"
},
"nextCharge": {
"message": "ಮುಂದಿನ ಶುಲ್ಕ"
},
"details": {
"message": "ವಿವರಗಳು"
},
"downloadLicense": {
"message": "ಪರವಾನಗಿ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"
},
"updateLicense": {
"message": "ಪರವಾನಗಿ ನವೀಕರಿಸಿ"
},
"updatedLicense": {
"message": "ನವೀಕರಿಸಿದ ಪರವಾನಗಿ"
},
"manageSubscription": {
"message": "ಚಂದಾದಾರಿಕೆಯನ್ನು ನಿರ್ವಹಿಸಿ"
},
"storage": {
"message": "ಸಂಗ್ರಹಣೆ"
},
"addStorage": {
"message": "ಸಂಗ್ರಹಣೆಯನ್ನು ಸೇರಿಸಿ"
},
"removeStorage": {
"message": "ಸಂಗ್ರಹಣೆಯನ್ನು ತೆಗೆದುಹಾಕಿ"
},
"subscriptionStorage": {
"message": "ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯು ಒಟ್ಟು $MAX_STORAGE$ GB ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ಫೈಲ್ ಸಂಗ್ರಹವನ್ನು ಹೊಂದಿದೆ. ನೀವು ಪ್ರಸ್ತುತ $USED_STORAGE$ ಅನ್ನು ಬಳಸುತ್ತಿರುವಿರಿ.",
"placeholders": {
"max_storage": {
"content": "$1",
"example": "4"
},
"used_storage": {
"content": "$2",
"example": "65 MB"
}
}
},
"paymentMethod": {
"message": "ಪಾವತಿ ವಿಧಾನ"
},
"noPaymentMethod": {
"message": "ಫೈಲ್ನಲ್ಲಿ ಪಾವತಿ ವಿಧಾನವಿಲ್ಲ."
},
"addPaymentMethod": {
"message": "ಪಾವತಿ ವಿಧಾನವನ್ನು ಸೇರಿಸಿ"
},
"changePaymentMethod": {
"message": "ಪಾವತಿ ವಿಧಾನವನ್ನು ಬದಲಾಯಿಸಿ"
},
"invoices": {
"message": "ಇನ್ವಾಯ್ಸ್ಗಳು"
},
"noInvoices": {
"message": "ಇನ್ವಾಯ್ಸ್ಗಳಿಲ್ಲ."
},
"paid": {
"message": "ಪಾವತಿ ಮಾಡಲಾಗಿದೆ",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"unpaid": {
"message": "ಪಾವತಿಸಲಾಗಿಲ್ಲ",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"transactions": {
"message": "ವ್ಯವಹಾರಗಳು",
"description": "Payment/credit transactions."
},
"noTransactions": {
"message": "ಯಾವುದೇ ವಹಿವಾಟು ಇಲ್ಲ."
},
"chargeNoun": {
"message": "ಶುಲ್ಕ",
"description": "Noun. A charge from a payment method."
},
"refundNoun": {
"message": "ಮರುಪಾವತಿ",
"description": "Noun. A refunded payment that was charged."
},
"chargesStatement": {
"message": "ಯಾವುದೇ ಹೇಳಿಕೆಗಳು ನಿಮ್ಮ ಹೇಳಿಕೆಯಲ್ಲಿ $STATEMENT_NAME$ ಆಗಿ ಕಾಣಿಸುತ್ತದೆ.",
"placeholders": {
"statement_name": {
"content": "$1",
"example": "BITWARDEN"
}
}
},
"gbStorageAdd": {
"message": "ಸೇರಿಸಲು ಜಿಬಿ ಸಂಗ್ರಹಣೆ"
},
"gbStorageRemove": {
"message": "ತೆಗೆದುಹಾಕಲು ಶೇಖರಣೆಯ ಜಿಬಿ"
},
"storageAddNote": {
"message": "ಸಂಗ್ರಹಣೆಯನ್ನು ಸೇರಿಸುವುದರಿಂದ ನಿಮ್ಮ ಬಿಲ್ಲಿಂಗ್ ಮೊತ್ತಕ್ಕೆ ಹೊಂದಾಣಿಕೆ ಉಂಟಾಗುತ್ತದೆ ಮತ್ತು ತಕ್ಷಣ ನಿಮ್ಮ ಪಾವತಿ ವಿಧಾನವನ್ನು ಫೈಲ್ನಲ್ಲಿ ಚಾರ್ಜ್ ಮಾಡುತ್ತದೆ. ಪ್ರಸ್ತುತ ಬಿಲ್ಲಿಂಗ್ ಚಕ್ರದ ಉಳಿದ ಭಾಗಕ್ಕೆ ಮೊದಲ ಶುಲ್ಕವನ್ನು ನಿಗದಿಪಡಿಸಲಾಗುತ್ತದೆ."
},
"storageRemoveNote": {
"message": "ಸಂಗ್ರಹಣೆಯನ್ನು ತೆಗೆದುಹಾಕುವುದರಿಂದ ನಿಮ್ಮ ಬಿಲ್ಲಿಂಗ್ ಮೊತ್ತಕ್ಕೆ ಹೊಂದಾಣಿಕೆಗಳು ಉಂಟಾಗುತ್ತವೆ, ಅದು ನಿಮ್ಮ ಮುಂದಿನ ಬಿಲ್ಲಿಂಗ್ ಶುಲ್ಕಕ್ಕೆ ಸಾಲಗಳಾಗಿ ಸಾಬೀತಾಗುತ್ತದೆ."
},
"adjustedStorage": {
"message": "$AMOUNT$ GB ಸಂಗ್ರಹಣೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿದೆ.",
"placeholders": {
"amount": {
"content": "$1",
"example": "5"
}
}
},
"contactSupport": {
"message": "ಗ್ರಾಹಕ ಬೆಂಬಲವನ್ನು ಸಂಪರ್ಕಿಸಿ"
},
"updatedPaymentMethod": {
"message": "ಪಾವತಿ ವಿಧಾನವನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ."
},
"purchasePremium": {
"message": "ಪ್ರೀಮಿಯಂ ಖರೀದಿಸಿ"
},
"licenseFile": {
"message": "ಪರವಾನಗಿ ಫೈಲ್"
},
"licenseFileDesc": {
"message": "ನಿಮ್ಮ ಪರವಾನಗಿ ಫೈಲ್ಗೆ $FILE_NAME$ ಎಂದು ಹೆಸರಿಸಲಾಗುವುದು",
"placeholders": {
"file_name": {
"content": "$1",
"example": "bitwarden_premium_license.json"
}
}
},
"uploadLicenseFilePremium": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರೀಮಿಯಂ ಸದಸ್ಯತ್ವಕ್ಕೆ ಅಪ್ಗ್ರೇಡ್ ಮಾಡಲು ನೀವು ಮಾನ್ಯ ಪರವಾನಗಿ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ."
},
"uploadLicenseFileOrg": {
"message": "ಆನ್-ಆವರಣದ ಹೋಸ್ಟ್ ಸಂಸ್ಥೆಯನ್ನು ರಚಿಸಲು ನೀವು ಮಾನ್ಯವಾದ ಪರವಾನಗಿ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ."
},
"accountEmailMustBeVerified": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಬೇಕು."
},
"newOrganizationDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನ ಭಾಗಗಳನ್ನು ಇತರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಲು ಮತ್ತು ಕುಟುಂಬ, ಸಣ್ಣ ತಂಡ ಅಥವಾ ದೊಡ್ಡ ಕಂಪನಿಯಂತಹ ನಿರ್ದಿಷ್ಟ ಘಟಕಕ್ಕಾಗಿ ಸಂಬಂಧಿತ ಬಳಕೆದಾರರನ್ನು ನಿರ್ವಹಿಸಲು ಸಂಸ್ಥೆಗಳು ನಿಮಗೆ ಅವಕಾಶ ಮಾಡಿಕೊಡುತ್ತವೆ."
},
"generalInformation": {
"message": "ಸಾಮಾನ್ಯ ಮಾಹಿತಿ"
},
"organizationName": {
"message": "ಸಂಸ್ಥೆಯ ಹೆಸರು"
},
"accountOwnedBusiness": {
"message": "ಈ ಖಾತೆಯು ವ್ಯವಹಾರದ ಒಡೆತನದಲ್ಲಿದೆ."
},
"billingEmail": {
"message": "ಬಿಲ್ಲಿಂಗ್ ಇಮೇಲ್"
},
"businessName": {
"message": "ವ್ಯವಹಾರದ ಹೆಸರು"
},
"chooseYourPlan": {
"message": "ನಿಮ್ಮ ಯೋಜನೆಯನ್ನು ಆರಿಸಿ"
},
"users": {
"message": "ಬಳಕೆದಾರರು"
},
"userSeats": {
"message": "ಬಳಕೆದಾರರ ಆಸನಗಳು"
},
"additionalUserSeats": {
"message": "ಹೆಚ್ಚುವರಿ ಬಳಕೆದಾರ ಆಸನಗಳು"
},
"userSeatsDesc": {
"message": "# ಬಳಕೆದಾರರ ಆಸನಗಳು"
},
"userSeatsAdditionalDesc": {
"message": "ನಿಮ್ಮ ಯೋಜನೆ $BASE_SEATS$ ಬಳಕೆದಾರ ಆಸನಗಳೊಂದಿಗೆ ಬರುತ್ತದೆ. ನೀವು ಪ್ರತಿ ಬಳಕೆದಾರರಿಗೆ / ತಿಂಗಳಿಗೆ $SEAT_PRICE$ ಗೆ ಹೆಚ್ಚುವರಿ ಬಳಕೆದಾರರನ್ನು ಸೇರಿಸಬಹುದು.",
"placeholders": {
"base_seats": {
"content": "$1",
"example": "5"
},
"seat_price": {
"content": "$2",
"example": "$2.00"
}
}
},
"userSeatsHowManyDesc": {
"message": "ನಿಮಗೆ ಎಷ್ಟು ಬಳಕೆದಾರ ಆಸನಗಳು ಬೇಕು? ಅಗತ್ಯವಿದ್ದರೆ ನೀವು ನಂತರ ಹೆಚ್ಚುವರಿ ಆಸನಗಳನ್ನು ಕೂಡ ಸೇರಿಸಬಹುದು."
},
"planNameFree": {
"message": "ಉಚಿತ",
"description": "Free as in 'free beer'."
},
"planDescFree": {
"message": "ಪರೀಕ್ಷೆ ಅಥವಾ ವೈಯಕ್ತಿಕ ಬಳಕೆದಾರರಿಗೆ $COUNT$ ಇತರ ಬಳಕೆದಾರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಲು.",
"placeholders": {
"count": {
"content": "$1",
"example": "1"
}
}
},
"planNameFamilies": {
"message": "ಕುಟುಂಬಗಳು"
},
"planDescFamilies": {
"message": "ವೈಯಕ್ತಿಕ ಬಳಕೆಗಾಗಿ, ಕುಟುಂಬ ಮತ್ತು ಸ್ನೇಹಿತರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಲು."
},
"planNameTeams": {
"message": "ತಂಡಗಳು"
},
"planDescTeams": {
"message": "ವ್ಯವಹಾರಗಳು ಮತ್ತು ಇತರ ತಂಡದ ಸಂಸ್ಥೆಗಳಿಗೆ."
},
"planNameEnterprise": {
"message": "ಉದ್ಯಮ"
},
"planDescEnterprise": {
"message": "ವ್ಯವಹಾರಗಳು ಮತ್ತು ಇತರ ದೊಡ್ಡ ಸಂಸ್ಥೆಗಳಿಗೆ."
},
"freeForever": {
"message": "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ"
},
"includesXUsers": {
"message": "$COUNT$ ಬಳಕೆದಾರರನ್ನು ಒಳಗೊಂಡಿದೆ",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"additionalUsers": {
"message": "ಹೆಚ್ಚುವರಿ ಬಳಕೆದಾರರು"
},
"costPerUser": {
"message": "ಪ್ರತಿ ಬಳಕೆದಾರರಿಗೆ $COST$",
"placeholders": {
"cost": {
"content": "$1",
"example": "$3"
}
}
},
"limitedUsers": {
"message": "$COUNT$ ಬಳಕೆದಾರರಿಗೆ ಸೀಮಿತವಾಗಿದೆ (ನೀವು ಸೇರಿದಂತೆ)",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"limitedCollections": {
"message": "$COUNT$ ಸಂಗ್ರಹಗಳಿಗೆ ಸೀಮಿತವಾಗಿದೆ",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"addShareLimitedUsers": {
"message": "$COUNT$ ಬಳಕೆದಾರರೊಂದಿಗೆ ಸೇರಿಸಿ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳಿ",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"addShareUnlimitedUsers": {
"message": "ಅನಿಯಮಿತ ಬಳಕೆದಾರರೊಂದಿಗೆ ಸೇರಿಸಿ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳಿ"
},
"createUnlimitedCollections": {
"message": "ಅನಿಯಮಿತ ಸಂಗ್ರಹಗಳನ್ನು ರಚಿಸಿ"
},
"gbEncryptedFileStorage": {
"message": "$SIZE$ ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ಫೈಲ್ ಸಂಗ್ರಹಣೆ",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
}
}
},
"onPremHostingOptional": {
"message": "ಆನ್-ಪ್ರಿಮೈಸ್ ಹೋಸ್ಟಿಂಗ್ (ಐಚ್ಛಿಕ)"
},
"usersGetPremium": {
"message": "ಬಳಕೆದಾರರು ಪ್ರೀಮಿಯಂ ವೈಶಿಷ್ಟ್ಯಗಳಿಗೆ ಪ್ರವೇಶವನ್ನು ಪಡೆಯುತ್ತಾರೆ"
},
"controlAccessWithGroups": {
"message": "ಗುಂಪುಗಳೊಂದಿಗೆ ಬಳಕೆದಾರ ಪ್ರವೇಶವನ್ನು ನಿಯಂತ್ರಿಸಿ"
},
"syncUsersFromDirectory": {
"message": "ಡೈರೆಕ್ಟರಿಯಿಂದ ನಿಮ್ಮ ಬಳಕೆದಾರರು ಮತ್ತು ಗುಂಪುಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಿ"
},
"trackAuditLogs": {
"message": "ಆಡಿಟ್ ಲಾಗ್ಗಳೊಂದಿಗೆ ಬಳಕೆದಾರರ ಕ್ರಿಯೆಗಳನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಿ"
},
"enforce2faDuo": {
"message": "ಡ್ಯುಯೊ ಜೊತೆ 2 ಎಫ್ಎ ಜಾರಿಗೊಳಿಸಿ"
},
"priorityCustomerSupport": {
"message": "ಆದ್ಯತೆಯ ಗ್ರಾಹಕ ಬೆಂಬಲ"
},
"xDayFreeTrial": {
"message": "$COUNT$ ದಿನದ ಉಚಿತ ಪ್ರಯೋಗ, ಯಾವಾಗ ಬೇಕಾದರೂ ರದ್ದುಗೊಳಿಸಿ",
"placeholders": {
"count": {
"content": "$1",
"example": "7"
}
}
},
"monthly": {
"message": "ಮಾಸಿಕ"
},
"annually": {
"message": "ವಾರ್ಷಿಕವಾಗಿ"
},
"basePrice": {
"message": "ಮೂಲ ದರ"
},
"organizationCreated": {
"message": "ಸಂಸ್ಥೆ ರಚಿಸಲಾಗಿದೆ"
},
"organizationReadyToGo": {
"message": "ನಿಮ್ಮ ಹೊಸ ಸಂಸ್ಥೆ ಹೋಗಲು ಸಿದ್ಧವಾಗಿದೆ!"
},
"organizationUpgraded": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ."
},
"leave": {
"message": "ಬಿಡಿ"
},
"leaveOrganizationConfirmation": {
"message": "ಈ ಸಂಸ್ಥೆಯನ್ನು ಬಿಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"leftOrganization": {
"message": "ನೀವು ಸಂಸ್ಥೆಯನ್ನು ತೊರೆದಿದ್ದೀರಿ."
},
"defaultCollection": {
"message": "ಡೀಫಾಲ್ಟ್ ಸಂಗ್ರಹ"
},
"getHelp": {
"message": "ಸಹಾಯ ಪಡೆ"
},
"getApps": {
"message": "ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಪಡೆಯಿರಿ"
},
"loggedInAs": {
"message": "ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಪಡೆಯಿರಿ"
},
"eventLogs": {
"message": "ಈವೆಂಟ್ ದಾಖಲೆಗಳು"
},
"people": {
"message": "ಜನರು"
},
"policies": {
"message": "ನೀತಿಗಳು"
},
"singleSignOn": {
"message": "Single Sign-On"
},
"editPolicy": {
"message": "ನೀತಿಯನ್ನು ತಿದ್ದು"
},
"groups": {
"message": "ಗುಂಪುಗಳು"
},
"newGroup": {
"message": "ಹೊಸ ಗುಂಪು"
},
"addGroup": {
"message": "ಗುಂಪನ್ನು ಸೇರಿಸಿ"
},
"editGroup": {
"message": "ಗುಂಪು ಎಡಿಟ್ ಮಾಡು"
},
"deleteGroupConfirmation": {
"message": "ಈ ಗುಂಪನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"removeUserConfirmation": {
"message": "ಈ ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"removeUserConfirmationKeyConnector": {
"message": "Warning! This user requires Key Connector to manage their encryption. Removing this user from your organization will permanently disable their account. This action cannot be undone. Do you want to proceed?"
},
"externalId": {
"message": "ಬಾಹ್ಯ ಐಡಿ"
},
"externalIdDesc": {
"message": "ಬಾಹ್ಯ ಐಡಿಯನ್ನು ಉಲ್ಲೇಖವಾಗಿ ಬಳಸಬಹುದು ಅಥವಾ ಈ ಸಂಪನ್ಮೂಲವನ್ನು ಬಳಕೆದಾರರ ಡೈರೆಕ್ಟರಿಯಂತಹ ಬಾಹ್ಯ ವ್ಯವಸ್ಥೆಗೆ ಲಿಂಕ್ ಮಾಡಬಹುದು."
},
"accessControl": {
"message": "ಪ್ರವೇಶ ನಿಯಂತ್ರಣ"
},
"groupAccessAllItems": {
"message": "ಈ ಗುಂಪು ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ಪ್ರವೇಶಿಸಬಹುದು ಮತ್ತು ಮಾರ್ಪಡಿಸಬಹುದು."
},
"groupAccessSelectedCollections": {
"message": "ಈ ಗುಂಪು ಆಯ್ದ ಸಂಗ್ರಹಗಳನ್ನು ಮಾತ್ರ ಪ್ರವೇಶಿಸಬಹುದು."
},
"readOnly": {
"message": "ಓದಲು ಮಾತ್ರ"
},
"newCollection": {
"message": "ಹೊಸ ಸಂಗ್ರಹ"
},
"addCollection": {
"message": "ಸಂಗ್ರಹವನ್ನು ಸೇರಿಸಿ"
},
"editCollection": {
"message": "ಸಂಗ್ರಹವನ್ನು ತಿದ್ದು"
},
"deleteCollectionConfirmation": {
"message": "ಈ ಸಂಗ್ರಹವನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"editUser": {
"message": "ಬಳಕೆದಾರರನ್ನು ತಿದ್ದು"
},
"inviteUser": {
"message": "ಬಳಕೆದಾರರನ್ನು ಆಹ್ವಾನಿಸಿ"
},
"inviteUserDesc": {
"message": "ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಅವರ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಕೆಳಗೆ ನಮೂದಿಸುವ ಮೂಲಕ ಹೊಸ ಬಳಕೆದಾರರನ್ನು ಆಹ್ವಾನಿಸಿ. ಅವರು ಈಗಾಗಲೇ ಬಿಟ್ವಾರ್ಡೆನ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲದಿದ್ದರೆ, ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಲು ಅವರನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
},
"inviteMultipleEmailDesc": {
"message": "ಇಮೇಲ್ ವಿಳಾಸಗಳ ಪಟ್ಟಿಯನ್ನು ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ನೀವು ಒಂದು ಸಮಯದಲ್ಲಿ $COUNT$ ಬಳಕೆದಾರರನ್ನು ಆಹ್ವಾನಿಸಬಹುದು.",
"placeholders": {
"count": {
"content": "$1",
"example": "20"
}
}
},
"userUsingTwoStep": {
"message": "ಈ ಬಳಕೆದಾರರು ತಮ್ಮ ಖಾತೆಯನ್ನು ರಕ್ಷಿಸಲು ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಬಳಸುತ್ತಿದ್ದಾರೆ."
},
"userAccessAllItems": {
"message": "ಈ ಬಳಕೆದಾರರು ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ಪ್ರವೇಶಿಸಬಹುದು ಮತ್ತು ಮಾರ್ಪಡಿಸಬಹುದು."
},
"userAccessSelectedCollections": {
"message": "ಈ ಬಳಕೆದಾರರು ಆಯ್ದ ಸಂಗ್ರಹಗಳನ್ನು ಮಾತ್ರ ಪ್ರವೇಶಿಸಬಹುದು."
},
"search": {
"message": "ಹುಡುಕಿ"
},
"invited": {
"message": "ಆಹ್ವಾನಿಸಲಾಗಿದೆ"
},
"accepted": {
"message": "ಸ್ವೀಕರಿಸಲಾಗಿದೆ"
},
"confirmed": {
"message": "ದೃಢಪಡಿಸಲಾಗಿದೆ"
},
"clientOwnerEmail": {
"message": "Client Owner Email"
},
"owner": {
"message": "ಮಾಲೀಕರು"
},
"ownerDesc": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಎಲ್ಲಾ ಅಂಶಗಳನ್ನು ನಿರ್ವಹಿಸಬಲ್ಲ ಅತ್ಯುನ್ನತ ಪ್ರವೇಶ ಬಳಕೆದಾರ."
},
"clientOwnerDesc": {
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
},
"admin": {
"message": "ಅಡ್ಮಿನ್"
},
"adminDesc": {
"message": "ನಿರ್ವಾಹಕರು ನಿಮ್ಮ ಸಂಸ್ಥೆಯಲ್ಲಿನ ಎಲ್ಲಾ ವಸ್ತುಗಳು, ಸಂಗ್ರಹಣೆಗಳು ಮತ್ತು ಬಳಕೆದಾರರನ್ನು ಪ್ರವೇಶಿಸಬಹುದು ಮತ್ತು ನಿರ್ವಹಿಸಬಹುದು."
},
"user": {
"message": "ಬಳಕೆದಾರ"
},
"userDesc": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯಲ್ಲಿ ನಿಯೋಜಿಸಲಾದ ಸಂಗ್ರಹಗಳಿಗೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿರುವ ಸಾಮಾನ್ಯ ಬಳಕೆದಾರ."
},
"manager": {
"message": "ವ್ಯವಸ್ಥಾಪಕ"
},
"managerDesc": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯಲ್ಲಿ ನಿಯೋಜಿತ ಸಂಗ್ರಹಣೆಯನ್ನು ವ್ಯವಸ್ಥಾಪಕರು ಪ್ರವೇಶಿಸಬಹುದು ಮತ್ತು ನಿರ್ವಹಿಸಬಹುದು."
},
"all": {
"message": "ಎಲ್ಲಾ"
},
"refresh": {
"message": "ರಿಫ್ರೆಶ್"
},
"timestamp": {
"message": "ಟೈಮ್ಸ್ಟ್ಯಾಂಪ್"
},
"event": {
"message": "ಈವೆಂಟ್"
},
"unknown": {
"message": "ಅಪರಿಚಿತ"
},
"loadMore": {
"message": "ಇನ್ನಷ್ಟು ಲೋಡ್ ಮಾಡಿ"
},
"mobile": {
"message": "ಮೊಬೈಲ್",
"description": "Mobile app"
},
"extension": {
"message": "ವಿಸ್ತರಣೆ",
"description": "Browser extension/addon"
},
"desktop": {
"message": "ಡೆಸ್ಕ್ಟಾಪ್",
"description": "Desktop app"
},
"webVault": {
"message": "ವೆಬ್ ವಾಲ್ಟ್"
},
"loggedIn": {
"message": "ಲಾಗ್ ಇನ್ ಮಾಡಲಾಗಿದೆ."
},
"changedPassword": {
"message": "ಖಾತೆಯ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಲಾಗಿದೆ."
},
"enabledUpdated2fa": {
"message": "ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ / ನವೀಕರಿಸಲಾಗಿದೆ."
},
"disabled2fa": {
"message": "ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
},
"recovered2fa": {
"message": "ಎರಡು-ಹಂತದ ಲಾಗಿನ್ನಿಂದ ಖಾತೆಯನ್ನು ಮರುಪಡೆಯಲಾಗಿದೆ."
},
"failedLogin": {
"message": "ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್ನೊಂದಿಗೆ ಲಾಗಿನ್ ಪ್ರಯತ್ನ ವಿಫಲವಾಗಿದೆ."
},
"failedLogin2fa": {
"message": "ತಪ್ಪಾದ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ನೊಂದಿಗೆ ಲಾಗಿನ್ ಪ್ರಯತ್ನ ವಿಫಲವಾಗಿದೆ."
},
"exportedVault": {
"message": "ರಫ್ತು ಮಾಡಿದ ವಾಲ್ಟ್."
},
"exportedOrganizationVault": {
"message": "ರಫ್ತು ಮಾಡಿದ ಸಂಸ್ಥೆ ವಾಲ್ಟ್."
},
"editedOrgSettings": {
"message": "ರಫ್ತು ಮಾಡಿದ ಸಂಸ್ಥೆ ವಾಲ್ಟ್."
},
"createdItemId": {
"message": "ಐಟಂ $ID$ ಅನ್ನು ರಚಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedItemId": {
"message": "ಐಟಂ $ID$ ಅನ್ನು ಸಂಪಾದಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedItemId": {
"message": "ಐಟಂ $ID$ಅನ್ನು ಅನುಪಯುಕ್ತಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"movedItemIdToOrg": {
"message": "ಐಟಂ $ID$ ಅನ್ನು ಸಂಸ್ಥೆಗೆ ಸರಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "'Google'"
}
}
},
"viewedItemId": {
"message": "ವೀಕ್ಷಿಸಿದ ಐಟಂ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedPasswordItemId": {
"message": "ಐಟಂ$ID$ ಗಾಗಿ ಪಾಸ್ವರ್ಡ್ ವೀಕ್ಷಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedHiddenFieldItemId": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಮರೆಮಾಡಿದ ಕ್ಷೇತ್ರವನ್ನು ವೀಕ್ಷಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedSecurityCodeItemId": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಭದ್ರತಾ ಕೋಡ್ ವೀಕ್ಷಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedPasswordItemId": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಕಲಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedHiddenFieldItemId": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಗುಪ್ತ ಕ್ಷೇತ್ರವನ್ನು ನಕಲಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedSecurityCodeItemId": {
"message": "ಐಟಂ$ID$ ಗಾಗಿ ಭದ್ರತಾ ಕೋಡ್ ಅನ್ನು ನಕಲಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"autofilledItemId": {
"message": "ಸ್ವಯಂ ತುಂಬಿದ ಐಟಂ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"createdCollectionId": {
"message": "ಸಂಗ್ರಹ $ID$ ಅನ್ನು ರಚಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedCollectionId": {
"message": "ಸಂಗ್ರಹಣೆ ಸಂಪಾದನೆ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"deletedCollectionId": {
"message": "ಸಂಗ್ರಹವನ್ನು ಅಳಿಸಲಾಗಿದೆ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedPolicyId": {
"message": "ನೀತಿ ಸಂಪಾದಿಸಲಾಗಿದೆ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"createdGroupId": {
"message": "ಗುಂಪು $ID$ ಅನ್ನು ರಚಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"editedGroupId": {
"message": "ಗುಂಪು $ID$ ಅನ್ನು ಸಂಪಾದಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"deletedGroupId": {
"message": "ಅಳಿಸಿದ ಗುಂಪು $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"removedUserId": {
"message": "ತೆಗೆದುಹಾಕಲಾದ ಬಳಕೆದಾರ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdAttachmentForItem": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಲಗತ್ತನ್ನು ರಚಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedAttachmentForItem": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಲಗತ್ತಿಸಲಾದ ಅಳಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedCollectionsForItem": {
"message": "ಐಟಂ $ID$ ಗಾಗಿ ಸಂಗ್ರಹಗಳನ್ನು ಸಂಪಾದಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"invitedUserId": {
"message": "ಆಹ್ವಾನಿತ ಬಳಕೆದಾರ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmedUserId": {
"message": "ದೃಢೀಕರಿಸಿದ ಬಳಕೆದಾರ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedUserId": {
"message": "ತಿದ್ಸಿದ ಬಳಕೆದಾರ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedGroupsForUser": {
"message": "ಬಳಕೆದಾರ $ID$ ಗಾಗಿ ಗುಂಪುಗಳನ್ನು ತಿದ್ಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"unlinkedSsoUser": {
"message": "ಬಳಕೆದಾರ $ID$ ಗಾಗಿ ಲಿಂಕ್ ಮಾಡದ SSO.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdOrganizationId": {
"message": "Created organization $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"addedOrganizationId": {
"message": "Added organization $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"removedOrganizationId": {
"message": "Removed organization $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"accessedClientVault": {
"message": "Accessed $ID$ organization vault.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"device": {
"message": "ಡಿವೈಸ್"
},
"view": {
"message": "ವೀಕ್ಷಣೆ"
},
"invalidDateRange": {
"message": "ಅಮಾನ್ಯ ದಿನಾಂಕ ಶ್ರೇಣಿ."
},
"errorOccurred": {
"message": "ದೋಷ ಸಂಭವಿಸಿದೆ."
},
"userAccess": {
"message": "ಬಳಕೆದಾರ ಪ್ರವೇಶ"
},
"userType": {
"message": "ಬಳಕೆದಾರ ವಿಧ"
},
"groupAccess": {
"message": "ಗುಂಪು ಪ್ರವೇಶ"
},
"groupAccessUserDesc": {
"message": "ಈ ಬಳಕೆದಾರರು ಸೇರಿರುವ ಗುಂಪುಗಳನ್ನು ಸಂಪಾದಿಸಿ."
},
"invitedUsers": {
"message": "ಆಹ್ವಾನಿತ ಬಳಕೆದಾರ (ಗಳು)."
},
"resendInvitation": {
"message": "ಆಹ್ವಾನವನ್ನು ಮರುಹೊಂದಿಸಿ"
},
"resendEmail": {
"message": "ಇಮೇಲ್ ಮತ್ತೊಮ್ಮೆ ಕಳುಹಿಸಿ"
},
"hasBeenReinvited": {
"message": "$USER$ ಅನ್ನು ಮರುಸೃಷ್ಟಿಸಲಾಗಿದೆ.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirm": {
"message": "ದೃಢೀಕರಿಸಿ"
},
"confirmUser": {
"message": "ಬಳಕೆದಾರರನ್ನು ದೃಢೀಕರಿಸಿ"
},
"hasBeenConfirmed": {
"message": "$USER$ ಅನ್ನು ದೃಢಪಡಿಸಲಾಗಿದೆ.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmUsers": {
"message": "ಬಳಕೆದಾರರನ್ನು ದೃಢೀಕರಿಸಿ"
},
"usersNeedConfirmed": {
"message": "ಅವರ ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಿದ ಬಳಕೆದಾರರನ್ನು ನೀವು ಹೊಂದಿದ್ದೀರಿ, ಆದರೆ ಇನ್ನೂ ದೃಢೀಕರಿಸಬೇಕಾಗಿದೆ. ಬಳಕೆದಾರರು ದೃಢೀಕರಿಸುವವರೆಗೂ ಸಂಸ್ಥೆಗೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ."
},
"startDate": {
"message": "ಪ್ರಾರಂಭ ದಿನಾಂಕ"
},
"endDate": {
"message": "ಕೊನೆಯಾದ ದಿನಾಂಕ"
},
"verifyEmail": {
"message": "ಇಮೇಲ್ ಪರಿಶೀಲಿಸಿ"
},
"verifyEmailDesc": {
"message": "ಎಲ್ಲಾ ವೈಶಿಷ್ಟ್ಯಗಳಿಗೆ ಪ್ರವೇಶವನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ನಿಮ್ಮ ಖಾತೆಯ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಿ."
},
"verifyEmailFirst": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಮೊದಲು ಪರಿಶೀಲಿಸಬೇಕು."
},
"checkInboxForVerification": {
"message": "ಪರಿಶೀಲನೆ ಲಿಂಕ್ಗಾಗಿ ನಿಮ್ಮ ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ ಪರಿಶೀಲಿಸಿ."
},
"emailVerified": {
"message": "ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ."
},
"emailVerifiedFailed": {
"message": "ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಹೊಸ ಪರಿಶೀಲನೆ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಪ್ರಯತ್ನಿಸಿ."
},
"emailVerificationRequired": {
"message": "ಇಮೇಲ್ ಪರಿಶೀಲನೆ ಅಗತ್ಯವಿದೆ"
},
"emailVerificationRequiredDesc": {
"message": "ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ನೀವು ಪರಿಶೀಲಿಸಬೇಕು."
},
"updateBrowser": {
"message": "ಬ್ರೌಸರ್ ನವೀಕರಿಸಿ"
},
"updateBrowserDesc": {
"message": "ನೀವು ಬೆಂಬಲಿಸದ ವೆಬ್ ಬ್ರೌಸರ್ ಅನ್ನು ಬಳಸುತ್ತಿರುವಿರಿ. ವೆಬ್ ವಾಲ್ಟ್ ಸರಿಯಾಗಿ ಕಾರ್ಯನಿರ್ವಹಿಸದೆ ಇರಬಹುದು."
},
"joinOrganization": {
"message": "ಸಂಸ್ಥೆಗೆ ಸೇರಿ"
},
"joinOrganizationDesc": {
"message": "ಮೇಲೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ಸಂಸ್ಥೆಗೆ ಸೇರಲು ನಿಮ್ಮನ್ನು ಆಹ್ವಾನಿಸಲಾಗಿದೆ. ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು, ನೀವು ಲಾಗ್ ಇನ್ ಆಗಬೇಕು ಅಥವಾ ಹೊಸ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯನ್ನು ರಚಿಸಬೇಕು."
},
"inviteAccepted": {
"message": "ಆಮಂತ್ರಣವನ್ನು ಸ್ವೀಕರಿಸಲಾಗಿದೆ"
},
"inviteAcceptedDesc": {
"message": "ನಿರ್ವಾಹಕರು ನಿಮ್ಮ ಸದಸ್ಯತ್ವವನ್ನು ಖಚಿತಪಡಿಸಿದ ನಂತರ ನೀವು ಈ ಸಂಸ್ಥೆಯನ್ನು ಪ್ರವೇಶಿಸಬಹುದು. ಅದು ಸಂಭವಿಸಿದಾಗ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸುತ್ತೇವೆ."
},
"inviteAcceptFailed": {
"message": "ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಹೊಸ ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಲು ಸಂಸ್ಥೆಯ ನಿರ್ವಾಹಕರನ್ನು ಕೇಳಿ."
},
"inviteAcceptFailedShort": {
"message": "ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"rememberEmail": {
"message": "ಇಮೇಲ್ ನೆನಪಿಡಿ"
},
"recoverAccountTwoStepDesc": {
"message": "ನಿಮ್ಮ ಸಾಮಾನ್ಯ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ವಿಧಾನಗಳ ಮೂಲಕ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನಿಮ್ಮ ಖಾತೆಯ ಎಲ್ಲಾ ಎರಡು-ಹಂತದ ಪೂರೈಕೆದಾರರನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ನಿಮ್ಮ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಮರುಪಡೆಯುವಿಕೆ ಕೋಡ್ ಅನ್ನು ನೀವು ಬಳಸಬಹುದು."
},
"recoverAccountTwoStep": {
"message": "ಖಾತೆಯನ್ನು ಮರುಪಡೆಯಿರಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್"
},
"twoStepRecoverDisabled": {
"message": "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಎರಡು ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
},
"learnMore": {
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ"
},
"deleteRecoverDesc": {
"message": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮರುಪಡೆಯಲು ಮತ್ತು ಅಳಿಸಲು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಕೆಳಗೆ ನಮೂದಿಸಿ."
},
"deleteRecoverEmailSent": {
"message": "ನಿಮ್ಮ ಖಾತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ, ಹೆಚ್ಚಿನ ಸೂಚನೆಗಳೊಂದಿಗೆ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿದ್ದೇವೆ."
},
"deleteRecoverConfirmDesc": {
"message": "ನಿಮ್ಮ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯನ್ನು ಅಳಿಸಲು ನೀವು ವಿನಂತಿಸಿದ್ದೀರಿ. ಖಚಿತಪಡಿಸಲು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"myOrganization": {
"message": "ನನ್ನ ಸಂಸ್ಥೆ"
},
"deleteOrganization": {
"message": "ಸಂಸ್ಥೆಯನ್ನು ಅಳಿಸಿ"
},
"deletingOrganizationContentWarning": {
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"deletingOrganizationActiveUserAccountsWarning": {
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
},
"deletingOrganizationIsPermanentWarning": {
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"organizationDeleted": {
"message": "ಸಂಸ್ಥೆ ಅಳಿಸಲಾಗಿದೆ"
},
"organizationDeletedDesc": {
"message": "ಸಂಸ್ಥೆ ಮತ್ತು ಎಲ್ಲಾ ಸಂಬಂಧಿತ ಡೇಟಾವನ್ನು ಅಳಿಸಲಾಗಿದೆ."
},
"organizationUpdated": {
"message": "ಸಂಸ್ಥೆ ನವೀಕರಿಸಲಾಗಿದೆ"
},
"taxInformation": {
"message": "ತೆರಿಗೆ ಮಾಹಿತಿ"
},
"taxInformationDesc": {
"message": "ಯುಎಸ್ನೊಳಗಿನ ಗ್ರಾಹಕರಿಗೆ, ಮಾರಾಟ ತೆರಿಗೆ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸಲು ಪಿನ್ ಕೋಡ್ ಅಗತ್ಯವಿದೆ, ಇತರ ದೇಶಗಳಿಗೆ ನೀವು ಐಚ್ಛಿಕವಾಗಿ ತೆರಿಗೆ ಗುರುತಿನ ಸಂಖ್ಯೆ (ವ್ಯಾಟ್ / ಜಿಎಸ್ಟಿ) ಮತ್ತು / ಅಥವಾ ನಿಮ್ಮ ಇನ್ವಾಯ್ಸ್ಗಳಲ್ಲಿ ಕಾಣಿಸಿಕೊಳ್ಳಲು ವಿಳಾಸವನ್ನು ಒದಗಿಸಬಹುದು."
},
"billingPlan": {
"message": "ಯೋಜನೆ",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlan": {
"message": "ಯೋಜನೆಯನ್ನು ಬದಲಾಯಿಸಿ",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlanUpgrade": {
"message": "ಕೆಳಗಿನ ಮಾಹಿತಿಯನ್ನು ಒದಗಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತೊಂದು ಯೋಜನೆಗೆ ಅಪ್ಗ್ರೇಡ್ ಮಾಡಿ. ನೀವು ಖಾತೆಗೆ ಸಕ್ರಿಯ ಪಾವತಿ ವಿಧಾನವನ್ನು ಸೇರಿಸಿದ್ದೀರಿ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ.",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"invoiceNumber": {
"message": "ಸರಕುಪಟ್ಟಿ #$NUMBER$",
"description": "ex. Invoice #79C66F0-0001",
"placeholders": {
"number": {
"content": "$1",
"example": "79C66F0-0001"
}
}
},
"viewInvoice": {
"message": "ಸರಕುಪಟ್ಟಿ ವೀಕ್ಷಿಸಿ"
},
"downloadInvoice": {
"message": "ಸರಕುಪಟ್ಟಿ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"
},
"verifyBankAccount": {
"message": "ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ಪರಿಶೀಲಿಸಿ"
},
"verifyBankAccountDesc": {
"message": "ನಿಮ್ಮ ಬ್ಯಾಂಕ್ ಖಾತೆಗೆ ನಾವು ಎರಡು ಮೈಕ್ರೋ-ಠೇವಣಿಗಳನ್ನು ಮಾಡಿದ್ದೇವೆ (ಅದನ್ನು ತೋರಿಸಲು 1-2 ವ್ಯವಹಾರ ದಿನಗಳು ತೆಗೆದುಕೊಳ್ಳಬಹುದು). ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ಪರಿಶೀಲಿಸಲು ಈ ಮೊತ್ತವನ್ನು ನಮೂದಿಸಿ."
},
"verifyBankAccountInitialDesc": {
"message": "ಬ್ಯಾಂಕ್ ಖಾತೆಯೊಂದಿಗೆ ಪಾವತಿ ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ನ ಗ್ರಾಹಕರಿಗೆ ಮಾತ್ರ ಲಭ್ಯವಿದೆ. ನಿಮ್ಮ ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ನೀವು ಪರಿಶೀಲಿಸುವ ಅಗತ್ಯವಿದೆ. ಮುಂದಿನ 1-2 ವ್ಯವಹಾರ ದಿನಗಳಲ್ಲಿ ನಾವು ಎರಡು ಮೈಕ್ರೋ-ಠೇವಣಿ ಮಾಡುತ್ತೇವೆ. ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ಪರಿಶೀಲಿಸಲು ಸಂಸ್ಥೆಯ ಬಿಲ್ಲಿಂಗ್ ಪುಟದಲ್ಲಿ ಈ ಮೊತ್ತವನ್ನು ನಮೂದಿಸಿ."
},
"verifyBankAccountFailureWarning": {
"message": "ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ಪರಿಶೀಲಿಸುವಲ್ಲಿ ವಿಫಲವಾದರೆ ಪಾವತಿ ತಪ್ಪಿಹೋಗುತ್ತದೆ ಮತ್ತು ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗುತ್ತದೆ."
},
"verifiedBankAccount": {
"message": "ಬ್ಯಾಂಕ್ ಖಾತೆಯನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ."
},
"bankAccount": {
"message": "ಬ್ಯಾಂಕ್ ಖಾತೆ"
},
"amountX": {
"message": "ಮೊತ್ತ $COUNT$",
"description": "Used in bank account verification of micro-deposits. Amount, as in a currency amount. Ex. Amount 1 is $2.00, Amount 2 is $1.50",
"placeholders": {
"count": {
"content": "$1",
"example": "1"
}
}
},
"routingNumber": {
"message": "ರೂಟಿಂಗ್ ಸಂಖ್ಯೆ",
"description": "Bank account routing number"
},
"accountNumber": {
"message": "ಖಾತೆ ಸಂಖ್ಯೆ"
},
"accountHolderName": {
"message": "ಖಾತೆದಾರನ ಹೆಸರು"
},
"bankAccountType": {
"message": "ಅಕೌಂಟ್ ಪ್ರಕಾರ"
},
"bankAccountTypeCompany": {
"message": "ಕಂಪನಿ (ವ್ಯವಹಾರ)"
},
"bankAccountTypeIndividual": {
"message": "ವೈಯಕ್ತಿಕ (ವೈಯಕ್ತಿಕ)"
},
"enterInstallationId": {
"message": "ನಿಮ್ಮ ಸ್ಥಾಪನಾ ಐಡಿಯನ್ನು ನಮೂದಿಸಿ"
},
"limitSubscriptionDesc": {
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
},
"maxSeatLimit": {
"message": "Maximum Seat Limit (optional)",
"description": "Upper limit of seats to allow through autoscaling"
},
"maxSeatCost": {
"message": "Max potential seat cost"
},
"addSeats": {
"message": "ಆಸನಗಳನ್ನು ಸೇರಿಸಿ",
"description": "Seat = User Seat"
},
"removeSeats": {
"message": "ಆಸನಗಳನ್ನು ತೆಗೆದುಹಾಕಿ",
"description": "Seat = User Seat"
},
"subscriptionDesc": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
},
"subscriptionUserSeats": {
"message": "ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆ ಒಟ್ಟು $COUNT$ ಬಳಕೆದಾರರಿಗೆ ಅನುಮತಿಸುತ್ತದೆ.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"limitSubscription": {
"message": "Limit Subscription (Optional)"
},
"subscriptionSeats": {
"message": "Subscription Seats"
},
"subscriptionUpdated": {
"message": "Subscription updated"
},
"additionalOptions": {
"message": "Additional Options"
},
"additionalOptionsDesc": {
"message": "For additional help in managing your subscription, please contact Customer Support."
},
"subscriptionUserSeatsUnlimitedAutoscale": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
},
"subscriptionUserSeatsLimitedAutoscale": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
"placeholders": {
"max": {
"content": "$1",
"example": "50"
}
}
},
"subscriptionFreePlan": {
"message": "You cannot invite more than $COUNT$ users without upgrading your plan.",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"subscriptionFamiliesPlan": {
"message": "You cannot invite more than $COUNT$ users without upgrading your plan. Please contact Customer Support to upgrade.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionSponsoredFamiliesPlan": {
"message": "Your subscription allows for a total of $COUNT$ users. Your plan is sponsored and billed to an external organization.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionMaxReached": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"seatsToAdd": {
"message": "ಸೇರಿಸಲು ಆಸನಗಳು"
},
"seatsToRemove": {
"message": "ತೆಗೆದುಹಾಕಲು ಆಸನಗಳು"
},
"seatsAddNote": {
"message": "ಬಳಕೆದಾರರ ಆಸನಗಳನ್ನು ಸೇರಿಸುವುದರಿಂದ ನಿಮ್ಮ ಬಿಲ್ಲಿಂಗ್ ಮೊತ್ತಕ್ಕೆ ಹೊಂದಾಣಿಕೆ ಉಂಟಾಗುತ್ತದೆ ಮತ್ತು ತಕ್ಷಣ ನಿಮ್ಮ ಪಾವತಿ ವಿಧಾನವನ್ನು ಫೈಲ್ನಲ್ಲಿ ಚಾರ್ಜ್ ಮಾಡುತ್ತದೆ. ಪ್ರಸ್ತುತ ಬಿಲ್ಲಿಂಗ್ ಚಕ್ರದ ಉಳಿದ ಭಾಗಕ್ಕೆ ಮೊದಲ ಶುಲ್ಕವನ್ನು ನಿಗದಿಪಡಿಸಲಾಗುತ್ತದೆ."
},
"seatsRemoveNote": {
"message": "ಬಳಕೆದಾರರ ಆಸನಗಳನ್ನು ತೆಗೆದುಹಾಕುವುದರಿಂದ ನಿಮ್ಮ ಬಿಲ್ಲಿಂಗ್ ಮೊತ್ತಕ್ಕೆ ಹೊಂದಾಣಿಕೆಗಳು ಉಂಟಾಗುತ್ತವೆ, ಅದು ನಿಮ್ಮ ಮುಂದಿನ ಬಿಲ್ಲಿಂಗ್ ಶುಲ್ಕದ ಕ್ರೆಡಿಟ್ಗಳಾಗಿ ಸಾಬೀತಾಗುತ್ತದೆ."
},
"adjustedSeats": {
"message": "$AMOUNT$ ಬಳಕೆದಾರರ ಆಸನಗಳನ್ನು ಹೊಂದಿಸಲಾಗಿದೆ.",
"placeholders": {
"amount": {
"content": "$1",
"example": "15"
}
}
},
"keyUpdated": {
"message": "ಕೀ ನವೀಕರಿಸಲಾಗಿದೆ"
},
"updateKeyTitle": {
"message": "ಕೀ ನವೀಕರಿಸಿ"
},
"updateEncryptionKey": {
"message": "ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನವೀಕರಿಸಿ"
},
"updateEncryptionKeyShortDesc": {
"message": "ನೀವು ಪ್ರಸ್ತುತ ಹಳತಾದ ಎನ್ಕ್ರಿಪ್ಶನ್ ಯೋಜನೆಯನ್ನು ಬಳಸುತ್ತಿರುವಿರಿ."
},
"updateEncryptionKeyDesc": {
"message": "ಉತ್ತಮ ಸುರಕ್ಷತೆ ಮತ್ತು ಹೊಸ ವೈಶಿಷ್ಟ್ಯಗಳಿಗೆ ಪ್ರವೇಶವನ್ನು ಒದಗಿಸುವ ದೊಡ್ಡ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಗಳಿಗೆ ನಾವು ಸರಿಸಿದ್ದೇವೆ. ನಿಮ್ಮ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನವೀಕರಿಸುವುದು ತ್ವರಿತ ಮತ್ತು ಸುಲಭ. ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಕೆಳಗೆ ಟೈಪ್ ಮಾಡಿ. ಈ ನವೀಕರಣವು ಅಂತಿಮವಾಗಿ ಕಡ್ಡಾಯವಾಗುತ್ತದೆ."
},
"updateEncryptionKeyWarning": {
"message": "ನಿಮ್ಮ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ನವೀಕರಿಸಿದ ನಂತರ, ನೀವು ಪ್ರಸ್ತುತ ಬಳಸುತ್ತಿರುವ (ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್ ಅಥವಾ ಬ್ರೌಸರ್ ವಿಸ್ತರಣೆಗಳಂತಹ) ಎಲ್ಲಾ ಬಿಟ್ವಾರ್ಡೆನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗೆ ನೀವು ಲಾಗ್ ಔಟ್ ಮತ್ತು ಬ್ಯಾಕ್ ಇನ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ. ಲಾಗ್ and ಟ್ ಮಾಡಲು ಮತ್ತು ಹಿಂತಿರುಗಲು ವಿಫಲವಾದರೆ (ಅದು ನಿಮ್ಮ ಹೊಸ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡುತ್ತದೆ) ಡೇಟಾ ಭ್ರಷ್ಟಾಚಾರಕ್ಕೆ ಕಾರಣವಾಗಬಹುದು. ನಾವು ನಿಮ್ಮನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಲಾಗ್ ಔಟ್ ಮಾಡಲು ಪ್ರಯತ್ನಿಸುತ್ತೇವೆ, ಆದಾಗ್ಯೂ, ಇದು ವಿಳಂಬವಾಗಬಹುದು."
},
"updateEncryptionKeyExportWarning": {
"message": "ನೀವು ಉಳಿಸಿದ ಯಾವುದೇ ಎನ್ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ರಫ್ತು ಸಹ ಅಮಾನ್ಯವಾಗುತ್ತದೆ."
},
"subscription": {
"message": "ಚಂದಾದಾರಿಕೆ"
},
"loading": {
"message": "ಲೋಡ್ಆಗುತ್ತಿದೆ"
},
"upgrade": {
"message": "ನವೀಕರಿಸಿ"
},
"upgradeOrganization": {
"message": "ಸಂಘಟನೆಯನ್ನು ನವೀಕರಿಸಿ"
},
"upgradeOrganizationDesc": {
"message": "ಉಚಿತ ಸಂಸ್ಥೆಗಳಿಗೆ ಈ ವೈಶಿಷ್ಟ್ಯವು ಲಭ್ಯವಿಲ್ಲ. ಹೆಚ್ಚಿನ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ಪಾವತಿಸಿದ ಯೋಜನೆಗೆ ಬದಲಿಸಿ."
},
"createOrganizationStep1": {
"message": "ಸಂಘಟನೆಯನ್ನು ರಚಿಸಿ: ಹಂತ 1"
},
"createOrganizationCreatePersonalAccount": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯನ್ನು ರಚಿಸುವ ಮೊದಲು, ನೀವು ಮೊದಲು ಉಚಿತ ವೈಯಕ್ತಿಕ ಖಾತೆಯನ್ನು ರಚಿಸಬೇಕಾಗಿದೆ."
},
"refunded": {
"message": "ಮರುಪಾವತಿ ಮಾಡಲಾಗಿದೆ"
},
"nothingSelected": {
"message": "ನೀವು ಯಾವುದನ್ನೂ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ."
},
"acceptPolicies": {
"message": "ಈ ಪೆಟ್ಟಿಗೆಯನ್ನು ಪರಿಶೀಲಿಸುವ ಮೂಲಕ ನೀವು ಈ ಕೆಳಗಿನವುಗಳನ್ನು ಒಪ್ಪುತ್ತೀರಿ:"
},
"acceptPoliciesError": {
"message": "ಸೇವಾ ನಿಯಮಗಳು ಮತ್ತು ಗೌಪ್ಯತೆ ನೀತಿಯನ್ನು ಅಂಗೀಕರಿಸಲಾಗಿಲ್ಲ."
},
"termsOfService": {
"message": "ಸೇವಾ ನಿಯಮಗಳು"
},
"privacyPolicy": {
"message": "ಗೌಪ್ಯತಾ ನೀತಿ"
},
"filters": {
"message": "ಶೋಧಕಗಳು"
},
"vaultTimeout": {
"message": "ವಾಲ್ಟ್ ಕಾಲಾವಧಿ"
},
"vaultTimeoutDesc": {
"message": "ನಿಮ್ಮ ಕಮಾನು ಸಮಯ ಮೀರಲಿ ಮತ್ತು ಆಯ್ದ ಕ್ರಮವನ್ನು ನಿರ್ವಹಿಸುವಾಗ ಆರಿಸಿಕೊಳ್ಳಿ."
},
"oneMinute": {
"message": "೧ ನಿಮಿಷ"
},
"fiveMinutes": {
"message": "೫ ನಿಮಿಷಗಳು"
},
"fifteenMinutes": {
"message": "೧೫ ನಿಮಿಷಗಳು"
},
"thirtyMinutes": {
"message": "30 ನಿಮಿಷಗಳು"
},
"oneHour": {
"message": "೧ ಗಂಟೆ"
},
"fourHours": {
"message": "೪ ಗಂಟೆಗಳು"
},
"onRefresh": {
"message": "ಬ್ರೌಸರ್ ರಿಫ್ರೆಶ್ನಲ್ಲಿ"
},
"dateUpdated": {
"message": "ನವೀಕರಿಸಲಾಗಿದೆ",
"description": "ex. Date this item was updated"
},
"datePasswordUpdated": {
"message": "ಪಾಸ್ವರ್ಡ್ ನವೀಕರಿಸಲಾಗಿದೆ",
"description": "ex. Date this password was updated"
},
"organizationIsDisabled": {
"message": "ಸಂಘಟನೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ."
},
"licenseIsExpired": {
"message": "ಪರವಾನಗಿ ಅವಧಿ ಮೀರಿದೆ."
},
"updatedUsers": {
"message": "ನವೀಕರಿಸಿದ ಬಳಕೆದಾರರು"
},
"selected": {
"message": "ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ"
},
"ownership": {
"message": "ಮಾಲೀಕತ್ವ"
},
"whoOwnsThisItem": {
"message": "ಈ ಐಟಂ ಅನ್ನು ಯಾರು ಹೊಂದಿದ್ದಾರೆ?"
},
"strong": {
"message": "ಬಲಶಾಲಿ",
"description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"good": {
"message": "ಒಳ್ಳೆಯ",
"description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weak": {
"message": "ದುರ್ಬಲ",
"description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"veryWeak": {
"message": "ಅತ್ಯಂತ ದುರ್ಬಲ",
"description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weakMasterPassword": {
"message": "ದುರ್ಬಲ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್"
},
"weakMasterPasswordDesc": {
"message": "ನೀವು ಆಯ್ಕೆ ಮಾಡಿದ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ದುರ್ಬಲವಾಗಿದೆ. ನಿಮ್ಮ ಬಿಟ್ವರ್ಡ್ ಖಾತೆಯನ್ನು ಸರಿಯಾಗಿ ರಕ್ಷಿಸಲು ನೀವು ಬಲವಾದ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ (ಅಥವಾ ಪಾಸ್ಫ್ರೇಸ್) ಅನ್ನು ಬಳಸಬೇಕು. ಈ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವು ಬಳಸಲು ಬಯಸುತ್ತೀರಾ?"
},
"rotateAccountEncKey": {
"message": "ನನ್ನ ಖಾತೆಯ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ಸಹ ತಿರುಗಿಸಿ"
},
"rotateEncKeyTitle": {
"message": "ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ತಿರುಗಿಸಿ"
},
"rotateEncKeyConfirmation": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ತಿರುಗಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"attachmentsNeedFix": {
"message": "ಈ ಐಟಂ ಹಳೆಯ ಫೈಲ್ ಲಗತ್ತುಗಳನ್ನು ಹೊಂದಿದ್ದು ಅದನ್ನು ಸರಿಪಡಿಸಬೇಕಾಗಿದೆ."
},
"attachmentFixDesc": {
"message": "ಇದು ಸರಿಪಡಿಸಬೇಕಾದ ಹಳೆಯ ಫೈಲ್ ಲಗತ್ತು. ಇನ್ನಷ್ಟು ತಿಳಿಯಲು ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"fix": {
"message": "ಹೊಂದಿಸು",
"description": "This is a verb. ex. 'Fix The Car'"
},
"oldAttachmentsNeedFixDesc": {
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿ ಹಳೆಯ ಫೈಲ್ ಲಗತ್ತುಗಳಿವೆ, ಅದನ್ನು ನಿಮ್ಮ ಖಾತೆಯ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿಯನ್ನು ತಿರುಗಿಸುವ ಮೊದಲು ಸರಿಪಡಿಸಬೇಕಾಗಿದೆ."
},
"yourAccountsFingerprint": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"fingerprintEnsureIntegrityVerify": {
"message": "ನಿಮ್ಮ ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಗಳ ಸಮಗ್ರತೆಯನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು, ದಯವಿಟ್ಟು ಮುಂದುವರಿಯುವ ಮೊದಲು ಬಳಕೆದಾರರ ಫಿಂಗರ್ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು ಪರಿಶೀಲಿಸಿ.",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"dontAskFingerprintAgain": {
"message": "ಫಿಂಗರ್ಪ್ರಿಂಟ್ ನುಡಿಗಟ್ಟು ಮತ್ತೆ ಪರಿಶೀಲಿಸಲು ಕೇಳಬೇಡಿ",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"free": {
"message": "ಉಚಿತ",
"description": "Free, as in 'Free beer'"
},
"apiKey": {
"message": "API ಕೀಲಿ"
},
"apiKeyDesc": {
"message": "ನಿಮ್ಮ API ಕೀಲಿಯನ್ನು ಬಿಟ್ವಾರ್ಡೆನ್ ಸಾರ್ವಜನಿಕ API ಗೆ ದೃಢೀಕರಿಸಲು ಬಳಸಬಹುದು."
},
"apiKeyRotateDesc": {
"message": "API ಕೀಲಿಯನ್ನು ತಿರುಗಿಸುವುದರಿಂದ ಹಿಂದಿನ ಕೀಲಿಯನ್ನು ಅಮಾನ್ಯಗೊಳಿಸುತ್ತದೆ. ಪ್ರಸ್ತುತ ಕೀಲಿಯು ಇನ್ನು ಮುಂದೆ ಸುರಕ್ಷಿತವಲ್ಲ ಎಂದು ನೀವು ಭಾವಿಸಿದರೆ ನಿಮ್ಮ API ಕೀಲಿಯನ್ನು ನೀವು ತಿರುಗಿಸಬಹುದು."
},
"apiKeyWarning": {
"message": "ನಿಮ್ಮ API ಕೀ ಸಂಸ್ಥೆಗೆ ಪೂರ್ಣ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿದೆ. ಅದನ್ನು ರಹಸ್ಯವಾಗಿಡಬೇಕು."
},
"userApiKeyDesc": {
"message": "ನಿಮ್ಮ API ಕೀಲಿಯನ್ನು ಬಿಟ್ವಾರ್ಡನ್ CLI ನಲ್ಲಿ ದೃಢೀಕರಿಸಲು ಬಳಸಬಹುದು."
},
"userApiKeyWarning": {
"message": "ನಿಮ್ಮ API ಕೀ ಪರ್ಯಾಯ ದೃಢೀಕರಣ ಕಾರ್ಯವಿಧಾನವಾಗಿದೆ. ಅದನ್ನು ರಹಸ್ಯವಾಗಿಡಬೇಕು."
},
"oauth2ClientCredentials": {
"message": "OAuth 2.0 ಕ್ಲೈಂಟ್ ರುಜುವಾತುಗಳು",
"description": "'OAuth 2.0' is a programming protocol. It should probably not be translated."
},
"viewApiKey": {
"message": "API ಕೀಲಿಯನ್ನು ವೀಕ್ಷಿಸಿ"
},
"rotateApiKey": {
"message": "API ಕೀಲಿಯನ್ನು ತಿರುಗಿಸಿ"
},
"selectOneCollection": {
"message": "ನೀವು ಕನಿಷ್ಠ ಒಂದು ಸಂಗ್ರಹವನ್ನು ಆರಿಸಬೇಕು."
},
"couldNotChargeCardPayInvoice": {
"message": "ನಿಮ್ಮ ಕಾರ್ಡ್ ಅನ್ನು ಚಾರ್ಜ್ ಮಾಡಲು ನಮಗೆ ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ದಯವಿಟ್ಟು ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ಪಾವತಿಸದ ಸರಕುಪಟ್ಟಿ ವೀಕ್ಷಿಸಿ ಮತ್ತು ಪಾವತಿಸಿ."
},
"inAppPurchase": {
"message": "ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಖರೀದಿ"
},
"cannotPerformInAppPurchase": {
"message": "ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಖರೀದಿ ಪಾವತಿ ವಿಧಾನವನ್ನು ಬಳಸುವಾಗ ನೀವು ಈ ಕ್ರಿಯೆಯನ್ನು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ."
},
"manageSubscriptionFromStore": {
"message": "ನಿಮ್ಮ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ಖರೀದಿಸಿದ ಅಂಗಡಿಯಿಂದ ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ನೀವು ನಿರ್ವಹಿಸಬೇಕು."
},
"minLength": {
"message": "ಕನಿಷ್ಠ ಉದ್ದ"
},
"clone": {
"message": "ಕ್ಲೋನ್"
},
"masterPassPolicyDesc": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಶಕ್ತಿಗಾಗಿ ಕನಿಷ್ಠ ಅವಶ್ಯಕತೆಗಳನ್ನು ಹೊಂದಿಸಿ."
},
"twoStepLoginPolicyDesc": {
"message": "ಬಳಕೆದಾರರು ತಮ್ಮ ವೈಯಕ್ತಿಕ ಖಾತೆಗಳಲ್ಲಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಹೊಂದಿಸಲು ಅಗತ್ಯವಿದೆ."
},
"twoStepLoginPolicyWarning": {
"message": "ಮಾಲೀಕರು ಅಥವಾ ನಿರ್ವಾಹಕರಲ್ಲದ ಮತ್ತು ಅವರ ವೈಯಕ್ತಿಕ ಖಾತೆಗಾಗಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸದ ಸಂಸ್ಥೆಯ ಸದಸ್ಯರನ್ನು ಸಂಸ್ಥೆಯಿಂದ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ ಮತ್ತು ಬದಲಾವಣೆಯ ಬಗ್ಗೆ ಅವರಿಗೆ ತಿಳಿಸುವ ಇಮೇಲ್ ಅನ್ನು ಸ್ವೀಕರಿಸಲಾಗುತ್ತದೆ."
},
"twoStepLoginPolicyUserWarning": {
"message": "ನಿಮ್ಮ ಬಳಕೆದಾರ ಖಾತೆಯಲ್ಲಿ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಅಗತ್ಯವಿರುವ ಸಂಸ್ಥೆಯ ಸದಸ್ಯರಾಗಿದ್ದೀರಿ. ನೀವು ಎಲ್ಲಾ ಎರಡು-ಹಂತದ ಲಾಗಿನ್ ಪೂರೈಕೆದಾರರನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದರೆ ನಿಮ್ಮನ್ನು ಈ ಸಂಸ್ಥೆಗಳಿಂದ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ."
},
"passwordGeneratorPolicyDesc": {
"message": "ಪಾಸ್ವರ್ಡ್ ಜನರೇಟರ್ ಕಾನ್ಫಿಗರೇಶನ್ಗಾಗಿ ಕನಿಷ್ಠ ಅವಶ್ಯಕತೆಗಳನ್ನು ಹೊಂದಿಸಿ."
},
"passwordGeneratorPolicyInEffect": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆ ನೀತಿಗಳು ನಿಮ್ಮ ಜನರೇಟರ್ ಸೆಟ್ಟಿಂಗ್ಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತವೆ."
},
"masterPasswordPolicyInEffect": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆ ನೀತಿಗಳಿಗೆ ಈ ಕೆಳಗಿನ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ:"
},
"policyInEffectMinComplexity": {
"message": "$SCORE$ ನ ಕನಿಷ್ಠ ಸಂಕೀರ್ಣತೆಯ ಸ್ಕೋರ್",
"placeholders": {
"score": {
"content": "$1",
"example": "4"
}
}
},
"policyInEffectMinLength": {
"message": "$LENGTH$ನ ಕನಿಷ್ಠ ಉದ್ದ",
"placeholders": {
"length": {
"content": "$1",
"example": "14"
}
}
},
"policyInEffectUppercase": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ದೊಡ್ಡಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ"
},
"policyInEffectLowercase": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಣ್ಣ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ"
},
"policyInEffectNumbers": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಖ್ಯೆಗಳನ್ನು ಹೊಂದಿರುತ್ತದೆ"
},
"policyInEffectSpecial": {
"message": "ಕೆಳಗಿನ ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ವಿಶೇಷ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿರುತ್ತದೆ: $CHARS$",
"placeholders": {
"chars": {
"content": "$1",
"example": "!@#$%^&*"
}
}
},
"masterPasswordPolicyRequirementsNotMet": {
"message": "ನಿಮ್ಮ ಹೊಸ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ನೀತಿಯ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸುವುದಿಲ್ಲ."
},
"minimumNumberOfWords": {
"message": "ಪದಗಳ ಕನಿಷ್ಠ ಸಂಖ್ಯೆ"
},
"defaultType": {
"message": "ಡೀಫಾಲ್ಟ್ ಪ್ರಕಾರ"
},
"userPreference": {
"message": "ಬಳಕೆದಾರರ ಆದ್ಯತೆ"
},
"vaultTimeoutAction": {
"message": "ವಾಲ್ಟ್ ಸಮಯ ಮೀರುವ ಕ್ರಿಯೆ"
},
"vaultTimeoutActionLockDesc": {
"message": "ಲಾಕ್ ಮಾಡಿದ ವಾಲ್ಟ್ಗೆ ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮತ್ತೆ ಪ್ರವೇಶಿಸಲು ನೀವು ಅದನ್ನು ಮರು ನಮೂದಿಸುವ ಅಗತ್ಯವಿದೆ."
},
"vaultTimeoutActionLogOutDesc": {
"message": "ಲಾಗ್ out ಟ್ ವಾಲ್ಟ್ಗೆ ನೀವು ಅದನ್ನು ಮತ್ತೆ ಪ್ರವೇಶಿಸಲು ಮರು ದೃಢೀಕರಿಸುವ ಅಗತ್ಯವಿದೆ."
},
"lock": {
"message": "ಲಾಕ್",
"description": "Verb form: to make secure or inaccesible by"
},
"trash": {
"message": "ಅನುಪಯುಕ್ತ",
"description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted"
},
"searchTrash": {
"message": "ಅನುಪಯುಕ್ತವನ್ನು ಹುಡುಕಿ"
},
"permanentlyDelete": {
"message": "ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಿ"
},
"permanentlyDeleteSelected": {
"message": "ಆಯ್ದವನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಿ"
},
"permanentlyDeleteItem": {
"message": "ಐಟಂ ಅನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಿ"
},
"permanentlyDeleteItemConfirmation": {
"message": "ಈ ಐಟಂ ಅನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"permanentlyDeletedItem": {
"message": "ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾದ ಐಟಂ"
},
"permanentlyDeletedItems": {
"message": "ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾದ ವಸ್ತುಗಳು"
},
"permanentlyDeleteSelectedItemsDesc": {
"message": "ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲು ನೀವು $COUNT$ ಐಟಂ (ಗಳನ್ನು) ಆಯ್ಕೆ ಮಾಡಿದ್ದೀರಿ. ಈ ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"permanentlyDeletedItemId": {
"message": "ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾದ ಐಟಂ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"restore": {
"message": "ಪುನಸ್ಥಾಪಿಸಿ"
},
"restoreSelected": {
"message": "ಆಯ್ಕೆಮಾಡಿ ಮರುಸ್ಥಾಪಿಸಿ"
},
"restoreItem": {
"message": "ಐಟಂ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಿ"
},
"restoredItem": {
"message": "ಐಟಂ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ"
},
"restoredItems": {
"message": "ವಸ್ತುಗಳನ್ನು ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ"
},
"restoreItemConfirmation": {
"message": "ಈ ಐಟಂ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"restoreItems": {
"message": "ವಸ್ತುಗಳನ್ನು ಮರುಸ್ಥಾಪಿಸಿ"
},
"restoreSelectedItemsDesc": {
"message": "ಪುನಃಸ್ಥಾಪಿಸಲು ನೀವು $COUNT$ ಐಟಂ (ಗಳನ್ನು) ಆಯ್ಕೆ ಮಾಡಿದ್ದೀರಿ. ಈ ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ಪುನಃಸ್ಥಾಪಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"restoredItemId": {
"message": "ಐಟಂ $ID$ ಅನ್ನು ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"vaultTimeoutLogOutConfirmation": {
"message": "ಲಾಗ್ ಔಟ್ ಆಗುವುದರಿಂದ ನಿಮ್ಮ ವಾಲ್ಟ್ನ ಎಲ್ಲಾ ಪ್ರವೇಶವನ್ನು ತೆಗೆದುಹಾಕುತ್ತದೆ ಮತ್ತು ಕಾಲಾವಧಿ ಅವಧಿಯ ನಂತರ ಆನ್ಲೈನ್ ದೃಢೀಕರಣದ ಅಗತ್ಯವಿದೆ. ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬಳಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"vaultTimeoutLogOutConfirmationTitle": {
"message": "ಕಾಲಾವಧಿ ಕ್ರಿಯೆಯ ದೃಢೀಕರಣ"
},
"hidePasswords": {
"message": "ಪಾಸ್ವರ್ಡ್ಗಳನ್ನು ಮರೆಮಾಡಿ"
},
"countryPostalCodeRequiredDesc": {
"message": "ಮಾರಾಟ ತೆರಿಗೆ ಮತ್ತು ಹಣಕಾಸು ವರದಿಯನ್ನು ಮಾತ್ರ ಲೆಕ್ಕಹಾಕಲು ನಮಗೆ ಈ ಮಾಹಿತಿಯ ಅಗತ್ಯವಿದೆ."
},
"includeVAT": {
"message": "ವ್ಯಾಟ್ / ಜಿಎಸ್ಟಿ ಮಾಹಿತಿಯನ್ನು ಸೇರಿಸಿ (ಐಚ್ಛಿಕ)"
},
"taxIdNumber": {
"message": "ವ್ಯಾಟ್ / ಜಿಎಸ್ಟಿ ತೆರಿಗೆ ಐಡಿ"
},
"taxInfoUpdated": {
"message": "ತೆರಿಗೆ ಮಾಹಿತಿಯನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ."
},
"setMasterPassword": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಹೊಂದಿಸಿ"
},
"ssoCompleteRegistration": {
"message": "ಎಸ್ಎಸ್ಒನೊಂದಿಗೆ ಲಾಗಿನ್ ಆಗುವುದನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು, ದಯವಿಟ್ಟು ನಿಮ್ಮ ವಾಲ್ಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ಮತ್ತು ರಕ್ಷಿಸಲು ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಹೊಂದಿಸಿ."
},
"identifier": {
"message": "ಗುರುತಿಸುವಿಕೆ"
},
"organizationIdentifier": {
"message": "ಸಂಸ್ಥೆ ಗುರುತಿಸುವಿಕೆ"
},
"ssoLogInWithOrgIdentifier": {
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಏಕ ಸೈನ್-ಆನ್ ಪೋರ್ಟಲ್ ಬಳಸಿ ಲಾಗ್ ಇನ್ ಮಾಡಿ. ಪ್ರಾರಂಭಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಗುರುತಿಸುವಿಕೆಯನ್ನು ನಮೂದಿಸಿ."
},
"enterpriseSingleSignOn": {
"message": "ಎಂಟರ್ಪ್ರೈಸ್ ಏಕ ಸೈನ್-ಆನ್"
},
"ssoHandOff": {
"message": "ನೀವು ಈಗ ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ವಿಸ್ತರಣೆಯಲ್ಲಿ ಮುಂದುವರಿಯಬಹುದು."
},
"includeAllTeamsFeatures": {
"message": "ಎಲ್ಲಾ ತಂಡಗಳ ವೈಶಿಷ್ಟ್ಯಗಳು, ಜೊತೆಗೆ:"
},
"includeSsoAuthentication": {
"message": "SAML2.0 ಮತ್ತು OpenID Connect ಮೂಲಕ SSO ದೃಢೀಕರಣ"
},
"includeEnterprisePolicies": {
"message": "ಎಂಟರ್ಪ್ರೈಸ್ ನೀತಿಗಳು"
},
"ssoValidationFailed": {
"message": "ಎಸ್ಎಸ್ಒ ಕ್ರಮಬದ್ಧಗೊಳಿಸುವಿಕೆ ವಿಫಲವಾಗಿದೆ"
},
"ssoIdentifierRequired": {
"message": "ಸಂಸ್ಥೆ ಗುರುತಿಸುವಿಕೆ ಅಗತ್ಯವಿದೆ."
},
"unlinkSso": {
"message": "ಎಸ್ಎಸ್ಒ ಅನ್ಲಿಂಕ್ ಮಾಡಿ"
},
"unlinkSsoConfirmation": {
"message": "Are you sure you want to unlink SSO for this organization?"
},
"linkSso": {
"message": "ಎಸ್ಎಸ್ಒ ಲಿಂಕ್ ಮಾಡಿ"
},
"singleOrg": {
"message": "ಏಕ ಸಂಸ್ಥೆ"
},
"singleOrgDesc": {
"message": "ಬಳಕೆದಾರರು ಬೇರೆ ಯಾವುದೇ ಸಂಸ್ಥೆಗಳಿಗೆ ಸೇರಲು ಸಾಧ್ಯವಾಗದಂತೆ ನಿರ್ಬಂಧಿಸಿ."
},
"singleOrgBlockCreateMessage": {
"message": "ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಸಂಸ್ಥೆಯು ಒಂದು ನೀತಿಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚು ಸಂಸ್ಥೆಗಳಿಗೆ ಸೇರಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ ಅಥವಾ ಬೇರೆ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯಿಂದ ಸೈನ್ ಅಪ್ ಮಾಡಿ."
},
"singleOrgPolicyWarning": {
"message": "ಮಾಲೀಕರು ಅಥವಾ ನಿರ್ವಾಹಕರಲ್ಲದ ಮತ್ತು ಈಗಾಗಲೇ ಮತ್ತೊಂದು ಸಂಸ್ಥೆಯ ಸದಸ್ಯರಾಗಿರುವ ಸಂಸ್ಥೆಯ ಸದಸ್ಯರನ್ನು ನಿಮ್ಮ ಸಂಸ್ಥೆಯಿಂದ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ."
},
"requireSso": {
"message": "ಏಕ ಸೈನ್-ಆನ್ ದೃಢೀಕರಣ"
},
"requireSsoPolicyDesc": {
"message": "ಎಂಟರ್ಪ್ರೈಸ್ ಸಿಂಗಲ್ ಸೈನ್-ಆನ್ ವಿಧಾನದೊಂದಿಗೆ ಬಳಕೆದಾರರು ಲಾಗ್ ಇನ್ ಆಗಬೇಕು."
},
"prerequisite": {
"message": "ಪೂರ್ವಾಪೇಕ್ಷಿತ"
},
"requireSsoPolicyReq": {
"message": "ಈ ನೀತಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೊದಲು ಏಕ ಸಂಸ್ಥೆ ಉದ್ಯಮ ನೀತಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು."
},
"requireSsoPolicyReqError": {
"message": "ಏಕ ಸಂಸ್ಥೆ ನೀತಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿಲ್ಲ."
},
"requireSsoExemption": {
"message": "ಸಂಸ್ಥೆಯ ಮಾಲೀಕರು ಮತ್ತು ನಿರ್ವಾಹಕರು ಈ ನೀತಿಯ ಜಾರಿಯಿಂದ ವಿನಾಯಿತಿ ಪಡೆದಿದ್ದಾರೆ."
},
"sendTypeFile": {
"message": "ಫೈಲ್"
},
"sendTypeText": {
"message": "ಪಠ್ಯ"
},
"createSend": {
"message": "ಹೊಸ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editSend": {
"message": "ಕಳುಹಿಸು ತಿದ್ದು",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createdSend": {
"message": "ಕಳುಹಿಸು ರಚಿಸಲಾಗಿದೆ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedSend": {
"message": "ಕಳುಹಿಸಿದ ಸಂಪಾದನೆ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletedSend": {
"message": "ಅಳಿಸಿದ ಕಳುಹಿಸಲಾಗಿದೆ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSend": {
"message": "ಅಳಿಸಿ ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSendConfirmation": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"whatTypeOfSend": {
"message": "ಇದು ಯಾವ ರೀತಿಯ ಕಳುಹಿಸುತ್ತದೆ?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletionDate": {
"message": "ಅಳಿಸುವ ದಿನಾಂಕ"
},
"deletionDateDesc": {
"message": "ಕಳುಹಿಸಿದ ದಿನಾಂಕ ಮತ್ತು ಸಮಯದ ಮೇಲೆ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDate": {
"message": "ಮುಕ್ತಾಯ ದಿನಾಂಕ"
},
"expirationDateDesc": {
"message": "ಹೊಂದಿಸಿದ್ದರೆ, ಈ ಕಳುಹಿಸುವಿಕೆಯ ಪ್ರವೇಶವು ನಿಗದಿತ ದಿನಾಂಕ ಮತ್ತು ಸಮಯದ ಮೇಲೆ ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"maxAccessCount": {
"message": "ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ"
},
"maxAccessCountDesc": {
"message": "ಹೊಂದಿಸಿದ್ದರೆ, ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದ ನಂತರ ಬಳಕೆದಾರರಿಗೆ ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"currentAccessCount": {
"message": "ಪ್ರಸ್ತುತ ಪ್ರವೇಶ ಎಣಿಕೆ"
},
"sendPasswordDesc": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಬಳಕೆದಾರರಿಗೆ ಪಾಸ್ವರ್ಡ್ ಐಚ್ ಗತ್ಯವಿದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNotesDesc": {
"message": "ಈ ಕಳುಹಿಸುವ ಬಗ್ಗೆ ಖಾಸಗಿ ಟಿಪ್ಪಣಿಗಳು.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disabled": {
"message": "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
},
"sendLink": {
"message": "ಲಿಂಕ್ ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"copySendLink": {
"message": "ಲಿಂಕ್ ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"removePassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಿ"
},
"removedPassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
},
"removePasswordConfirmation": {
"message": "ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"hideEmail": {
"message": "ಸ್ವೀಕರಿಸುವವರಿಂದ ನನ್ನ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಮರೆಮಾಡಿ."
},
"disableThisSend": {
"message": "ಇದನ್ನು ಕಳುಹಿಸುವುದನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ಇದರಿಂದ ಯಾರೂ ಅದನ್ನು ಪ್ರವೇಶಿಸಲಾಗುವುದಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"allSends": {
"message": "ಎಲ್ಲಾ ಕಳುಹಿಸುತ್ತದೆ"
},
"maxAccessCountReached": {
"message": "ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದೆ",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
"pendingDeletion": {
"message": "ಅಳಿಸುವಿಕೆ ಬಾಕಿ ಉಳಿದಿದೆ"
},
"expired": {
"message": "ಅವಧಿ ಮೀರಿದೆ"
},
"searchSends": {
"message": "ಹುಡುಕಾಟ ಕಳುಹಿಸುತ್ತದೆ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPassword": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪಾಸ್ವರ್ಡ್ನೊಂದಿಗೆ ರಕ್ಷಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಸಲು ದಯವಿಟ್ಟು ಕೆಳಗಿನ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಟೈಪ್ ಮಾಡಿ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPasswordDontKnow": {
"message": "ಪಾಸ್ವರ್ಡ್ ತಿಳಿದಿಲ್ಲವೇ? ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಅಗತ್ಯವಿರುವ ಪಾಸ್ವರ್ಡ್ಗಾಗಿ ಕಳುಹಿಸುವವರನ್ನು ಕೇಳಿ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendHiddenByDefault": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಮರೆಮಾಡಲಾಗಿದೆ. ಕೆಳಗಿನ ಬಟನ್ ಬಳಸಿ ನೀವು ಅದರ ಗೋಚರತೆಯನ್ನು ಟಾಗಲ್ ಮಾಡಬಹುದು.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"downloadFile": {
"message": "ಫೈಲ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"
},
"sendAccessUnavailable": {
"message": "ನೀವು ಪ್ರವೇಶಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿರುವ ಕಳುಹಿಸುವಿಕೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಅಥವಾ ಇನ್ನು ಮುಂದೆ ಲಭ್ಯವಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"missingSendFile": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಗೆ ಸಂಬಂಧಿಸಿದ ಫೈಲ್ ಅನ್ನು ಕಂಡುಹಿಡಿಯಲಾಗಲಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"noSendsInList": {
"message": "ಪಟ್ಟಿ ಮಾಡಲು ಕಳುಹಿಸುವುದಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"emergencyAccess": {
"message": "ತುರ್ತು ಪ್ರವೇಶ"
},
"emergencyAccessDesc": {
"message": "ವಿಶ್ವಾಸಾರ್ಹ ಸಂಪರ್ಕಗಳಿಗಾಗಿ ತುರ್ತು ಪ್ರವೇಶವನ್ನು ನೀಡಿ ಮತ್ತು ನಿರ್ವಹಿಸಿ. ವಿಶ್ವಾಸಾರ್ಹ ಸಂಪರ್ಕಗಳು ತುರ್ತು ಸಂದರ್ಭದಲ್ಲಿ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ವೀಕ್ಷಿಸಲು ಅಥವಾ ಸ್ವಾಧೀನಪಡಿಸಿಕೊಳ್ಳಲು ಪ್ರವೇಶವನ್ನು ಕೋರಬಹುದು. ಶೂನ್ಯ ಜ್ಞಾನ ಹಂಚಿಕೆ ಹೇಗೆ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತದೆ ಎಂಬುದರ ಕುರಿತು ಹೆಚ್ಚಿನ ಮಾಹಿತಿ ಮತ್ತು ವಿವರಗಳಿಗಾಗಿ ನಮ್ಮ ಸಹಾಯ ಪುಟಕ್ಕೆ ಭೇಟಿ ನೀಡಿ."
},
"emergencyAccessOwnerWarning": {
"message": "ನೀವು ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆಗಳ ಮಾಲೀಕರು. ತುರ್ತು ಸಂಪರ್ಕಕ್ಕೆ ನೀವು ಸ್ವಾಧೀನದ ಪ್ರವೇಶವನ್ನು ನೀಡಿದರೆ, ಸ್ವಾಧೀನದ ನಂತರ ಅವರು ನಿಮ್ಮ ಎಲ್ಲ ಅನುಮತಿಗಳನ್ನು ಮಾಲೀಕರಾಗಿ ಬಳಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ."
},
"trustedEmergencyContacts": {
"message": "ವಿಶ್ವಾಸಾರ್ಹ ತುರ್ತು ಸಂಪರ್ಕಗಳು"
},
"noTrustedContacts": {
"message": "ನೀವು ಇನ್ನೂ ಯಾವುದೇ ತುರ್ತು ಸಂಪರ್ಕಗಳನ್ನು ಸೇರಿಸಿಲ್ಲ, ಪ್ರಾರಂಭಿಸಲು ವಿಶ್ವಾಸಾರ್ಹ ಸಂಪರ್ಕವನ್ನು ಆಹ್ವಾನಿಸಿ."
},
"addEmergencyContact": {
"message": "ತುರ್ತು ಸಂಪರ್ಕವನ್ನು ಸೇರಿಸಿ"
},
"designatedEmergencyContacts": {
"message": "ತುರ್ತು ಸಂಪರ್ಕ ಎಂದು ಗೊತ್ತುಪಡಿಸಲಾಗಿದೆ"
},
"noGrantedAccess": {
"message": "ನಿಮ್ಮನ್ನು ಇನ್ನೂ ಯಾರಿಗೂ ತುರ್ತು ಸಂಪರ್ಕವಾಗಿ ನೇಮಿಸಲಾಗಿಲ್ಲ."
},
"inviteEmergencyContact": {
"message": "ತುರ್ತು ಸಂಪರ್ಕವನ್ನು ಆಹ್ವಾನಿಸಿ"
},
"editEmergencyContact": {
"message": "ತುರ್ತು ಸಂಪರ್ಕವನ್ನು ಸಂಪಾದಿಸಿ"
},
"inviteEmergencyContactDesc": {
"message": "ಅವರ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಕೆಳಗೆ ನಮೂದಿಸುವ ಮೂಲಕ ಹೊಸ ತುರ್ತು ಸಂಪರ್ಕವನ್ನು ಆಹ್ವಾನಿಸಿ. ಅವರು ಈಗಾಗಲೇ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲದಿದ್ದರೆ, ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಲು ಅವರನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
},
"emergencyAccessRecoveryInitiated": {
"message": "ತುರ್ತು ಪ್ರವೇಶ ಪ್ರಾರಂಭಿಸಲಾಗಿದೆ"
},
"emergencyAccessRecoveryApproved": {
"message": "ತುರ್ತು ಪ್ರವೇಶ ಅನುಮೋದಿಸಲಾಗಿದೆ"
},
"viewDesc": {
"message": "ನಿಮ್ಮ ಸ್ವಂತ ವಾಲ್ಟ್ನಲ್ಲಿ ಎಲ್ಲಾ ವಸ್ತುಗಳನ್ನು ವೀಕ್ಷಿಸಬಹುದು."
},
"takeover": {
"message": "ಸ್ವಾಧೀನ"
},
"takeoverDesc": {
"message": "ಹೊಸ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ನೊಂದಿಗೆ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮರುಹೊಂದಿಸಬಹುದು."
},
"waitTime": {
"message": "ಸಮಯ ಕಾಯಿರಿ"
},
"waitTimeDesc": {
"message": "ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪ್ರವೇಶವನ್ನು ನೀಡುವ ಮೊದಲು ಸಮಯ ಬೇಕಾಗುತ್ತದೆ."
},
"oneDay": {
"message": "1 ದಿನ"
},
"days": {
"message": "$DAYS$ ದಿನಗಳು",
"placeholders": {
"days": {
"content": "$1",
"example": "1"
}
}
},
"invitedUser": {
"message": "ಆಹ್ವಾನಿತ ಬಳಕೆದಾರ."
},
"acceptEmergencyAccess": {
"message": "ಮೇಲೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ಬಳಕೆದಾರರಿಗೆ ತುರ್ತು ಸಂಪರ್ಕವಾಗಲು ನಿಮ್ಮನ್ನು ಆಹ್ವಾನಿಸಲಾಗಿದೆ. ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು, ನೀವು ಲಾಗ್ ಇನ್ ಆಗಬೇಕು ಅಥವಾ ಹೊಸ ಬಿಟ್ವಾರ್ಡನ್ ಖಾತೆಯನ್ನು ರಚಿಸಬೇಕು."
},
"emergencyInviteAcceptFailed": {
"message": "ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಹೊಸ ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಲು ಬಳಕೆದಾರರನ್ನು ಕೇಳಿ."
},
"emergencyInviteAcceptFailedShort": {
"message": "ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"emergencyInviteAcceptedDesc": {
"message": "ನಿಮ್ಮ ಗುರುತನ್ನು ದೃಢಪಡಿಸಿದ ನಂತರ ನೀವು ಈ ಬಳಕೆದಾರರಿಗಾಗಿ ತುರ್ತು ಆಯ್ಕೆಗಳನ್ನು ಪ್ರವೇಶಿಸಬಹುದು. ಅದು ಸಂಭವಿಸಿದಾಗ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸುತ್ತೇವೆ."
},
"requestAccess": {
"message": "ಪ್ರವೇಶವನ್ನು ವಿನಂತಿಸಿ"
},
"requestAccessConfirmation": {
"message": "ತುರ್ತು ಪ್ರವೇಶವನ್ನು ಕೋರಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? $WAITTIME$ ದಿನ (ಗಳ) ನಂತರ ಅಥವಾ ಬಳಕೆದಾರರು ವಿನಂತಿಯನ್ನು ಹಸ್ತಚಾಲಿತವಾಗಿ ಅನುಮೋದಿಸಿದಾಗಲೆಲ್ಲಾ ನಿಮಗೆ ಪ್ರವೇಶವನ್ನು ಒದಗಿಸಲಾಗುತ್ತದೆ.",
"placeholders": {
"waittime": {
"content": "$1",
"example": "1"
}
}
},
"requestSent": {
"message": "ತುರ್ತು ಪ್ರವೇಶವನ್ನು $USER$ ಗೆ ವಿನಂತಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಯಲು ಸಾಧ್ಯವಾದಾಗ ನಾವು ನಿಮಗೆ ಇಮೇಲ್ ಮೂಲಕ ತಿಳಿಸುತ್ತೇವೆ.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"approve": {
"message": "ಅನುಮೋದಿಸಿದೆ"
},
"reject": {
"message": "ತಿರಸ್ಕರಿಸು"
},
"approveAccessConfirmation": {
"message": "ತುರ್ತು ಪ್ರವೇಶವನ್ನು ಅನುಮೋದಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಇದು ನಿಮ್ಮ ಖಾತೆಗೆ $USER$ ಗೆ $ACTION$ ಗೆ ಅನುಮತಿಸುತ್ತದೆ.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
},
"action": {
"content": "$2",
"example": "View"
}
}
},
"emergencyApproved": {
"message": "ತುರ್ತು ಪ್ರವೇಶ ಅನುಮೋದಿಸಲಾಗಿದೆ."
},
"emergencyRejected": {
"message": "ತುರ್ತು ಪ್ರವೇಶವನ್ನು ತಿರಸ್ಕರಿಸಲಾಗಿದೆ"
},
"passwordResetFor": {
"message": "$USER$ ಗೆ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ. ನೀವು ಈಗ ಹೊಸ ಪಾಸ್ವರ್ಡ್ ಬಳಸಿ ಲಾಗಿನ್ ಮಾಡಬಹುದು.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"personalOwnership": {
"message": "ವೈಯಕ್ತಿಕ ಮಾಲೀಕತ್ವ"
},
"personalOwnershipPolicyDesc": {
"message": "ವೈಯಕ್ತಿಕ ಮಾಲೀಕತ್ವದ ಆಯ್ಕೆಯನ್ನು ತೆಗೆದುಹಾಕುವ ಮೂಲಕ ಬಳಕೆದಾರರಿಗೆ ವಾಲ್ಟ್ ವಸ್ತುಗಳನ್ನು ಸಂಸ್ಥೆಗೆ ಉಳಿಸಲು ಅಗತ್ಯವಿದೆ."
},
"personalOwnershipExemption": {
"message": "ಸಂಸ್ಥೆಯ ಮಾಲೀಕರು ಮತ್ತು ನಿರ್ವಾಹಕರು ಈ ನೀತಿಯ ಜಾರಿಯಿಂದ ವಿನಾಯಿತಿ ಪಡೆದಿದ್ದಾರೆ."
},
"personalOwnershipSubmitError": {
"message": "ಎಂಟರ್ಪ್ರೈಸ್ ನೀತಿಯಿಂದಾಗಿ, ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ವಾಲ್ಟ್ಗೆ ವಸ್ತುಗಳನ್ನು ಉಳಿಸುವುದರಿಂದ ನಿಮ್ಮನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ಮಾಲೀಕತ್ವದ ಆಯ್ಕೆಯನ್ನು ಸಂಸ್ಥೆಗೆ ಬದಲಾಯಿಸಿ ಮತ್ತು ಲಭ್ಯವಿರುವ ಸಂಗ್ರಹಗಳಿಂದ ಆರಿಸಿಕೊಳ್ಳಿ."
},
"disableSend": {
"message": "ಕಳುಹಿಸುವುದನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
},
"disableSendPolicyDesc": {
"message": "ಬಿಟ್ವಾರ್ಡೆನ್ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸಲು ಅಥವಾ ಸಂಪಾದಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಬೇಡಿ. ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಅಳಿಸಲು ಇನ್ನೂ ಅನುಮತಿಸಲಾಗಿದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disableSendExemption": {
"message": "ಸಂಸ್ಥೆಯ ನೀತಿಗಳನ್ನು ನಿರ್ವಹಿಸಬಲ್ಲ ಸಂಸ್ಥೆ ಬಳಕೆದಾರರಿಗೆ ಈ ನೀತಿಯ ಜಾರಿಯಿಂದ ವಿನಾಯಿತಿ ಇದೆ."
},
"sendDisabled": {
"message": "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDisabledWarning": {
"message": "ಎಂಟರ್ಪ್ರೈಸ್ ನೀತಿಯಿಂದಾಗಿ, ನೀವು ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಮಾತ್ರ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptions": {
"message": "ಆಯ್ಕೆಗಳನ್ನು ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyDesc": {
"message": "ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸಲು ಮತ್ತು ಸಂಪಾದಿಸಲು ಆಯ್ಕೆಗಳನ್ನು ಹೊಂದಿಸಿ.",
"description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsExemption": {
"message": "ಸಂಸ್ಥೆಯ ನೀತಿಗಳನ್ನು ನಿರ್ವಹಿಸಬಲ್ಲ ಸಂಸ್ಥೆ ಬಳಕೆದಾರರಿಗೆ ಈ ನೀತಿಯ ಜಾರಿಯಿಂದ ವಿನಾಯಿತಿ ಇದೆ."
},
"disableHideEmail": {
"message": "ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸುವಾಗ ಅಥವಾ ಸಂಪಾದಿಸುವಾಗ ಬಳಕೆದಾರರು ತಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಸ್ವೀಕರಿಸುವವರಿಂದ ಮರೆಮಾಡಲು ಅನುಮತಿಸಬೇಡಿ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyInEffect": {
"message": "ಕೆಳಗಿನ ಸಂಸ್ಥೆಯ ನೀತಿಗಳು ಪ್ರಸ್ತುತ ಜಾರಿಯಲ್ಲಿವೆ:"
},
"sendDisableHideEmailInEffect": {
"message": "ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸುವಾಗ ಅಥವಾ ಸಂಪಾದಿಸುವಾಗ ಬಳಕೆದಾರರು ತಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಸ್ವೀಕರಿಸುವವರಿಂದ ಮರೆಮಾಡಲು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"modifiedPolicyId": {
"message": "ಮಾರ್ಪಡಿಸಿದ ನೀತಿ $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"planPrice": {
"message": "ಯೋಜನೆ ಬೆಲೆ"
},
"estimatedTax": {
"message": "ಅಂದಾಜು ತೆರಿಗೆ"
},
"custom": {
"message": "ಕಸ್ಟಮ್"
},
"customDesc": {
"message": "ಸುಧಾರಿತ ಸಂರಚನೆಗಳಿಗಾಗಿ ಬಳಕೆದಾರರ ಅನುಮತಿಗಳ ಹೆಚ್ಚಿನ ಹರಳಿನ ನಿಯಂತ್ರಣವನ್ನು ಅನುಮತಿಸುತ್ತದೆ."
},
"permissions": {
"message": "ಅನುಮತಿಗಳು"
},
"accessEventLogs": {
"message": "ಈವೆಂಟ್ ಲಾಗ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"
},
"accessImportExport": {
"message": "ಆಮದು / ರಫ್ತು ಪ್ರವೇಶಿಸಿ"
},
"accessReports": {
"message": "ಪ್ರವೇಶ ವರದಿಗಳು"
},
"missingPermissions": {
"message": "You lack the necessary permissions to perform this action."
},
"manageAllCollections": {
"message": "ಎಲ್ಲಾ ಸಂಗ್ರಹಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
},
"createNewCollections": {
"message": "Create New Collections"
},
"editAnyCollection": {
"message": "Edit Any Collection"
},
"deleteAnyCollection": {
"message": "Delete Any Collection"
},
"manageAssignedCollections": {
"message": "ನಿಯೋಜಿಸಲಾದ ಸಂಗ್ರಹಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
},
"editAssignedCollections": {
"message": "Edit Assigned Collections"
},
"deleteAssignedCollections": {
"message": "Delete Assigned Collections"
},
"manageGroups": {
"message": "ಗುಂಪುಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
},
"managePolicies": {
"message": "ನೀತಿಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
},
"manageSso": {
"message": "SSO ಅನ್ನು ನಿರ್ವಹಿಸಿ"
},
"manageUsers": {
"message": "ಬಳಕೆದಾರರನ್ನು ನಿರ್ವಹಿಸಿ"
},
"manageResetPassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಕೆಯನ್ನು ನಿರ್ವಹಿಸಿ"
},
"disableRequiredError": {
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
"placeholders": {
"policyName": {
"content": "$1",
"example": "Single Sign-On Authentication"
}
}
},
"personalOwnershipPolicyInEffect": {
"message": "ಸಂಸ್ಥೆಯ ನೀತಿಯು ನಿಮ್ಮ ಮಾಲೀಕತ್ವದ ಆಯ್ಕೆಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತಿದೆ."
},
"personalOwnershipPolicyInEffectImports": {
"message": "An organization policy has disabled importing items into your personal vault."
},
"personalOwnershipCheckboxDesc": {
"message": "ಸಂಸ್ಥೆ ಬಳಕೆದಾರರಿಗಾಗಿ ವೈಯಕ್ತಿಕ ಮಾಲೀಕತ್ವವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
},
"textHiddenByDefault": {
"message": "ಕಳುಹಿಸುವಿಕೆಯನ್ನು ಪ್ರವೇಶಿಸುವಾಗ, ಪಠ್ಯವನ್ನು ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಮರೆಮಾಡಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNameDesc": {
"message": "ಇದನ್ನು ಕಳುಹಿಸಲು ವಿವರಿಸಲು ಸ್ನೇಹಪರ ಹೆಸರು.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTextDesc": {
"message": "ನೀವು ಕಳುಹಿಸಲು ಬಯಸುವ ಪಠ್ಯ."
},
"sendFileDesc": {
"message": "ನೀವು ಕಳುಹಿಸಲು ಬಯಸುವ ಫೈಲ್."
},
"copySendLinkOnSave": {
"message": "ಇದನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ಲಿಂಕ್ ಅನ್ನು ನಕಲಿಸಿ ಉಳಿಸಿದ ನಂತರ ನನ್ನ ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ಕಳುಹಿಸಿ."
},
"sendLinkLabel": {
"message": "ಲಿಂಕ್ ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"send": {
"message": "ಕಳುಹಿಸಿ",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineProductDesc": {
"message": "ಬಿಟ್ವಾರ್ಡೆನ್ ಕಳುಹಿಸಿ ಸೂಕ್ಷ್ಮ ಮತ್ತು ತಾತ್ಕಾಲಿಕ ಮಾಹಿತಿಯನ್ನು ಇತರರಿಗೆ ಸುಲಭವಾಗಿ ಮತ್ತು ಸುರಕ್ಷಿತವಾಗಿ ರವಾನಿಸುತ್ತದೆ.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineLearnMore": {
"message": "ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more about** Bitwarden Send or sign up to try it today.'"
},
"sendVaultCardProductDesc": {
"message": "ಪಠ್ಯ ಅಥವಾ ಫೈಲ್ಗಳನ್ನು ಯಾರೊಂದಿಗೂ ನೇರವಾಗಿ ಹಂಚಿಕೊಳ್ಳಿ."
},
"sendVaultCardLearnMore": {
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more**, see how it works, or try it now. '"
},
"sendVaultCardSee": {
"message": "ನೋಡಿ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, **see** how it works, or try it now.'"
},
"sendVaultCardHowItWorks": {
"message": "ಇದು ಹೇಗೆ ಕೆಲಸ ಮಾಡುತ್ತದೆ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see **how it works**, or try it now.'"
},
"sendVaultCardOr": {
"message": "ಅಥವ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, **or** try it now.'"
},
"sendVaultCardTryItNow": {
"message": "ಅದನ್ನೀಗ ಪ್ರಯತ್ನಿಸಿ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, or **try it now**.'"
},
"sendAccessTaglineOr": {
"message": "ಅಥವ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send **or** sign up to try it today.'"
},
"sendAccessTaglineSignUp": {
"message": "ಸೈನ್ ಅಪ್ ಮಾಡಿ",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or **sign up** to try it today.'"
},
"sendAccessTaglineTryToday": {
"message": "ಇಂದು ಅದನ್ನು ಪ್ರಯತ್ನಿಸಲು.",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'"
},
"sendCreatorIdentifier": {
"message": "ಬಿಟ್ವಾರ್ಡೆನ್ ಬಳಕೆದಾರ $USER_IDENTIFIER$ ಈ ಕೆಳಗಿನವುಗಳನ್ನು ನಿಮ್ಮೊಂದಿಗೆ ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ",
"placeholders": {
"user_identifier": {
"content": "$1",
"example": "An email address"
}
}
},
"viewSendHiddenEmailWarning": {
"message": "ಈ ಕಳುಹಿಸುವಿಕೆಯನ್ನು ರಚಿಸಿದ ಬಿಟ್ವಾರ್ಡೆನ್ ಬಳಕೆದಾರರು ತಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಮರೆಮಾಡಲು ಆಯ್ಕೆ ಮಾಡಿದ್ದಾರೆ. ಈ ಲಿಂಕ್ನ ವಿಷಯವನ್ನು ಬಳಸುವ ಅಥವಾ ಡೌನ್ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ಅದರ ಮೂಲವನ್ನು ನೀವು ನಂಬಿದ್ದೀರಿ ಎಂದು ನೀವು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಬೇಕು.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDateIsInvalid": {
"message": "ಒದಗಿಸಿದ ಮುಕ್ತಾಯ ದಿನಾಂಕವು ಮಾನ್ಯವಾಗಿಲ್ಲ."
},
"deletionDateIsInvalid": {
"message": "ಒದಗಿಸಿದ ಅಳಿಸುವ ದಿನಾಂಕವು ಮಾನ್ಯವಾಗಿಲ್ಲ."
},
"expirationDateAndTimeRequired": {
"message": "ಮುಕ್ತಾಯ ದಿನಾಂಕ ಮತ್ತು ಸಮಯ ಅಗತ್ಯವಿದೆ."
},
"deletionDateAndTimeRequired": {
"message": "ಅಳಿಸುವ ದಿನಾಂಕ ಮತ್ತು ಸಮಯ ಅಗತ್ಯವಿದೆ."
},
"dateParsingError": {
"message": "ನಿಮ್ಮ ಅಳಿಸುವಿಕೆ ಮತ್ತು ಮುಕ್ತಾಯ ದಿನಾಂಕಗಳನ್ನು ಉಳಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ."
},
"webAuthnFallbackMsg": {
"message": "ನಿಮ್ಮ 2FA ಅನ್ನು ಪರಿಶೀಲಿಸಲು ದಯವಿಟ್ಟು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ."
},
"webAuthnAuthenticate": {
"message": "WebAuthn ಅನ್ನು ಪ್ರಮಾಣಿಕರಿಸು"
},
"webAuthnNotSupported": {
"message": "ಈ ಬ್ರೌಸರ್ನಲ್ಲಿ ವೆಬ್ಆಥ್ನ್ ಬೆಂಬಲಿಸುವುದಿಲ್ಲ."
},
"webAuthnSuccess": {
"message": "WebAuthn ಯಶಸ್ವಿಯಾಗಿ ಪರಿಶೀಲಿಸಲಾಗಿದೆ! ನೀವು ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು."
},
"hintEqualsPassword": {
"message": "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಸುಳಿವು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ನಂತೆಯೇ ಇರಬಾರದು."
},
"enrollPasswordReset": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಲು ನೋಂದಾಯಿಸಿ"
},
"enrolledPasswordReset": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಲು ದಾಖಲಾಗಿದೆ"
},
"withdrawPasswordReset": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವಿಕೆಯಿಂದ ಹಿಂತೆಗೆದುಕೊಳ್ಳಿ"
},
"enrollPasswordResetSuccess": {
"message": "ದಾಖಲಾತಿ ಯಶಸ್ಸು!"
},
"withdrawPasswordResetSuccess": {
"message": "ಹಿಂತೆಗೆದುಕೊಳ್ಳುವ ಯಶಸ್ಸು!"
},
"eventEnrollPasswordReset": {
"message": "ಬಳಕೆದಾರ $ID$ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಸಹಾಯಕ್ಕೆ ಸೇರಿಕೊಂಡಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventWithdrawPasswordReset": {
"message": "ಬಳಕೆದಾರ $ID$ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಸಹಾಯದಿಂದ ಹಿಂದೆ ಸರಿದಿದೆ.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventAdminPasswordReset": {
"message": "ಬಳಕೆದಾರ $ID$ ಗಾಗಿ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventResetSsoLink": {
"message": "Reset Sso link for user $ID$",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"firstSsoLogin": {
"message": "$ID$ logged in using Sso for the first time",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"resetPassword": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ"
},
"resetPasswordLoggedOutWarning": {
"message": "ಮುಂದುವರಿಯುವುದರಿಂದ ಅವರ ಪ್ರಸ್ತುತ ಸೆಷನ್ನಿಂದ $NAME$ ಅನ್ನು ಲಾಗ್ ಮಾಡುತ್ತದೆ, ಅವರಿಗೆ ಮತ್ತೆ ಲಾಗ್ ಇನ್ ಆಗುವ ಅಗತ್ಯವಿರುತ್ತದೆ. ಇತರ ಸಾಧನಗಳಲ್ಲಿನ ಸಕ್ರಿಯ ಸೆಷನ್ಗಳು ಒಂದು ಗಂಟೆಯವರೆಗೆ ಸಕ್ರಿಯವಾಗಿ ಮುಂದುವರಿಯಬಹುದು.",
"placeholders": {
"name": {
"content": "$1",
"example": "John Smith"
}
}
},
"thisUser": {
"message": "ಈ ಬಳಕೆದಾರ"
},
"resetPasswordMasterPasswordPolicyInEffect": {
"message": "ಒಂದು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂಸ್ಥೆಯ ನೀತಿಗಳಿಗೆ ಈ ಕೆಳಗಿನ ಅವಶ್ಯಕತೆಗಳನ್ನು ಪೂರೈಸಲು ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ:"
},
"resetPasswordSuccess": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಯಶಸ್ಸು!"
},
"resetPasswordEnrollmentWarning": {
"message": "ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಲು ಸಂಸ್ಥೆಯ ನಿರ್ವಾಹಕರಿಗೆ ದಾಖಲಾತಿ ಅನುಮತಿಸುತ್ತದೆ. ನೀವು ದಾಖಲಾತಿ ಮಾಡಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
},
"resetPasswordPolicy": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ"
},
"resetPasswordPolicyDescription": {
"message": "ಸಂಸ್ಥೆಯ ಬಳಕೆದಾರರ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲು ಸಂಸ್ಥೆಯಲ್ಲಿನ ನಿರ್ವಾಹಕರನ್ನು ಅನುಮತಿಸಿ."
},
"resetPasswordPolicyWarning": {
"message": "ನಿರ್ವಾಹಕರು ತಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸುವ ಮೊದಲು ಸಂಸ್ಥೆಯಲ್ಲಿನ ಬಳಕೆದಾರರು ಸ್ವಯಂ-ದಾಖಲಾತಿ ಅಥವಾ ಸ್ವಯಂ-ದಾಖಲಾತಿ ಮಾಡಬೇಕಾಗುತ್ತದೆ."
},
"resetPasswordPolicyAutoEnroll": {
"message": "ಸ್ವಯಂಚಾಲಿತ ದಾಖಲಾತಿ"
},
"resetPasswordPolicyAutoEnrollDescription": {
"message": "ಎಲ್ಲಾ ಬಳಕೆದಾರರು ತಮ್ಮ ಆಹ್ವಾನವನ್ನು ಸ್ವೀಕರಿಸಿದ ನಂತರ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವಿಕೆಗೆ ದಾಖಲಾಗುತ್ತಾರೆ."
},
"resetPasswordPolicyAutoEnrollWarning": {
"message": "ಈಗಾಗಲೇ ಸಂಸ್ಥೆಯಲ್ಲಿರುವ ಬಳಕೆದಾರರನ್ನು ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವಿಕೆಯಲ್ಲಿ ಪೂರ್ವಭಾವಿಯಾಗಿ ದಾಖಲಿಸಲಾಗುವುದಿಲ್ಲ. ನಿರ್ವಾಹಕರು ತಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸುವ ಮೊದಲು ಅವರು ಸ್ವಯಂ-ದಾಖಲಾತಿ ಮಾಡಬೇಕಾಗುತ್ತದೆ."
},
"resetPasswordPolicyAutoEnrollCheckbox": {
"message": "ಹೊಸ ಬಳಕೆದಾರರನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ದಾಖಲಿಸಿ"
},
"resetPasswordAutoEnrollInviteWarning": {
"message": "ಈ ಸಂಸ್ಥೆಯು ಎಂಟರ್ಪ್ರೈಸ್ ನೀತಿಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ನಿಮ್ಮನ್ನು ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಲು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ದಾಖಲಿಸುತ್ತದೆ. ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಲು ಸಂಸ್ಥೆಯ ನಿರ್ವಾಹಕರಿಗೆ ದಾಖಲಾತಿ ಅನುಮತಿಸುತ್ತದೆ."
},
"resetPasswordOrgKeysError": {
"message": "ಸಂಸ್ಥೆ ಕೀಗಳ ಪ್ರತಿಕ್ರಿಯೆ ಶೂನ್ಯವಾಗಿದೆ"
},
"resetPasswordDetailsError": {
"message": "ಪಾಸ್ವರ್ಡ್ ವಿವರಗಳನ್ನು ಮರುಹೊಂದಿಸಿ ಪ್ರತಿಕ್ರಿಯೆ ಶೂನ್ಯವಾಗಿದೆ"
},
"trashCleanupWarning": {
"message": "30 ದಿನಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅನುಪಯುಕ್ತದಲ್ಲಿರುವ ಐಟಂಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ."
},
"trashCleanupWarningSelfHosted": {
"message": "ಸ್ವಲ್ಪ ಸಮಯದವರೆಗೆ ಅನುಪಯುಕ್ತದಲ್ಲಿರುವ ಐಟಂಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ."
},
"passwordPrompt": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಮರು-ಪ್ರಾಂಪ್ಟ್"
},
"passwordConfirmation": {
"message": "ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಣ"
},
"passwordConfirmationDesc": {
"message": "ಮುಂದುವರಿಯಲು ಈ ಕ್ರಿಯೆಯನ್ನು ರಕ್ಷಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ನಿಮ್ಮ ಗುರುತನ್ನು ಪರಿಶೀಲಿಸಲು ನಿಮ್ಮ ಮಾಸ್ಟರ್ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರು ನಮೂದಿಸಿ."
},
"reinviteSelected": {
"message": "ಆಮಂತ್ರಣಗಳನ್ನು ಮರುಹೊಂದಿಸಿ"
},
"noSelectedUsersApplicable": {
"message": "ಆಯ್ದ ಯಾವುದೇ ಬಳಕೆದಾರರಿಗೆ ಈ ಕ್ರಿಯೆ ಅನ್ವಯಿಸುವುದಿಲ್ಲ."
},
"removeUsersWarning": {
"message": "ಕೆಳಗಿನ ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಪ್ರಕ್ರಿಯೆಯು ಪೂರ್ಣಗೊಳ್ಳಲು ಕೆಲವು ಸೆಕೆಂಡುಗಳು ತೆಗೆದುಕೊಳ್ಳಬಹುದು ಮತ್ತು ಅದನ್ನು ಅಡ್ಡಿಪಡಿಸಲು ಅಥವಾ ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
},
"theme": {
"message": "Theme"
},
"themeDesc": {
"message": "Choose a theme for your web vault."
},
"themeSystem": {
"message": "Use System Theme"
},
"themeDark": {
"message": "Dark"
},
"themeLight": {
"message": "Light"
},
"confirmSelected": {
"message": "ಆಯ್ಕೆಮಾಡಿದದನ್ನು ದೃಢೀಕರಿಸಿ"
},
"bulkConfirmStatus": {
"message": "ಬೃಹತ್ ಕ್ರಿಯೆಯ ಸ್ಥಿತಿ"
},
"bulkConfirmMessage": {
"message": "ಯಶಸ್ವಿಯಾಗಿ ದೃಢಪಡಿಸಲಾಗಿದೆ."
},
"bulkReinviteMessage": {
"message": "ಯಶಸ್ವಿಯಾಗಿ ಪುನಃ ಆಹ್ವಾನಿಸಲಾಗಿದೆ."
},
"bulkRemovedMessage": {
"message": "ಯಶಸ್ವಿಯಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
},
"bulkFilteredMessage": {
"message": "ಹೊರಗಿಡಲಾಗಿದೆ, ಈ ಕ್ರಿಯೆಗೆ ಅನ್ವಯಿಸುವುದಿಲ್ಲ."
},
"fingerprint": {
"message": "ಫಿಂಗರ್ಪ್ರಿಂಟ್"
},
"removeUsers": {
"message": "ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಿ"
},
"error": {
"message": "ದೋಷ"
},
"resetPasswordManageUsers": {
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ ಅನುಮತಿಯೊಂದಿಗೆ ಬಳಕೆದಾರರನ್ನು ನಿರ್ವಹಿಸಿ"
},
"setupProvider": {
"message": "Provider Setup"
},
"setupProviderLoginDesc": {
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
},
"setupProviderDesc": {
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
},
"providerName": {
"message": "Provider Name"
},
"providerSetup": {
"message": "The provider has been set up."
},
"clients": {
"message": "Clients"
},
"providerAdmin": {
"message": "Provider Admin"
},
"providerAdminDesc": {
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
},
"serviceUser": {
"message": "Service User"
},
"serviceUserDesc": {
"message": "Service users can access and manage all client organizations."
},
"providerInviteUserDesc": {
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
},
"joinProvider": {
"message": "Join Provider"
},
"joinProviderDesc": {
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
},
"providerInviteAcceptFailed": {
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
},
"providerInviteAcceptedDesc": {
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
},
"providerUsersNeedConfirmed": {
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
},
"provider": {
"message": "Provider"
},
"newClientOrganization": {
"message": "New Client Organization"
},
"newClientOrganizationDesc": {
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
},
"addExistingOrganization": {
"message": "Add Existing Organization"
},
"myProvider": {
"message": "My Provider"
},
"addOrganizationConfirmation": {
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
},
"provider": {
"content": "$2",
"example": "My Provider Name"
}
}
},
"organizationJoinedProvider": {
"message": "Organization was successfully added to the provider"
},
"accessingUsingProvider": {
"message": "Accessing organization using provider $PROVIDER$",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"providerIsDisabled": {
"message": "Provider is disabled."
},
"providerUpdated": {
"message": "Provider updated"
},
"yourProviderIs": {
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"detachedOrganization": {
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"detachOrganizationConfirmation": {
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
},
"add": {
"message": "Add"
},
"updatedMasterPassword": {
"message": "Updated Master Password"
},
"updateMasterPassword": {
"message": "Update Master Password"
},
"updateMasterPasswordWarning": {
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
},
"masterPasswordInvalidWarning": {
"message": "Your Master Password does not meet the policy requirements of this organization. In order to join the organization, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
},
"maximumVaultTimeout": {
"message": "Vault Timeout"
},
"maximumVaultTimeoutDesc": {
"message": "Configure a maximum vault timeout for all users."
},
"maximumVaultTimeoutLabel": {
"message": "Maximum Vault Timeout"
},
"invalidMaximumVaultTimeout": {
"message": "Invalid Maximum Vault Timeout."
},
"hours": {
"message": "Hours"
},
"minutes": {
"message": "Minutes"
},
"vaultTimeoutPolicyInEffect": {
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
"placeholders": {
"hours": {
"content": "$1",
"example": "5"
},
"minutes": {
"content": "$2",
"example": "5"
}
}
},
"customVaultTimeout": {
"message": "Custom Vault Timeout"
},
"vaultTimeoutToLarge": {
"message": "Your vault timeout exceeds the restriction set by your organization."
},
"disablePersonalVaultExport": {
"message": "Disable Personal Vault Export"
},
"disablePersonalVaultExportDesc": {
"message": "Prohibits users from exporting their private vault data."
},
"vaultExportDisabled": {
"message": "Vault Export Disabled"
},
"personalVaultExportPolicyInEffect": {
"message": "One or more organization policies prevents you from exporting your personal vault."
},
"selectType": {
"message": "Select SSO Type"
},
"type": {
"message": "Type"
},
"openIdConnectConfig": {
"message": "OpenID Connect Configuration"
},
"samlSpConfig": {
"message": "SAML Service Provider Configuration"
},
"samlIdpConfig": {
"message": "SAML Identity Provider Configuration"
},
"callbackPath": {
"message": "Callback Path"
},
"signedOutCallbackPath": {
"message": "Signed Out Callback Path"
},
"authority": {
"message": "Authority"
},
"clientId": {
"message": "Client ID"
},
"clientSecret": {
"message": "Client Secret"
},
"metadataAddress": {
"message": "Metadata Address"
},
"oidcRedirectBehavior": {
"message": "OIDC Redirect Behavior"
},
"getClaimsFromUserInfoEndpoint": {
"message": "Get claims from user info endpoint"
},
"additionalScopes": {
"message": "Custom Scopes"
},
"additionalUserIdClaimTypes": {
"message": "Custom User ID Claim Types"
},
"additionalEmailClaimTypes": {
"message": "Email Claim Types"
},
"additionalNameClaimTypes": {
"message": "Custom Name Claim Types"
},
"acrValues": {
"message": "Requested Authentication Context Class Reference values"
},
"expectedReturnAcrValue": {
"message": "Expected \"acr\" Claim Value In Response"
},
"spEntityId": {
"message": "SP Entity ID"
},
"spMetadataUrl": {
"message": "SAML 2.0 Metadata URL"
},
"spAcsUrl": {
"message": "Assertion Consumer Service (ACS) URL"
},
"spNameIdFormat": {
"message": "Name ID Format"
},
"spOutboundSigningAlgorithm": {
"message": "Outbound Signing Algorithm"
},
"spSigningBehavior": {
"message": "Signing Behavior"
},
"spMinIncomingSigningAlgorithm": {
"message": "Minimum Incoming Signing Algorithm"
},
"spWantAssertionsSigned": {
"message": "Expect signed assertions"
},
"spValidateCertificates": {
"message": "Validate certificates"
},
"idpEntityId": {
"message": "Entity ID"
},
"idpBindingType": {
"message": "Binding Type"
},
"idpSingleSignOnServiceUrl": {
"message": "Single Sign On Service URL"
},
"idpSingleLogoutServiceUrl": {
"message": "Single Log Out Service URL"
},
"idpX509PublicCert": {
"message": "X509 Public Certificate"
},
"idpOutboundSigningAlgorithm": {
"message": "Outbound Signing Algorithm"
},
"idpAllowUnsolicitedAuthnResponse": {
"message": "Allow unsolicited authentication response"
},
"idpAllowOutboundLogoutRequests": {
"message": "Allow outbound logout requests"
},
"idpSignAuthenticationRequests": {
"message": "Sign authentication requests"
},
"ssoSettingsSaved": {
"message": "Single Sign-On configuration was saved."
},
"sponsoredFamilies": {
"message": "Free Bitwarden Families"
},
"sponsoredFamiliesEligible": {
"message": "You and your family are eligible for Free Bitwarden Families. Redeem with your personal email to keep your data secure even when you are not at work."
},
"sponsoredFamiliesEligibleCard": {
"message": "Redeem your Free Bitwarden for Families plan today to keep your data secure even when you are not at work."
},
"sponsoredFamiliesInclude": {
"message": "The Bitwarden for Families plan include"
},
"sponsoredFamiliesPremiumAccess": {
"message": "Premium access for up to 6 users"
},
"sponsoredFamiliesSharedCollections": {
"message": "Shared collections for Family secrets"
},
"badToken": {
"message": "The link is no longer valid. Please have the sponsor resend the offer."
},
"reclaimedFreePlan": {
"message": "Reclaimed free plan"
},
"redeem": {
"message": "Redeem"
},
"sponsoredFamiliesSelectOffer": {
"message": "Select the organization you would like sponsored"
},
"familiesSponsoringOrgSelect": {
"message": "Which Free Families offer would you like to redeem?"
},
"sponsoredFamiliesEmail": {
"message": "Enter your personal email to redeem Bitwarden Families"
},
"sponsoredFamiliesLeaveCopy": {
"message": "If you leave or are removed from the sponsoring organization, your Families plan will expire at the end of the billing period."
},
"acceptBitwardenFamiliesHelp": {
"message": "Accept offer for an existing organization or create a new Families organization."
},
"setupSponsoredFamiliesLoginDesc": {
"message": "You've been offered a free Bitwarden Families Plan Organization. To continue, you need to log in to the account that received the offer."
},
"sponsoredFamiliesAcceptFailed": {
"message": "Unable to accept offer. Please resend the offer email from your enterprise account and try again."
},
"sponsoredFamiliesAcceptFailedShort": {
"message": "Unable to accept offer. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must have at least one existing Families Organization."
}
}
},
"sponsoredFamiliesOffer": {
"message": "Accept Free Bitwarden Families"
},
"sponsoredFamiliesOfferRedeemed": {
"message": "Free Bitwarden Families offer successfully redeemed"
},
"redeemed": {
"message": "Redeemed"
},
"redeemedAccount": {
"message": "Redeemed Account"
},
"revokeAccount": {
"message": "Revoke account $NAME$",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"resendEmailLabel": {
"message": "Resend Sponsorship email to $NAME$ sponsorship",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"freeFamiliesPlan": {
"message": "Free Families Plan"
},
"redeemNow": {
"message": "Redeem Now"
},
"recipient": {
"message": "Recipient"
},
"removeSponsorship": {
"message": "Remove Sponsorship"
},
"removeSponsorshipConfirmation": {
"message": "After removing a sponsorship, you will be responsible for this subscription and related invoices. Are you sure you want to continue?"
},
"sponsorshipCreated": {
"message": "Sponsorship Created"
},
"revoke": {
"message": "Revoke"
},
"emailSent": {
"message": "Email Sent"
},
"revokeSponsorshipConfirmation": {
"message": "After removing this account, the Families organization owner will be responsible for this subscription and related invoices. Are you sure you want to continue?"
},
"removeSponsorshipSuccess": {
"message": "Sponsorship Removed"
},
"ssoKeyConnectorUnavailable": {
"message": "Unable to reach the Key Connector, try again later."
},
"keyConnectorUrl": {
"message": "Key Connector URL"
},
"sendVerificationCode": {
"message": "Send a verification code to your email"
},
"sendCode": {
"message": "Send Code"
},
"codeSent": {
"message": "Code Sent"
},
"verificationCode": {
"message": "Verification Code"
},
"confirmIdentity": {
"message": "Confirm your identity to continue."
},
"verificationCodeRequired": {
"message": "Verification code is required."
},
"invalidVerificationCode": {
"message": "Invalid verification code"
},
"convertOrganizationEncryptionDesc": {
"message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"leaveOrganization": {
"message": "Leave Organization"
},
"removeMasterPassword": {
"message": "Remove Master Password"
},
"removedMasterPassword": {
"message": "Master password removed."
},
"allowSso": {
"message": "Allow SSO authentication"
},
"allowSsoDesc": {
"message": "Once set up, your configuration will be saved and members will be able to authenticate using their Identity Provider credentials."
},
"ssoPolicyHelpStart": {
"message": "Enable the",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpLink": {
"message": "SSO Authentication policy",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpEnd": {
"message": "to require all members to log in with SSO.",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpKeyConnector": {
"message": "SSO Authentication and Single Organization policies are required to set up Key Connector decryption."
},
"memberDecryptionOption": {
"message": "Member Decryption Options"
},
"memberDecryptionPassDesc": {
"message": "Once authenticated, members will decrypt vault data using their Master Passwords."
},
"keyConnector": {
"message": "Key Connector"
},
"memberDecryptionKeyConnectorDesc": {
"message": "Connect Login with SSO to your self-hosted decryption key server. Using this option, members won’t need to use their Master Passwords to decrypt vault data. Contact Bitwarden Support for set up assistance."
},
"keyConnectorPolicyRestriction": {
"message": "\"Login with SSO and Key Connector Decryption\" is enabled. This policy will only apply to Owners and Admins."
},
"enabledSso": {
"message": "Enabled SSO"
},
"disabledSso": {
"message": "Disabled SSO"
},
"enabledKeyConnector": {
"message": "Enabled Key Connector"
},
"disabledKeyConnector": {
"message": "Disabled Key Connector"
},
"keyConnectorWarning": {
"message": "Once members begin using Key Connector, your Organization cannot revert to Master Password decryption. Proceed only if you are comfortable deploying and managing a key server."
},
"migratedKeyConnector": {
"message": "Migrated to Key Connector"
},
"paymentSponsored": {
"message": "Please provide a payment method to associate with the organization. Don't worry, we won't charge you anything unless you select additional features or your sponsorship expires. "
},
"orgCreatedSponsorshipInvalid": {
"message": "The sponsorship offer has expired. You may delete the organization you created to avoid a charge at the end of your 7 day trial. Otherwise you may close this prompt to keep the organization and assume billing responsibility."
},
"newFamiliesOrganization": {
"message": "New Families Organization"
},
"acceptOffer": {
"message": "Accept Offer"
},
"sponsoringOrg": {
"message": "Sponsoring Organization"
},
"keyConnectorTest": {
"message": "Test"
},
"keyConnectorTestSuccess": {
"message": "Success! Key Connector reached."
},
"keyConnectorTestFail": {
"message": "Cannot reach Key Connector. Check URL."
},
"sponsorshipTokenHasExpired": {
"message": "The sponsorship offer has expired."
},
"freeWithSponsorship": {
"message": "FREE with sponsorship"
},
"formErrorSummaryPlural": {
"message": "$COUNT$ fields above need your attention.",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"formErrorSummarySingle": {
"message": "1 field above needs your attention."
},
"fieldRequiredError": {
"message": "$FIELDNAME$ is required.",
"placeholders": {
"fieldname": {
"content": "$1",
"example": "Full name"
}
}
},
"required": {
"message": "required"
},
"idpSingleSignOnServiceUrlRequired": {
"message": "Required if Entity ID is not a URL."
},
"openIdOptionalCustomizations": {
"message": "Optional Customizations"
},
"openIdAuthorityRequired": {
"message": "Required if Authority is not valid."
},
"separateMultipleWithComma": {
"message": "Separate multiple with a comma."
},
"sessionTimeout": {
"message": "Your session has timed out. Please go back and try logging in again."
},
"exportingPersonalVaultTitle": {
"message": "Exporting Personal Vault"
},
"exportingOrganizationVaultTitle": {
"message": "Exporting Organization Vault"
},
"exportingPersonalVaultDescription": {
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
}
}
},
"exportingOrganizationVaultDescription": {
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"backToReports": {
"message": "Back to Reports"
},
"generator": {
"message": "Generator"
},
"whatWouldYouLikeToGenerate": {
"message": "What would you like to generate?"
},
"passwordType": {
"message": "Password Type"
},
"regenerateUsername": {
"message": "Regenerate Username"
},
"generateUsername": {
"message": "Generate Username"
},
"usernameType": {
"message": "Username Type"
},
"plusAddressedEmail": {
"message": "Plus Addressed Email",
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
},
"plusAddressedEmailDesc": {
"message": "Use your email provider's sub-addressing capabilities."
},
"catchallEmail": {
"message": "Catch-all Email"
},
"catchallEmailDesc": {
"message": "Use your domain's configured catch-all inbox."
},
"random": {
"message": "Random"
},
"randomWord": {
"message": "Random Word"
},
"service": {
"message": "Service"
}
}
| bitwarden/web/src/locales/kn/messages.json/0 | {
"file_path": "bitwarden/web/src/locales/kn/messages.json",
"repo_id": "bitwarden",
"token_count": 172095
} | 161 |
{
"pageTitle": {
"message": "$APP_NAME$ webbvalv",
"description": "The title of the website in the browser window.",
"placeholders": {
"app_name": {
"content": "$1",
"example": "Bitwarden"
}
}
},
"whatTypeOfItem": {
"message": "Vilken typ av objekt är detta?"
},
"name": {
"message": "Namn"
},
"uri": {
"message": "URI"
},
"uriPosition": {
"message": "URI $POSITION$",
"description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.",
"placeholders": {
"position": {
"content": "$1",
"example": "2"
}
}
},
"newUri": {
"message": "Ny URI"
},
"username": {
"message": "Användarnamn"
},
"password": {
"message": "Lösenord"
},
"newPassword": {
"message": "Nytt lösenord"
},
"passphrase": {
"message": "Lösenordsfras"
},
"notes": {
"message": "Anteckningar"
},
"customFields": {
"message": "Anpassade fält"
},
"cardholderName": {
"message": "Kortinnehavarens namn"
},
"number": {
"message": "Nummer"
},
"brand": {
"message": "Märke"
},
"expiration": {
"message": "Utgång"
},
"securityCode": {
"message": "Säkerhetskod (CVV)"
},
"identityName": {
"message": "Identitetsnamn"
},
"company": {
"message": "Företag"
},
"ssn": {
"message": "Personnummer"
},
"passportNumber": {
"message": "Passnummer"
},
"licenseNumber": {
"message": "Körkortsnummer"
},
"email": {
"message": "E-post"
},
"phone": {
"message": "Telefon"
},
"january": {
"message": "Januari"
},
"february": {
"message": "Februari"
},
"march": {
"message": "Mars"
},
"april": {
"message": "April"
},
"may": {
"message": "Maj"
},
"june": {
"message": "Juni"
},
"july": {
"message": "Juli"
},
"august": {
"message": "Augusti"
},
"september": {
"message": "September"
},
"october": {
"message": "Oktober"
},
"november": {
"message": "November"
},
"december": {
"message": "December"
},
"title": {
"message": "Titel"
},
"mr": {
"message": "Herr"
},
"mrs": {
"message": "Fru"
},
"ms": {
"message": "Fröken"
},
"dr": {
"message": "Dr"
},
"expirationMonth": {
"message": "Utgångsmånad"
},
"expirationYear": {
"message": "Utgångsår"
},
"authenticatorKeyTotp": {
"message": "Autentiseringsnyckel (TOTP)"
},
"folder": {
"message": "Mapp"
},
"newCustomField": {
"message": "Nytt anpassat fält"
},
"value": {
"message": "Värde"
},
"dragToSort": {
"message": "Dra för att sortera"
},
"cfTypeText": {
"message": "Text"
},
"cfTypeHidden": {
"message": "Dold"
},
"cfTypeBoolean": {
"message": "Booleskt värde"
},
"cfTypeLinked": {
"message": "Länkad",
"description": "This describes a field that is 'linked' (related) to another field."
},
"remove": {
"message": "Ta bort"
},
"unassigned": {
"message": "Ej tilldelad"
},
"noneFolder": {
"message": "Ingen mapp",
"description": "This is the folder for uncategorized items"
},
"addFolder": {
"message": "Lägg till mapp"
},
"editFolder": {
"message": "Redigera mapp"
},
"baseDomain": {
"message": "Basdomän",
"description": "Domain name. Ex. website.com"
},
"domainName": {
"message": "Domännamn",
"description": "Domain name. Ex. website.com"
},
"host": {
"message": "Värd",
"description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'."
},
"exact": {
"message": "Exakt"
},
"startsWith": {
"message": "Börjar med"
},
"regEx": {
"message": "Reguljärt uttryck",
"description": "A programming term, also known as 'RegEx'."
},
"matchDetection": {
"message": "Matchning",
"description": "URI match detection for auto-fill."
},
"defaultMatchDetection": {
"message": "Standardmatchning",
"description": "Default URI match detection for auto-fill."
},
"never": {
"message": "Aldrig"
},
"toggleVisibility": {
"message": "Växla synlighet"
},
"toggleCollapse": {
"message": "Växla synlig/dold",
"description": "Toggling an expand/collapse state."
},
"generatePassword": {
"message": "Skapa lösenord"
},
"checkPassword": {
"message": "Kontrollera om lösenordet har avslöjats."
},
"passwordExposed": {
"message": "Detta lösenord har avslöjats $VALUE$ gång(er) i dataintrång. Du bör ändra det.",
"placeholders": {
"value": {
"content": "$1",
"example": "2"
}
}
},
"passwordSafe": {
"message": "Detta lösenord hittades inte i några kända dataintrång. Det bör vara säkert att använda."
},
"save": {
"message": "Spara"
},
"cancel": {
"message": "Avbryt"
},
"canceled": {
"message": "Avbruten"
},
"close": {
"message": "Stäng"
},
"delete": {
"message": "Radera"
},
"favorite": {
"message": "Favorit"
},
"unfavorite": {
"message": "Ta bort favorit"
},
"edit": {
"message": "Redigera"
},
"searchCollection": {
"message": "Sök i samling"
},
"searchFolder": {
"message": "Sök i mapp"
},
"searchFavorites": {
"message": "Sök i favoriter"
},
"searchType": {
"message": "Sök efter typ",
"description": "Search item type"
},
"searchVault": {
"message": "Sök i valvet"
},
"allItems": {
"message": "Alla objekt"
},
"favorites": {
"message": "Favoriter"
},
"types": {
"message": "Typer"
},
"typeLogin": {
"message": "Inloggning"
},
"typeCard": {
"message": "Kort"
},
"typeIdentity": {
"message": "Identitet"
},
"typeSecureNote": {
"message": "Säker anteckning"
},
"typeLoginPlural": {
"message": "Inloggningar"
},
"typeCardPlural": {
"message": "Kort"
},
"typeIdentityPlural": {
"message": "Identiteter"
},
"typeSecureNotePlural": {
"message": "Säkra anteckningar"
},
"folders": {
"message": "Mappar"
},
"collections": {
"message": "Samlingar"
},
"firstName": {
"message": "Förnamn"
},
"middleName": {
"message": "Mellannamn"
},
"lastName": {
"message": "Efternamn"
},
"fullName": {
"message": "Fullständigt namn"
},
"address1": {
"message": "Adress 1"
},
"address2": {
"message": "Adress 2"
},
"address3": {
"message": "Adress 3"
},
"cityTown": {
"message": "Ort"
},
"stateProvince": {
"message": "Län"
},
"zipPostalCode": {
"message": "Postnummer"
},
"country": {
"message": "Land"
},
"shared": {
"message": "Delad"
},
"attachments": {
"message": "Bilagor"
},
"select": {
"message": "Välj"
},
"addItem": {
"message": "Lägg till objekt"
},
"editItem": {
"message": "Redigera objekt"
},
"viewItem": {
"message": "Visa objekt"
},
"ex": {
"message": "t.ex.",
"description": "Short abbreviation for 'example'."
},
"other": {
"message": "Annat"
},
"share": {
"message": "Dela"
},
"moveToOrganization": {
"message": "Flytta till organisation"
},
"valueCopied": {
"message": "$VALUE$ kopierades",
"description": "Value has been copied to the clipboard.",
"placeholders": {
"value": {
"content": "$1",
"example": "Password"
}
}
},
"copyValue": {
"message": "Kopiera värde",
"description": "Copy value to clipboard"
},
"copyPassword": {
"message": "Kopiera lösenord",
"description": "Copy password to clipboard"
},
"copyUsername": {
"message": "Kopiera användarnamn",
"description": "Copy username to clipboard"
},
"copyNumber": {
"message": "Kopiera nummer",
"description": "Copy credit card number"
},
"copySecurityCode": {
"message": "Kopiera säkerhetskod",
"description": "Copy credit card security code (CVV)"
},
"copyUri": {
"message": "Kopiera URI",
"description": "Copy URI to clipboard"
},
"myVault": {
"message": "Mitt valv"
},
"vault": {
"message": "Valv"
},
"moveSelectedToOrg": {
"message": "Flytta valda till organisation"
},
"deleteSelected": {
"message": "Radera markerade"
},
"moveSelected": {
"message": "Flytta markerade"
},
"selectAll": {
"message": "Markera alla"
},
"unselectAll": {
"message": "Avmarkera alla"
},
"launch": {
"message": "Öppna"
},
"newAttachment": {
"message": "Lägg till ny bilaga"
},
"deletedAttachment": {
"message": "Raderade bilaga"
},
"deleteAttachmentConfirmation": {
"message": "Är du säker på att du vill radera denna bilaga?"
},
"attachmentSaved": {
"message": "Bilagan har sparats."
},
"file": {
"message": "Fil"
},
"selectFile": {
"message": "Välj en fil."
},
"maxFileSize": {
"message": "Maximal filstorlek är 500 MB."
},
"updateKey": {
"message": "Du kan inte använda denna funktion förrän du uppdaterar din krypteringsnyckel."
},
"addedItem": {
"message": "Lade till objekt"
},
"editedItem": {
"message": "Redigerade objekt"
},
"movedItemToOrg": {
"message": "$ITEMNAME$ flyttades till $ORGNAME$",
"placeholders": {
"itemname": {
"content": "$1",
"example": "Secret Item"
},
"orgname": {
"content": "$2",
"example": "Company Name"
}
}
},
"movedItemsToOrg": {
"message": "De valda objekten flyttades till $ORGNAME$",
"placeholders": {
"orgname": {
"content": "$1",
"example": "Company Name"
}
}
},
"deleteItem": {
"message": "Radera objekt"
},
"deleteFolder": {
"message": "Radera mapp"
},
"deleteAttachment": {
"message": "Radera bilaga"
},
"deleteItemConfirmation": {
"message": "Är du säker på att du vill skicka detta objekt till papperskorgen?"
},
"deletedItem": {
"message": "Skickade objekt till papperskorgen"
},
"deletedItems": {
"message": "Skickade objekt till papperskorgen"
},
"movedItems": {
"message": "Flyttade objekt"
},
"overwritePasswordConfirmation": {
"message": "Är du säker på att du vill skriva över det nuvarande lösenordet?"
},
"editedFolder": {
"message": "Redigerade mapp"
},
"addedFolder": {
"message": "Lade till mapp"
},
"deleteFolderConfirmation": {
"message": "Är du säker på att du vill radera denna mapp?"
},
"deletedFolder": {
"message": "Raderade mapp"
},
"loggedOut": {
"message": "Utloggad"
},
"loginExpired": {
"message": "Din inloggningssession har löpt ut."
},
"logOutConfirmation": {
"message": "Är du säker på att du vill logga ut?"
},
"logOut": {
"message": "Logga ut"
},
"ok": {
"message": "OK"
},
"yes": {
"message": "Ja"
},
"no": {
"message": "Nej"
},
"loginOrCreateNewAccount": {
"message": "Logga in eller skapa ett nytt konto för att komma åt ditt valv."
},
"createAccount": {
"message": "Skapa konto"
},
"logIn": {
"message": "Logga in"
},
"submit": {
"message": "Skicka"
},
"emailAddressDesc": {
"message": "Din e-postadress används för att logga in."
},
"yourName": {
"message": "Ditt namn"
},
"yourNameDesc": {
"message": "Vad ska vi kalla dig?"
},
"masterPass": {
"message": "Huvudlösenord"
},
"masterPassDesc": {
"message": "Huvudlösenordet är det lösenord som du använder för att komma åt ditt valv. Det är väldigt viktigt att du inte glömmer bort ditt huvudlösenord, eftersom det inte går att återställa lösenordet ifall du skulle glömma bort det."
},
"masterPassHintDesc": {
"message": "En huvudlösenordsledtråd kan hjälpa dig att komma ihåg ditt lösenord om du glömmer bort det."
},
"reTypeMasterPass": {
"message": "Ange huvudlösenordet igen"
},
"masterPassHint": {
"message": "Huvudlösenordsledtråd (valfri)"
},
"masterPassHintLabel": {
"message": "Huvudlösenordsledtråd"
},
"settings": {
"message": "Inställningar"
},
"passwordHint": {
"message": "Lösenordsledtråd"
},
"enterEmailToGetHint": {
"message": "Ange din e-postadress för att få din huvudlösenordsledtråd skickad till dig."
},
"getMasterPasswordHint": {
"message": "Hämta huvudlösenordsledtråd"
},
"emailRequired": {
"message": "E-postadress krävs."
},
"invalidEmail": {
"message": "Ogiltig e-postadress."
},
"masterPassRequired": {
"message": "Huvudlösenord krävs."
},
"masterPassLength": {
"message": "Huvudlösenordet måste vara minst 8 tecken långt."
},
"masterPassDoesntMatch": {
"message": "Huvudlösenorden stämmer inte överens."
},
"newAccountCreated": {
"message": "Ditt nya konto har skapats! Du kan nu logga in."
},
"masterPassSent": {
"message": "Vi har skickat ett e-postmeddelande till dig med din huvudlösenordsledtråd."
},
"unexpectedError": {
"message": "Ett oväntat fel har inträffat."
},
"emailAddress": {
"message": "E-postadress"
},
"yourVaultIsLocked": {
"message": "Valvet är låst. Bekräfta ditt huvudlösenord för att fortsätta."
},
"unlock": {
"message": "Lås upp"
},
"loggedInAsEmailOn": {
"message": "Inloggad som $EMAIL$ på $HOSTNAME$.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
},
"hostname": {
"content": "$2",
"example": "bitwarden.com"
}
}
},
"invalidMasterPassword": {
"message": "Ogiltigt huvudlösenord"
},
"lockNow": {
"message": "Lås nu"
},
"noItemsInList": {
"message": "Det finns inga objekt att visa."
},
"noCollectionsInList": {
"message": "Det finns inga samlingar att visa."
},
"noGroupsInList": {
"message": "Det finns inga grupper att visa."
},
"noUsersInList": {
"message": "Det finns inga användare att visa."
},
"noEventsInList": {
"message": "Det finns inga händelser att visa."
},
"newOrganization": {
"message": "Ny organisation"
},
"noOrganizationsList": {
"message": "Du tillhör inte några organisationer. Organisationer möjliggör säker delning av objekt med andra användare."
},
"versionNumber": {
"message": "Version $VERSION_NUMBER$",
"placeholders": {
"version_number": {
"content": "$1",
"example": "1.2.3"
}
}
},
"enterVerificationCodeApp": {
"message": "Ange den 6-siffriga verifieringskoden från din autentiseringsapp."
},
"enterVerificationCodeEmail": {
"message": "Ange den 6-siffriga verifieringskoden som har skickats till $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"verificationCodeEmailSent": {
"message": "Verifieringsmeddelande har skickats till $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"rememberMe": {
"message": "Kom ihåg mig"
},
"sendVerificationCodeEmailAgain": {
"message": "Skicka e-postmeddelandet med verifieringskoden igen"
},
"useAnotherTwoStepMethod": {
"message": "Använd en annan metod för tvåstegsverifiering"
},
"insertYubiKey": {
"message": "Anslut din YubiKey till datorns USB-port och tryck sedan på dess knapp."
},
"insertU2f": {
"message": "Anslut din säkerhetsnyckel till datorns USB-port. Om den har en knapp, tryck på den."
},
"loginUnavailable": {
"message": "Inloggning ej tillgänglig"
},
"noTwoStepProviders": {
"message": "Detta konto har tvåstegsverifiering aktiverat, men ingen av de konfigurerade metoderna stöds av den här webbläsaren."
},
"noTwoStepProviders2": {
"message": "Vänligen använd en webbläsare som stöds (t.ex. Chrome) och/eller lägg till fler metoder som har bättre stöd bland webbläsare (t.ex. en autentiseringsapp)."
},
"twoStepOptions": {
"message": "Alternativ för tvåstegsverifiering"
},
"recoveryCodeDesc": {
"message": "Förlorat åtkomst till alla dina metoder för tvåstegsverifiering? Använd din återställningskod för att inaktivera tvåstegsverifiering på ditt konto."
},
"recoveryCodeTitle": {
"message": "Återställningskod"
},
"authenticatorAppTitle": {
"message": "Autentiseringsapp"
},
"authenticatorAppDesc": {
"message": "Använd en autentiseringsapp (t.ex. Authy eller Google Authenticator) för att skapa tidsbaserade verifieringskoder.",
"description": "'Authy' and 'Google Authenticator' are product names and should not be translated."
},
"yubiKeyTitle": {
"message": "YubiKey OTP-säkerhetsnyckel"
},
"yubiKeyDesc": {
"message": "Använd en YubiKey för att komma åt ditt konto. Fungerar med YubiKey 4-serien, 5-serien och NEO-enheter."
},
"duoDesc": {
"message": "Verifiera med Duo Security genom att använda Duo Mobile-appen, SMS, telefonsamtal eller en U2F-säkerhetsnyckel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
"message": "Verifiera med Duo Security för din organisation genom att använda Duo Mobile-appen, SMS, telefonsamtal eller en U2F-säkerhetsnyckel.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"u2fDesc": {
"message": "Använd en FIDO U2F-aktiverad säkerhetsnyckel för att komma åt ditt konto."
},
"u2fTitle": {
"message": "FIDO U2F-säkerhetsnyckel"
},
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
"webAuthnDesc": {
"message": "Använd en WebAuthn-aktiverad säkerhetsnyckel för att komma åt ditt konto."
},
"webAuthnMigrated": {
"message": "(Migrerad från FIDO)"
},
"emailTitle": {
"message": "E-post"
},
"emailDesc": {
"message": "Verifieringskoder kommer skickas till dig via e-post."
},
"continue": {
"message": "Fortsätt"
},
"organization": {
"message": "Organisation"
},
"organizations": {
"message": "Organisationer"
},
"moveToOrgDesc": {
"message": "Välj en organisation som du vill flytta detta objektet till. Flytt till en organisation överför ägandet av objektet till den organisationen. Du kommer inte längre att vara direkt ägare till detta objekt när det har flyttats."
},
"moveManyToOrgDesc": {
"message": "Välj en organisation som du vill flytta dessa objekt till. Flytt till en organisation överför ägandet av objekten till den organisationen. Du kommer inte längre att vara direkt ägare till dessa objekt när de har flyttats."
},
"collectionsDesc": {
"message": "Redigera de samlingar som detta objekt delas med. Endast organisationsanvändare med tillgång till dessa samlingar kommer att kunna se detta objekt."
},
"deleteSelectedItemsDesc": {
"message": "Du har markerat $COUNT$ objekt att radera. Är du säker på att du vill radera alla dessa objekt?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsDesc": {
"message": "Välj en mapp som du vill flytta de $COUNT$ markerade objekten till.",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsCountDesc": {
"message": "Du har valt $COUNT$ objekt. $MOVEABLE_COUNT$ objekt kan flyttas till en organisation, $NONMOVEABLE_COUNT$ kan det inte.",
"placeholders": {
"count": {
"content": "$1",
"example": "10"
},
"moveable_count": {
"content": "$2",
"example": "8"
},
"nonmoveable_count": {
"content": "$3",
"example": "2"
}
}
},
"verificationCodeTotp": {
"message": "Verifieringskod (TOTP)"
},
"copyVerificationCode": {
"message": "Kopiera verifieringskod"
},
"warning": {
"message": "Varning"
},
"confirmVaultExport": {
"message": "Bekräfta export av valv"
},
"exportWarningDesc": {
"message": "Denna export innehåller ditt valv i ett okrypterat format. Du bör inte lagra eller skicka den exporterade filen över osäkra kanaler (t.ex. e-post). Radera den omedelbart när du är färdig med den."
},
"encExportKeyWarningDesc": {
"message": "Denna export krypterar dina data med kontots krypteringsnyckel. Om du någonsin roterar kontots krypteringsnyckel bör du exportera igen eftersom du inte kommer att kunna dekryptera denna exportfil."
},
"encExportAccountWarningDesc": {
"message": "Kypteringsnycklar är unika för varje Bitwarden-konto, så du kan inte importera en krypterad export till ett annat konto."
},
"export": {
"message": "Exportera"
},
"exportVault": {
"message": "Exportera valv"
},
"fileFormat": {
"message": "Filformat"
},
"exportSuccess": {
"message": "Ditt valv har exporterats."
},
"passwordGenerator": {
"message": "Lösenordsgenerator"
},
"minComplexityScore": {
"message": "Minsta komplexitetspoäng"
},
"minNumbers": {
"message": "Minsta antal siffror"
},
"minSpecial": {
"message": "Minsta antal speciella tecken",
"description": "Minimum Special Characters"
},
"ambiguous": {
"message": "Undvik tvetydiga tecken"
},
"regeneratePassword": {
"message": "Skapa nytt lösenord"
},
"length": {
"message": "Längd"
},
"numWords": {
"message": "Antal ord"
},
"wordSeparator": {
"message": "Ordavgränsare"
},
"capitalize": {
"message": "Versalisera",
"description": "Make the first letter of a work uppercase."
},
"includeNumber": {
"message": "Inkludera siffra"
},
"passwordHistory": {
"message": "Lösenordshistorik"
},
"noPasswordsInList": {
"message": "Det finns inga lösenord att visa."
},
"clear": {
"message": "Rensa",
"description": "To clear something out. example: To clear browser history."
},
"accountUpdated": {
"message": "Kontot uppdaterades"
},
"changeEmail": {
"message": "Ändra e-postadress"
},
"changeEmailTwoFactorWarning": {
"message": "Fortsätter du så kommer din e-postadress att ändras för ditt konto. Det kommer inte att ändra e-postadressen som används för tvåfaktorsautentisering. Du kan ändra denna e-postadress i inställningarna för tvåstegsverifiering."
},
"newEmail": {
"message": "Ny e-postadress"
},
"code": {
"message": "Kod"
},
"changeEmailDesc": {
"message": "Vi har skickat ett e-postmeddelande med en verifieringskod till $EMAIL$. Vänligen kolla din inkorg och ange koden i e-postmeddelandet nedan för att slutföra ändringen av e-postadress.",
"placeholders": {
"email": {
"content": "$1",
"example": "john.smith@example.com"
}
}
},
"loggedOutWarning": {
"message": "Om du fortsätter kommer du loggas ut från sin nuvarande session vilket kräver att du loggar in igen. Aktiva sessioner på andra enheter kan fortsätta vara aktiva i upp till en timme."
},
"emailChanged": {
"message": "E-postadressen ändrades"
},
"logBackIn": {
"message": "Vänligen logga in igen."
},
"logBackInOthersToo": {
"message": "Vänligen logga in igen. Om du använder andra Bitwarden-applikationer, logga ut och in igen i dem också."
},
"changeMasterPassword": {
"message": "Ändra huvudlösenord"
},
"masterPasswordChanged": {
"message": "Huvudlösenordet ändrades"
},
"currentMasterPass": {
"message": "Nuvarande huvudlösenord"
},
"newMasterPass": {
"message": "Nytt huvudlösenord"
},
"confirmNewMasterPass": {
"message": "Bekräfta nytt huvudlösenord"
},
"encKeySettings": {
"message": "Inställningar för krypteringsnyckel"
},
"kdfAlgorithm": {
"message": "KDF-algoritm"
},
"kdfIterations": {
"message": "KDF-iterationer"
},
"kdfIterationsDesc": {
"message": "Högre KDF-iterationer kan skydda ditt huvudlösenord från att knäckas av en angripare via \"brute forcing\". Vi rekommenderar ett värde på $VALUE$ eller mer.",
"placeholders": {
"value": {
"content": "$1",
"example": "100,000"
}
}
},
"kdfIterationsWarning": {
"message": "Att ställa in dina KDF-iterationer för högt kan resultera i dålig prestanda när du loggar in (och låser upp) Bitwarden på enheter med långsammare processorer. Vi rekommenderar att du ökar värdet i steg om $INCREMENT$ och sedan testar alla dina enheter.",
"placeholders": {
"increment": {
"content": "$1",
"example": "50,000"
}
}
},
"changeKdf": {
"message": "Ändra KDF"
},
"encKeySettingsChanged": {
"message": "Inställningarna för krypteringsnyckel ändrades"
},
"dangerZone": {
"message": "Farozon"
},
"dangerZoneDesc": {
"message": "Var försiktig, dessa åtgärder går inte att ångra!"
},
"deauthorizeSessions": {
"message": "Avauktorisera sessioner"
},
"deauthorizeSessionsDesc": {
"message": "Orolig att ditt konto är inloggat på en annan enhet? Fortsätt nedan för att avauktorisera alla datorer eller enheter som du har använt tidigare. Detta rekommenderas om du har använt en offentlig dator eller av misstag sparat ditt lösenord på en enhet som inte är din. Detta steg kommer också att rensa alla tidigare ihågkomna sessioner med tvåstegsverifiering."
},
"deauthorizeSessionsWarning": {
"message": "Om du fortsätter kommer du loggas ut från sin nuvarande session vilket kräver att du loggar in igen. Du kommer även behöva verifiera med tvåstegsverifiering om det är aktiverat. Aktiva sessioner på andra enheter kan fortsätta vara aktiva i upp till en timme."
},
"sessionsDeauthorized": {
"message": "Alla sessioner avauktoriserades"
},
"purgeVault": {
"message": "Rensa valv"
},
"purgedOrganizationVault": {
"message": "Rensade organisationsvalv."
},
"vaultAccessedByProvider": {
"message": "Vault accessed by provider."
},
"purgeVaultDesc": {
"message": "Fortsätt nedan för att radera alla objekt och mappar i ditt valv. Objekt som tillhör en organisation som du delar med kommer inte raderas."
},
"purgeOrgVaultDesc": {
"message": "Fortsätt nedan för att radera alla objekt i organisationens valv."
},
"purgeVaultWarning": {
"message": "Rensning av ditt valv är permanent. Det går inte att ångra."
},
"vaultPurged": {
"message": "Ditt valv har rensats."
},
"deleteAccount": {
"message": "Radera konto"
},
"deleteAccountDesc": {
"message": "Fortsätt nedan för att radera ditt konto och all tillhörande data."
},
"deleteAccountWarning": {
"message": "Att radera ditt konto är permanent. Det går inte att ångra."
},
"accountDeleted": {
"message": "Kontot raderades"
},
"accountDeletedDesc": {
"message": "Ditt konto har stängts och all tillhörande data har raderats."
},
"myAccount": {
"message": "Mitt konto"
},
"tools": {
"message": "Verktyg"
},
"importData": {
"message": "Importera data"
},
"importError": {
"message": "Fel vid import"
},
"importErrorDesc": {
"message": "Det uppstod ett problem med datan du försökte importera. Lös nedanstående fel i källfilen och försök igen."
},
"importSuccess": {
"message": "Data har importerats till ditt valv."
},
"importWarning": {
"message": "Du importerar data till $ORGANIZATION$. Din data kan komma att delas med medlemmar i den här organisationen. Vill du fortsätta?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"importFormatError": {
"message": "Datan är inte korrekt formaterad. Vänligen kontrollera din importerade fil och försök igen."
},
"importNothingError": {
"message": "Ingenting importerades."
},
"importEncKeyError": {
"message": "Ett fel uppstod vid dekryptering av den exporterade filen. Din krypteringsnyckel matchar inte krypteringsnyckeln som användes för att exportera datan."
},
"selectFormat": {
"message": "Välj importfilens format"
},
"selectImportFile": {
"message": "Välj importfilen"
},
"orCopyPasteFileContents": {
"message": "eller kopiera och klistra in innehållet från filen"
},
"instructionsFor": {
"message": "Instruktioner för $NAME$",
"description": "The title for the import tool instructions.",
"placeholders": {
"name": {
"content": "$1",
"example": "LastPass (csv)"
}
}
},
"options": {
"message": "Alternativ"
},
"optionsDesc": {
"message": "Anpassa din upplevelse i webbvalvet."
},
"optionsUpdated": {
"message": "Alternativen uppdaterades"
},
"language": {
"message": "Språk"
},
"languageDesc": {
"message": "Ändra språket som används i webbvalvet."
},
"disableIcons": {
"message": "Inaktivera webbplatsikoner"
},
"disableIconsDesc": {
"message": "Webbplatsikoner ger en igenkännbar ikon bredvid varje inloggningsobjekt i ditt valv."
},
"enableGravatars": {
"message": "Aktivera gravatarer",
"description": "'Gravatar' is the name of a service. See www.gravatar.com"
},
"enableGravatarsDesc": {
"message": "Använd avatarbilder hämtade från gravatar.com."
},
"enableFullWidth": {
"message": "Aktivera layout med full bredd",
"description": "Allows scaling the web vault UI's width"
},
"enableFullWidthDesc": {
"message": "Tillåt webbvalvet att utökas till webbläsarfönstrets fulla bredd."
},
"default": {
"message": "Standard"
},
"domainRules": {
"message": "Domänregler"
},
"domainRulesDesc": {
"message": "Om du har samma inloggningsinformation på flera olika domäner kan du markera webbplatsen som \"motsvarande\". \"Globala\" domäner är de som redan skapats åt dig av Bitwarden."
},
"globalEqDomains": {
"message": "Globala motsvarande domäner"
},
"customEqDomains": {
"message": "Anpassade motsvarande domäner"
},
"exclude": {
"message": "Exkludera"
},
"include": {
"message": "Inkludera"
},
"customize": {
"message": "Anpassa"
},
"newCustomDomain": {
"message": "Ny anpassad domän"
},
"newCustomDomainDesc": {
"message": "Ange en lista av domäner separerade med kommatecken. Endast basdomäner är tillåtna. Ange inte underdomäner. Ange till exempel \"google.com\" istället för \"www.google.com\". Du kan också ange \"androidapp://package.name\" för att associera en Android-app med andra webbplatsdomäner."
},
"customDomainX": {
"message": "Anpassad domän $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"domainsUpdated": {
"message": "Domänerna uppdaterades"
},
"twoStepLogin": {
"message": "Tvåstegsverifiering"
},
"twoStepLoginDesc": {
"message": "Säkra ditt konto genom att kräva ett ytterligare steg vid inloggning."
},
"twoStepLoginOrganizationDesc": {
"message": "Kräv tvåstegsverifiering för din organisations användare genom att konfigurera metoder på organisationsnivå."
},
"twoStepLoginRecoveryWarning": {
"message": "Att aktivera tvåstegsverifiering kan låsa ute dig från ditt Bitwarden-konto permanent. En återställningskod låter dig komma åt ditt konto om du inte längre kan använda din vanliga metod för tvåstegsverifiering (t.ex. om du förlorar din enhet). Bitwardens kundservice kommer inte att kunna hjälpa dig om du förlorar åtkomst till ditt konto. Vi rekommenderar att du skriver ner eller skriver ut återställningskoden och förvarar den på ett säkert ställe."
},
"viewRecoveryCode": {
"message": "Visa återställningskod"
},
"providers": {
"message": "Metoder",
"description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc."
},
"enable": {
"message": "Aktivera"
},
"enabled": {
"message": "Aktiverad"
},
"premium": {
"message": "Premium",
"description": "Premium Membership"
},
"premiumMembership": {
"message": "Premium-medlemskap"
},
"premiumRequired": {
"message": "Premium krävs"
},
"premiumRequiredDesc": {
"message": "Ett premium-medlemskap krävs för att använda den här funktionen."
},
"youHavePremiumAccess": {
"message": "Du har premiumåtkomst"
},
"alreadyPremiumFromOrg": {
"message": "Du har redan tillgång till premium-funktioner på grund av en organisation som du är medlem i."
},
"manage": {
"message": "Hantera"
},
"disable": {
"message": "Inaktivera"
},
"twoStepLoginProviderEnabled": {
"message": "Denna metod för tvåstegsverifiering är aktiverad på ditt konto."
},
"twoStepLoginAuthDesc": {
"message": "Ange ditt huvudlösenord för att ändra inställningarna för tvåstegsverifiering."
},
"twoStepAuthenticatorDesc": {
"message": "Följ dessa steg för att konfigurera tvåstegsverifiering med en autentiseringsapp:"
},
"twoStepAuthenticatorDownloadApp": {
"message": "Hämta en tvåstegsverifieringsapp"
},
"twoStepAuthenticatorNeedApp": {
"message": "Behöver du en tvåstegsverifieringsapp? Hämta en av följande"
},
"iosDevices": {
"message": "iOS-enheter"
},
"androidDevices": {
"message": "Android-enheter"
},
"windowsDevices": {
"message": "Windows-enheter"
},
"twoStepAuthenticatorAppsRecommended": {
"message": "Dessa appar rekommenderas, men även andra autentiseringsappar fungerar."
},
"twoStepAuthenticatorScanCode": {
"message": "Skanna denna QR-kod med din autentiseringsapp"
},
"key": {
"message": "Nyckel"
},
"twoStepAuthenticatorEnterCode": {
"message": "Ange den 6-siffriga verifieringskoden från appen"
},
"twoStepAuthenticatorReaddDesc": {
"message": "Om du behöver lägga till den på en annan enhet, finns QR-koden (eller nyckeln) som krävs av din autentiseringsapp nedan."
},
"twoStepDisableDesc": {
"message": "Är du säker på att du vill inaktivera denna metod för tvåstegsverifiering?"
},
"twoStepDisabled": {
"message": "Metod för tvåstegsverifiering inaktiverad."
},
"twoFactorYubikeyAdd": {
"message": "Lägg till en ny YubiKey till ditt konto"
},
"twoFactorYubikeyPlugIn": {
"message": "Anslut din YubiKey till datorns USB-port."
},
"twoFactorYubikeySelectKey": {
"message": "Välj det första tomma YubiKey-inmatningsfältet nedan."
},
"twoFactorYubikeyTouchButton": {
"message": "Tryck på YubiKey:ns knapp."
},
"twoFactorYubikeySaveForm": {
"message": "Spara formuläret."
},
"twoFactorYubikeyWarning": {
"message": "På grund av plattformsbegränsningar kan YubiKeys inte användas i alla Bitwarden-applikationer. Du bör aktivera en annan metod för tvåstegsverifiering så att du kan komma åt ditt konto när YubiKeys inte kan användas. Plattformar som stöds:"
},
"twoFactorYubikeySupportUsb": {
"message": "Webbvalvet, skrivbordsprogrammet, CLI:n och alla webbläsartillägg på en enhet med en USB-port som kan acceptera din YubiKey."
},
"twoFactorYubikeySupportMobile": {
"message": "Mobilappar på en enhet med NFC-stöd eller en USB-port som kan acceptera din YubiKey."
},
"yubikeyX": {
"message": "YubiKey $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"u2fkeyX": {
"message": "U2F-nyckel $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"webAuthnkeyX": {
"message": "WebAuthn-nyckel $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"nfcSupport": {
"message": "NFC-stöd"
},
"twoFactorYubikeySupportsNfc": {
"message": "En av mina nycklar stödjer NFC."
},
"twoFactorYubikeySupportsNfcDesc": {
"message": "Om en av dina YubiKeys stöder NFC (till exempel en YubiKey NEO), kommer du tillfrågas på på mobila enheter när NFC är tillgängligt."
},
"yubikeysUpdated": {
"message": "YubiKeys uppdaterades"
},
"disableAllKeys": {
"message": "Inaktivera alla nycklar"
},
"twoFactorDuoDesc": {
"message": "Ange Bitwardens applikationsinformation från din Duo Admin-panel."
},
"twoFactorDuoIntegrationKey": {
"message": "Integreringsnyckel"
},
"twoFactorDuoSecretKey": {
"message": "Hemlig nyckel"
},
"twoFactorDuoApiHostname": {
"message": "API-värdnamn"
},
"twoFactorEmailDesc": {
"message": "Följ dessa steg för att konfigurera tvåstegsverifiering med e-post:"
},
"twoFactorEmailEnterEmail": {
"message": "Ange den e-postadress som du vill ta emot verifieringskoder till"
},
"twoFactorEmailEnterCode": {
"message": "Ange den 6-siffriga verifieringskoden från e-postmeddelandet"
},
"sendEmail": {
"message": "Skicka e-postmeddelande"
},
"twoFactorU2fAdd": {
"message": "Lägg till en FIDO U2F-säkerhetsnyckel till ditt konto"
},
"removeU2fConfirmation": {
"message": "Är du säker på att du vill ta bort denna säkerhetsnyckel?"
},
"twoFactorWebAuthnAdd": {
"message": "Lägg till en WebAuthn säkerhetsnyckel till ditt konto"
},
"readKey": {
"message": "Läs nyckel"
},
"keyCompromised": {
"message": "Nyckeln har äventyrats."
},
"twoFactorU2fGiveName": {
"message": "Ge säkerhetsnyckeln ett namn för att kunna identifiera den."
},
"twoFactorU2fPlugInReadKey": {
"message": "Anslut säkerhetsnyckeln till din dators USB-port och klicka på knappen \"Läs nyckel\"."
},
"twoFactorU2fTouchButton": {
"message": "Om säkerhetsnyckeln har en knapp, tryck på den."
},
"twoFactorU2fSaveForm": {
"message": "Spara formuläret."
},
"twoFactorU2fWarning": {
"message": "På grund av plattformsbegränsningar kan FIDO U2F inte användas i alla Bitwarden-applikationer. Du bör aktivera en annan metod för tvåstegsverifiering så att du kan komma åt ditt konto när FIDO U2F inte kan användas. Plattformar som stöds:"
},
"twoFactorU2fSupportWeb": {
"message": "Webbvalvet och webbläsartillägg på en stationär eller bärbar dator med en U2F-aktiverad webbläsare (Chrome, Opera, Vivaldi eller Firefox med FIDO U2F aktiverat)."
},
"twoFactorU2fWaiting": {
"message": "Väntar på att du ska trycka på knappen på din säkerhetsnyckel"
},
"twoFactorU2fClickSave": {
"message": "Klicka på \"Spara\"-knappen nedan för att aktivera denna säkerhetsnyckel för tvåstegsverifiering."
},
"twoFactorU2fProblemReadingTryAgain": {
"message": "Det gick inte att läsa säkerhetsnyckeln. Försök igen."
},
"twoFactorWebAuthnWarning": {
"message": "På grund av plattformsbegränsningar kan WebAuthn inte användas i alla Bitwarden-applikationer. Du bör aktivera en annan metod för tvåstegsverifiering så att du kan komma åt ditt konto när WebAuthn inte kan användas. Plattformar som stöds:"
},
"twoFactorWebAuthnSupportWeb": {
"message": "Webbvalvet och webbläsartillägg på en stationär eller bärbar dator med en WebAuthn-aktiverad webbläsare (Chrome, Opera, Vivaldi eller Firefox med FIDO U2F aktiverat)."
},
"twoFactorRecoveryYourCode": {
"message": "Din återställningskod för tvåstegsverifiering"
},
"twoFactorRecoveryNoCode": {
"message": "Du har inte aktiverat några metoder för tvåstegsverifiering ännu. När du har aktiverat en metod för tvåstegsverifiering kan du återvända hit för att se din återställningskod."
},
"printCode": {
"message": "Skriv ut kod",
"description": "Print 2FA recovery code"
},
"reports": {
"message": "Rapporter"
},
"reportsDesc": {
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
},
"unsecuredWebsitesReport": {
"message": "Rapport om osäkra webbplatser"
},
"unsecuredWebsitesReportDesc": {
"message": "Att använda osäkra webbplatser med http://-protokollet kan vara farligt. Om webbplatsen stödjer det, bör du alltid ansluta med https://-protokollet så att anslutningen är krypterad."
},
"unsecuredWebsitesFound": {
"message": "Osäkra webbplatser hittades"
},
"unsecuredWebsitesFoundDesc": {
"message": "Vi hittade $COUNT$ objekt i ditt valv med osäkra URI:er. Om webbplatsen stödjer det bör du ändra deras URI-protokoll till https://.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noUnsecuredWebsites": {
"message": "Inga objekt i ditt valv har osäkra URI:er."
},
"inactive2faReport": {
"message": "Rapport om inaktiv 2FA"
},
"inactive2faReportDesc": {
"message": "Tvåstegsverifiering (2FA) är en viktig säkerhetsinställning som hjälper dig att säkra dina konton. Om en webbplats erbjuder det bör du alltid aktivera tvåstegsverifiering."
},
"inactive2faFound": {
"message": "Inloggningar utan 2FA hittades"
},
"inactive2faFoundDesc": {
"message": "Vi hittade $COUNT$ webbplats(er) i ditt valv som kanske inte har tvåstegsverifiering konfigurerat (enligt 2fa.directory). För att skydda dessa konton ytterligare bör du aktivera tvåstegsverifiering.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noInactive2fa": {
"message": "Inga webbplatser utan tvåstegsverifiering hittades i ditt valv."
},
"instructions": {
"message": "Instruktioner"
},
"exposedPasswordsReport": {
"message": "Rapport om avslöjade lösenord"
},
"exposedPasswordsReportDesc": {
"message": "Avslöjade lösenord är lösenord som har äventyrats i kända dataintrång som släppts offentligt eller sålts av hackare på \"dark web\"."
},
"exposedPasswordsFound": {
"message": "Avslöjade lösenord hittades"
},
"exposedPasswordsFoundDesc": {
"message": "Vi hittade $COUNT$ objekt i ditt valv med lösenord som har äventyrats i kända dataintrång. Du bör ändra dessa till att använda nya lösenord.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noExposedPasswords": {
"message": "Inga objekt i ditt valv har lösenord som har avslöjats i kända dataintrång."
},
"checkExposedPasswords": {
"message": "Kontrollera avslöjade lösenord"
},
"exposedXTimes": {
"message": "Avslöjad $COUNT$ gång(er)",
"placeholders": {
"count": {
"content": "$1",
"example": "52"
}
}
},
"weakPasswordsReport": {
"message": "Rapport om svaga lösenord"
},
"weakPasswordsReportDesc": {
"message": "Svaga lösenord kan enkelt gissas av hackare och automatiserade verktyg som används för att knäcka lösenord. Bitwardens lösenordsgenerator kan hjälpa dig att skapa starka lösenord."
},
"weakPasswordsFound": {
"message": "Svaga lösenord hittades"
},
"weakPasswordsFoundDesc": {
"message": "Vi hittade $COUNT$ objekt i ditt valv med lösenord som inte är starka. Du bör ändra dessa till att använda starkare lösenord.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noWeakPasswords": {
"message": "Inga objekt i ditt valv har svaga lösenord."
},
"reusedPasswordsReport": {
"message": "Rapport om återanvända lösenord"
},
"reusedPasswordsReportDesc": {
"message": "Om en tjänst som du använder äventyras, kan återanvändning av samma lösenord på andra ställen göra det möjligt för hackare att enkelt få åtkomst till fler av dina online-konton. Du bör använda ett unikt lösenord för varje konto eller tjänst."
},
"reusedPasswordsFound": {
"message": "Återanvända lösenord hittades"
},
"reusedPasswordsFoundDesc": {
"message": "Vi hittade $COUNT$ lösenord som återanvänds i ditt valv. Du bör ändra dessa till unika lösenord.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noReusedPasswords": {
"message": "Inga inloggningar i ditt valv har lösenord som återanvänds."
},
"reusedXTimes": {
"message": "Återanvänt $COUNT$ gånger",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"dataBreachReport": {
"message": "Rapport om dataintrång"
},
"breachDesc": {
"message": "Ett \"intrång\" är en incident där data olovligen har stulits från en webbplats av hackare och sedan släppts till allmänheten. Gå igenom och granska informationen som äventyrats (e-postadresser, lösenord, kreditkort osv.) och vidta lämpliga åtgärder, t.ex. att ändra lösenord."
},
"breachCheckUsernameEmail": {
"message": "Kontrollera alla användarnamn eller e-postadresser som du använder."
},
"checkBreaches": {
"message": "Kontrollera intrång"
},
"breachUsernameNotFound": {
"message": "$USERNAME$ hittades inte i några kända dataintrång.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
}
}
},
"goodNews": {
"message": "Goda nyheter",
"description": "ex. Good News, No Breached Accounts Found!"
},
"breachUsernameFound": {
"message": "$USERNAME$ hittades i $COUNT$ olika dataintrång på internet.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
},
"count": {
"content": "$2",
"example": "7"
}
}
},
"breachFound": {
"message": "Äventyrade konton hittades"
},
"compromisedData": {
"message": "Äventyrad data"
},
"website": {
"message": "Webbplats"
},
"affectedUsers": {
"message": "Berörda användare"
},
"breachOccurred": {
"message": "Intrånget inträffade"
},
"breachReported": {
"message": "Intrånget rapporterades"
},
"reportError": {
"message": "Ett fel inträffade när rapporten skulle läsas in. Försök igen"
},
"billing": {
"message": "Fakturering"
},
"accountCredit": {
"message": "Kontokredit",
"description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)."
},
"accountBalance": {
"message": "Kontosaldo",
"description": "Financial term. In the case of Bitwarden, a positive balance means that you owe money, while a negative balance means that you have a credit (Bitwarden owes you money)."
},
"addCredit": {
"message": "Lägg till kredit",
"description": "Add more credit to your account's balance."
},
"amount": {
"message": "Belopp",
"description": "Dollar amount, or quantity."
},
"creditDelayed": {
"message": "Tillagd kredit visas på ditt konto efter att betalningen har bearbetats fullständigt. Vissa betalningsmetoder är fördröjda och kan ta längre tid att behandla än andra."
},
"makeSureEnoughCredit": {
"message": "Se till att ditt konto har tillräckligt mycket tillgänglig kredit för detta köp. Om ditt konto inte har tillräckligt med tillgänglig kredit, kommer din sparade standardbetalningsmetod användas för skillnaden. Du kan lägga till kredit till ditt konto från faktureringssidan."
},
"creditAppliedDesc": {
"message": "Kontots kredit kan användas för att göra köp. Tillgänglig kredit kommer automatiskt tillämpas mot fakturor som genereras för detta konto."
},
"goPremium": {
"message": "Skaffa Premium",
"description": "Another way of saying \"Get a premium membership\""
},
"premiumUpdated": {
"message": "Du har uppgraderat till Premium."
},
"premiumUpgradeUnlockFeatures": {
"message": "Uppgradera ditt konto till ett premiummedlemskap för att låsa upp ytterligare funktioner."
},
"premiumSignUpStorage": {
"message": "1 GB krypterad lagring."
},
"premiumSignUpTwoStep": {
"message": "Ytterligare alternativ för tvåstegsverifiering såsom YubiKey, FIDO U2F och Duo."
},
"premiumSignUpEmergency": {
"message": "Nödåtkomst"
},
"premiumSignUpReports": {
"message": "Lösenordshygien, kontohälsa och dataintrångsrapporter för att skydda ditt valv."
},
"premiumSignUpTotp": {
"message": "TOTP-verifieringskodgenerator (2FA) för inloggningar i ditt valv."
},
"premiumSignUpSupport": {
"message": "Prioriterad kundservice."
},
"premiumSignUpFuture": {
"message": "Alla framtida premium-funktioner. Mer kommer snart!"
},
"premiumPrice": {
"message": "Allt för endast $PRICE$/år!",
"placeholders": {
"price": {
"content": "$1",
"example": "$10"
}
}
},
"addons": {
"message": "Tillägg"
},
"premiumAccess": {
"message": "Premium-åtkomst"
},
"premiumAccessDesc": {
"message": "Du kan lägga till premium-åtkomst till alla medlemmar i din organisation för $PRICE$ /$INTERVAL$.",
"placeholders": {
"price": {
"content": "$1",
"example": "$3.33"
},
"interval": {
"content": "$2",
"example": "'month' or 'year'"
}
}
},
"additionalStorageGb": {
"message": "Ytterligare lagring (GB)"
},
"additionalStorageGbDesc": {
"message": "Antal ytterligare GB"
},
"additionalStorageIntervalDesc": {
"message": "Ditt abonnemang kommer med $SIZE$ krypterad lagring. Du kan lägga till ytterligare lagring för $PRICE$ per GB/$INTERVAL$.",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
},
"price": {
"content": "$2",
"example": "$4.00"
},
"interval": {
"content": "$3",
"example": "'month' or 'year'"
}
}
},
"summary": {
"message": "Sammanfattning"
},
"total": {
"message": "Totalt"
},
"year": {
"message": "år"
},
"month": {
"message": "månad"
},
"monthAbbr": {
"message": "mån.",
"description": "Short abbreviation for 'month'"
},
"paymentChargedAnnually": {
"message": "Din betalningsmetod kommer att debiteras omedelbart och sedan återkommande varje år. Du kan säga upp din prenumeration när som helst."
},
"paymentCharged": {
"message": "Din betalningsmetod kommer debiteras omedelbart och sedan på en återkommande basis varje $INTERVAL$. Du kan avsluta när som helst.",
"placeholders": {
"interval": {
"content": "$1",
"example": "month or year"
}
}
},
"paymentChargedWithTrial": {
"message": "Din plan kommer med en kostnadsfri 7-dagars provperiod. Din betalningsmetod kommer inte att debiteras förrän provperioden har upphört. Du kan avbryta när som helst."
},
"paymentInformation": {
"message": "Betalningsinformation"
},
"billingInformation": {
"message": "Faktureringsuppgifter"
},
"creditCard": {
"message": "Kreditkort"
},
"paypalClickSubmit": {
"message": "Klicka på PayPal-knappen för att logga in på ditt PayPal-konto, tryck sedan på \"Skicka\"-knappen nedan för att fortsätta."
},
"cancelSubscription": {
"message": "Avbryt prenumeration"
},
"subscriptionCanceled": {
"message": "Abonnemanget har avslutats."
},
"pendingCancellation": {
"message": "Väntar på att avslutas"
},
"subscriptionPendingCanceled": {
"message": "Abonnemanget har markerats för avslutning vid slutet av den nuvarande faktureringsperioden."
},
"reinstateSubscription": {
"message": "Återuppta abonnemang"
},
"reinstateConfirmation": {
"message": "Är du säker att du vill ta bort den väntande avslutningsförfrågan och återuppta ditt abonnemang?"
},
"reinstated": {
"message": "Abonnemanget har återupptagits."
},
"cancelConfirmation": {
"message": "Är du säker på att du vill avsluta? Du kommer förlora tillgång till alla funktioner som abonnemanget erbjuder vid slutet av den nuvarande faktureringsperioden."
},
"canceledSubscription": {
"message": "Abonnemanget har avslutats."
},
"neverExpires": {
"message": "Går aldrig ut"
},
"status": {
"message": "Status"
},
"nextCharge": {
"message": "Nästa debitering"
},
"details": {
"message": "Detaljer"
},
"downloadLicense": {
"message": "Hämta licens"
},
"updateLicense": {
"message": "Uppdatera licens"
},
"updatedLicense": {
"message": "Uppdaterade licens"
},
"manageSubscription": {
"message": "Hantera prenumeration"
},
"storage": {
"message": "Lagring"
},
"addStorage": {
"message": "Lägg till lagring"
},
"removeStorage": {
"message": "Ta bort lagring"
},
"subscriptionStorage": {
"message": "Ditt abonnemang har totalt $MAX_STORAGE$ GB krypterad lagring. Du använder för närvarande $USED_STORAGE$.",
"placeholders": {
"max_storage": {
"content": "$1",
"example": "4"
},
"used_storage": {
"content": "$2",
"example": "65 MB"
}
}
},
"paymentMethod": {
"message": "Betalningsmetod"
},
"noPaymentMethod": {
"message": "Ingen sparad betalningsmetod."
},
"addPaymentMethod": {
"message": "Lägg till betalningsmetod"
},
"changePaymentMethod": {
"message": "Ändra betalningsmetod"
},
"invoices": {
"message": "Fakturor"
},
"noInvoices": {
"message": "Inga fakturor."
},
"paid": {
"message": "Betald",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"unpaid": {
"message": "Obetald",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"transactions": {
"message": "Transaktioner",
"description": "Payment/credit transactions."
},
"noTransactions": {
"message": "Inga transaktioner."
},
"chargeNoun": {
"message": "Debitering",
"description": "Noun. A charge from a payment method."
},
"refundNoun": {
"message": "Återbetalning",
"description": "Noun. A refunded payment that was charged."
},
"chargesStatement": {
"message": "Debiteringar kommer visas som $STATEMENT_NAME$ på ditt kontoutdrag.",
"placeholders": {
"statement_name": {
"content": "$1",
"example": "BITWARDEN"
}
}
},
"gbStorageAdd": {
"message": "GB lagring att lägga till"
},
"gbStorageRemove": {
"message": "GB lagring att ta bort"
},
"storageAddNote": {
"message": "Att lägga till lagringsutrymme kommer att resultera i justeringar av ditt totala debiteringsbelopp och omedelbart debitera din betalningsmetod. Den första debiteringen kommer att fördelas proportionellt för den återstående delen av den nuvarande faktureringscykeln."
},
"storageRemoveNote": {
"message": "Att ta bort lagringsutrymme kommer resultera i justeringar av ditt totala debiteringsbelopp som kommer läggas till som kredit mot din nästa debitering."
},
"adjustedStorage": {
"message": "Justerade $AMOUNT$ GB lagringsutrymme.",
"placeholders": {
"amount": {
"content": "$1",
"example": "5"
}
}
},
"contactSupport": {
"message": "Kontakta kundservice"
},
"updatedPaymentMethod": {
"message": "Betalningsmetod uppdaterades."
},
"purchasePremium": {
"message": "Köp Premium"
},
"licenseFile": {
"message": "Licensfil"
},
"licenseFileDesc": {
"message": "Din licensfil kommer namnges i stil med $FILE_NAME$",
"placeholders": {
"file_name": {
"content": "$1",
"example": "bitwarden_premium_license.json"
}
}
},
"uploadLicenseFilePremium": {
"message": "För att uppgradera ditt konto till ett premium-medlemskap måste du ladda upp en giltig licensfil."
},
"uploadLicenseFileOrg": {
"message": "För att skapa en \"on-premise\"-hostad organisation måste du ladda upp en giltig licensfil."
},
"accountEmailMustBeVerified": {
"message": "Ditt kontos e-postadress måste verifieras."
},
"newOrganizationDesc": {
"message": "Organisationer tillåter dig att dela objekt i ditt valv med andra samt hantera relaterade användare för en specifik entitet, t.ex en familj, ett litet team, eller ett stort företag."
},
"generalInformation": {
"message": "Allmän information"
},
"organizationName": {
"message": "Organisationsnamn"
},
"accountOwnedBusiness": {
"message": "Detta konto ägs av ett företag."
},
"billingEmail": {
"message": "E-postadress för fakturering"
},
"businessName": {
"message": "Företagsnamn"
},
"chooseYourPlan": {
"message": "Välj din plan"
},
"users": {
"message": "Användare"
},
"userSeats": {
"message": "Användarplatser"
},
"additionalUserSeats": {
"message": "Ytterligare användarplatser"
},
"userSeatsDesc": {
"message": "Antal användarplatser"
},
"userSeatsAdditionalDesc": {
"message": "Ditt abonnemang kommer med $BASE_SEATS$ användarplatser. Du kan lägga till ytterligare användare för $SEAT_PRICE$ per användare/månad.",
"placeholders": {
"base_seats": {
"content": "$1",
"example": "5"
},
"seat_price": {
"content": "$2",
"example": "$2.00"
}
}
},
"userSeatsHowManyDesc": {
"message": "Hur många användarplatser behöver du? Du kan även lägga till ytterligare platser senare om det behövs."
},
"planNameFree": {
"message": "Gratis",
"description": "Free as in 'free beer'."
},
"planDescFree": {
"message": "För testning eller enskilda användare att dela med $COUNT$ andra användare.",
"placeholders": {
"count": {
"content": "$1",
"example": "1"
}
}
},
"planNameFamilies": {
"message": "Familjer"
},
"planDescFamilies": {
"message": "För personligt bruk, att dela med familj & vänner."
},
"planNameTeams": {
"message": "Team"
},
"planDescTeams": {
"message": "För företag och andra organisationer med team."
},
"planNameEnterprise": {
"message": "Företag"
},
"planDescEnterprise": {
"message": "För företag och andra stora organisationer."
},
"freeForever": {
"message": "Gratis för alltid"
},
"includesXUsers": {
"message": "inkluderar $COUNT$ användare",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"additionalUsers": {
"message": "Ytterligare användare"
},
"costPerUser": {
"message": "$COST$ per användare",
"placeholders": {
"cost": {
"content": "$1",
"example": "$3"
}
}
},
"limitedUsers": {
"message": "Begränsad till $COUNT$ användare (inklusive dig)",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"limitedCollections": {
"message": "Begränsad till $COUNT$ samlingar",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"addShareLimitedUsers": {
"message": "Lägg till och dela med upp till $COUNT$ användare",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"addShareUnlimitedUsers": {
"message": "Lägg till och dela med ett obegränsat antal användare"
},
"createUnlimitedCollections": {
"message": "Skapa ett obegränsat antal samlingar"
},
"gbEncryptedFileStorage": {
"message": "$SIZE$ krypterad lagring",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
}
}
},
"onPremHostingOptional": {
"message": "\"On-premise\"-hosting (valfri)"
},
"usersGetPremium": {
"message": "Användare får tillgång till premium-funktioner"
},
"controlAccessWithGroups": {
"message": "Reglera användaråtkomst med grupper"
},
"syncUsersFromDirectory": {
"message": "Synkronisera användare och grupper från en katalog"
},
"trackAuditLogs": {
"message": "Spåra användaråtgärder med granskningsloggar"
},
"enforce2faDuo": {
"message": "Kräv 2FA med Duo"
},
"priorityCustomerSupport": {
"message": "Prioriterad kundservice"
},
"xDayFreeTrial": {
"message": "$COUNT$ dagars gratis provperiod, avbryt när som helst",
"placeholders": {
"count": {
"content": "$1",
"example": "7"
}
}
},
"monthly": {
"message": "Månadsvis"
},
"annually": {
"message": "Årligen"
},
"basePrice": {
"message": "Baspris"
},
"organizationCreated": {
"message": "Organisationen skapades"
},
"organizationReadyToGo": {
"message": "Din nya organisation är redo!"
},
"organizationUpgraded": {
"message": "Din organisation har uppgraderats."
},
"leave": {
"message": "Lämna"
},
"leaveOrganizationConfirmation": {
"message": "Är du säker på att du vill lämna denna organisation?"
},
"leftOrganization": {
"message": "Du har lämnat organisationen."
},
"defaultCollection": {
"message": "Standardsamling"
},
"getHelp": {
"message": "Få hjälp"
},
"getApps": {
"message": "Hämta apparna"
},
"loggedInAs": {
"message": "Inloggad som"
},
"eventLogs": {
"message": "Händelselogg"
},
"people": {
"message": "Personer"
},
"policies": {
"message": "Policyer"
},
"singleSignOn": {
"message": "Single Sign-On"
},
"editPolicy": {
"message": "Redigera policy"
},
"groups": {
"message": "Grupper"
},
"newGroup": {
"message": "Ny grupp"
},
"addGroup": {
"message": "Lägg till grupp"
},
"editGroup": {
"message": "Redigera grupp"
},
"deleteGroupConfirmation": {
"message": "Är du säker på att du vill radera denna grupp?"
},
"removeUserConfirmation": {
"message": "Är du säker på att du vill ta bort denna användare?"
},
"removeUserConfirmationKeyConnector": {
"message": "Warning! This user requires Key Connector to manage their encryption. Removing this user from your organization will permanently disable their account. This action cannot be undone. Do you want to proceed?"
},
"externalId": {
"message": "Externt ID"
},
"externalIdDesc": {
"message": "Det externa id:t kan användas som referens eller för att länka denna resurs till ett externt system såsom en användarkatalog."
},
"accessControl": {
"message": "Åtkomstkontroll"
},
"groupAccessAllItems": {
"message": "Denna grupp kan komma åt och ändra alla objekt."
},
"groupAccessSelectedCollections": {
"message": "Denna grupp kan endast komma åt de markerade samlingarna."
},
"readOnly": {
"message": "Skrivskyddad"
},
"newCollection": {
"message": "Ny samling"
},
"addCollection": {
"message": "Lägg till samling"
},
"editCollection": {
"message": "Redigera samling"
},
"deleteCollectionConfirmation": {
"message": "Är du säker på att du vill radera denna samling?"
},
"editUser": {
"message": "Redigera användare"
},
"inviteUser": {
"message": "Bjud in användare"
},
"inviteUserDesc": {
"message": "Bjud in en ny användare till din organisation genom att ange e-postadressen som tillhör deras Bitwarden-konto nedan. Om de inte redan har ett Bitwarden-konto kommer de uppmanas att skapa ett."
},
"inviteMultipleEmailDesc": {
"message": "Du kan bjuda in upp till $COUNT$ användare samtidigt med en kommaseparerad lista av e-postadresser.",
"placeholders": {
"count": {
"content": "$1",
"example": "20"
}
}
},
"userUsingTwoStep": {
"message": "Denna användare använder tvåstegsverifiering för att skydda sitt konto."
},
"userAccessAllItems": {
"message": "Denna användare kan komma åt och ändra alla objekt."
},
"userAccessSelectedCollections": {
"message": "Denna användare kan endast komma åt de markerade samlingarna."
},
"search": {
"message": "Sök"
},
"invited": {
"message": "Inbjuden"
},
"accepted": {
"message": "Accepterad"
},
"confirmed": {
"message": "Bekräftad"
},
"clientOwnerEmail": {
"message": "E-post för klientägare"
},
"owner": {
"message": "Ägare"
},
"ownerDesc": {
"message": "Användaren med den högsta åtkomsten som kan hantera alla aspekter av din organisation."
},
"clientOwnerDesc": {
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
},
"admin": {
"message": "Administratör"
},
"adminDesc": {
"message": "Administratörer kan komma åt och hantera alla objekt, samlingar och användare i din organisation."
},
"user": {
"message": "Användare"
},
"userDesc": {
"message": "En vanlig användare med tillgång till de samlingar i din organisation som den har tilldelats."
},
"manager": {
"message": "Hanterare"
},
"managerDesc": {
"message": "Hanterare kan komma åt och hantera de samlingar i din organisation som de har blivit tilldelade."
},
"all": {
"message": "Alla"
},
"refresh": {
"message": "Uppdatera"
},
"timestamp": {
"message": "Tidsstämpel"
},
"event": {
"message": "Händelse"
},
"unknown": {
"message": "Okänd"
},
"loadMore": {
"message": "Ladda mer"
},
"mobile": {
"message": "Mobil",
"description": "Mobile app"
},
"extension": {
"message": "Tillägg",
"description": "Browser extension/addon"
},
"desktop": {
"message": "Skrivbord",
"description": "Desktop app"
},
"webVault": {
"message": "Webbvalv"
},
"loggedIn": {
"message": "Loggade in."
},
"changedPassword": {
"message": "Ändrade kontolösenord."
},
"enabledUpdated2fa": {
"message": "Aktiverade/uppdaterade tvåstegsverifiering."
},
"disabled2fa": {
"message": "Inaktiverade tvåstegsverifiering."
},
"recovered2fa": {
"message": "Återställde kontot från tvåstegsverifiering."
},
"failedLogin": {
"message": "Inloggningsförsöket misslyckades med felaktigt lösenord."
},
"failedLogin2fa": {
"message": "Inloggningsförsöket misslyckades med felaktig tvåstegsverifiering."
},
"exportedVault": {
"message": "Exporterade valv."
},
"exportedOrganizationVault": {
"message": "Exporterade organisationsvalv."
},
"editedOrgSettings": {
"message": "Redigerade organisationsinställningar."
},
"createdItemId": {
"message": "Skapade objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedItemId": {
"message": "Redigerade objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedItemId": {
"message": "Skickade objektet $ID$ till papperskorgen.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"movedItemIdToOrg": {
"message": "Flyttade objektet $ID$ till en organisation.",
"placeholders": {
"id": {
"content": "$1",
"example": "'Google'"
}
}
},
"viewedItemId": {
"message": "Visade objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedPasswordItemId": {
"message": "Visade lösenord för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedHiddenFieldItemId": {
"message": "Visade dolt fält för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedSecurityCodeItemId": {
"message": "Visade säkerhetskod för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedPasswordItemId": {
"message": "Kopierade lösenord för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedHiddenFieldItemId": {
"message": "Kopierade dolt fält för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedSecurityCodeItemId": {
"message": "Kopierade säkerhetskod för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"autofilledItemId": {
"message": "Fyllde i objektet $ID$ automatiskt.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"createdCollectionId": {
"message": "Skapade samlingen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedCollectionId": {
"message": "Redigerade samlingen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"deletedCollectionId": {
"message": "Raderade samlingen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedPolicyId": {
"message": "Redigerade policyn $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"createdGroupId": {
"message": "Skapade gruppen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"editedGroupId": {
"message": "Redigerade gruppen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"deletedGroupId": {
"message": "Raderade gruppen $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"removedUserId": {
"message": "Tog bort användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdAttachmentForItem": {
"message": "Skapade bilaga för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedAttachmentForItem": {
"message": "Raderade bilaga för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedCollectionsForItem": {
"message": "Redigerade samlingar för objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"invitedUserId": {
"message": "Bjöd in användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmedUserId": {
"message": "Bekräftade användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedUserId": {
"message": "Redigerade användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedGroupsForUser": {
"message": "Redigerade grupper för användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"unlinkedSsoUser": {
"message": "Olänkad SSO för användare $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdOrganizationId": {
"message": "Skapade organisation $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"addedOrganizationId": {
"message": "Skapade organisation $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"removedOrganizationId": {
"message": "Tog bort organisation $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"accessedClientVault": {
"message": "Accessed $ID$ organization vault.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"device": {
"message": "Enhet"
},
"view": {
"message": "Visa"
},
"invalidDateRange": {
"message": "Ogiltigt datumintervall."
},
"errorOccurred": {
"message": "Ett fel har inträffat."
},
"userAccess": {
"message": "Användaråtkomst"
},
"userType": {
"message": "Användartyp"
},
"groupAccess": {
"message": "Gruppåtkomst"
},
"groupAccessUserDesc": {
"message": "Redigera vilka grupper den här användaren tillhör."
},
"invitedUsers": {
"message": "Bjöd in användare."
},
"resendInvitation": {
"message": "Skicka inbjudan igen"
},
"resendEmail": {
"message": "Skicka e-postmeddelande igen"
},
"hasBeenReinvited": {
"message": "$USER$ har bjudits in igen.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirm": {
"message": "Bekräfta"
},
"confirmUser": {
"message": "Bekräfta användare"
},
"hasBeenConfirmed": {
"message": "$USER$ har bekräftats.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmUsers": {
"message": "Bekräfta användare"
},
"usersNeedConfirmed": {
"message": "Du har användare som har accepterat sin inbjudan, men fortfarande måste bekräftas. Användarna har inte åtkomst till organisationen förrän de är bekräftade."
},
"startDate": {
"message": "Startdatum"
},
"endDate": {
"message": "Slutdatum"
},
"verifyEmail": {
"message": "Verifiera e-postadress"
},
"verifyEmailDesc": {
"message": "Verifiera din e-postadress för att få tillgång till alla funktioner."
},
"verifyEmailFirst": {
"message": "Ditt kontos e-postadress måste verifieras först."
},
"checkInboxForVerification": {
"message": "Kolla din inkorg för en verifieringslänk."
},
"emailVerified": {
"message": "Din e-postadress har verifierats."
},
"emailVerifiedFailed": {
"message": "Det gick inte att verifiera din e-postadress. Prova att skicka ett nytt verifieringsmeddelande."
},
"emailVerificationRequired": {
"message": "E-postverifiering krävs"
},
"emailVerificationRequiredDesc": {
"message": "Du måste verifiera din e-post för att använda den här funktionen."
},
"updateBrowser": {
"message": "Uppdatera webbläsaren"
},
"updateBrowserDesc": {
"message": "Du använder en webbläsare som inte stöds. Webbvalvet kanske inte fungerar som det ska."
},
"joinOrganization": {
"message": "Gå med i organisation"
},
"joinOrganizationDesc": {
"message": "Du har bjudits in att gå med i organisationen ovan. För att acceptera inbjudan måste du logga in eller skapa ett nytt Bitwarden-konto."
},
"inviteAccepted": {
"message": "Inbjudan accepterades"
},
"inviteAcceptedDesc": {
"message": "Du kan komma åt denna organisation när en administratör har bekräftat ditt medlemskap. Vi skickar ett e-postmeddelande till dig när det sker."
},
"inviteAcceptFailed": {
"message": "Det gick inte att acceptera inbjudan. Be en administratör för organisationen att skicka en ny inbjudan."
},
"inviteAcceptFailedShort": {
"message": "Det gick inte att acceptera inbjudan. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"rememberEmail": {
"message": "Kom ihåg e-postadress"
},
"recoverAccountTwoStepDesc": {
"message": "Om du inte kan komma åt ditt konto genom dina vanliga metoder för tvåstegsverifiering kan du använda din återställningskod för att inaktivera alla metoder för tvåstegsverifiering på ditt konto."
},
"recoverAccountTwoStep": {
"message": "Återställ kontots tvåstegsverifiering"
},
"twoStepRecoverDisabled": {
"message": "Tvåstegsverifiering har inaktiverats på ditt konto."
},
"learnMore": {
"message": "Läs mer"
},
"deleteRecoverDesc": {
"message": "Ange din e-postadress nedan för att återställa och radera ditt konto."
},
"deleteRecoverEmailSent": {
"message": "Om ditt konto finns så har vi skickat ett e-postmeddelande till dig med vidare instruktioner."
},
"deleteRecoverConfirmDesc": {
"message": "Du har begärt att radera ditt Bitwarden-konto. Klicka på knappen nedan för att bekräfta."
},
"myOrganization": {
"message": "Min organisation"
},
"deleteOrganization": {
"message": "Radera organisation"
},
"deletingOrganizationContentWarning": {
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"deletingOrganizationActiveUserAccountsWarning": {
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
},
"deletingOrganizationIsPermanentWarning": {
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"organizationDeleted": {
"message": "Organisationen raderades"
},
"organizationDeletedDesc": {
"message": "Organisationen och all tillhörande data har raderats."
},
"organizationUpdated": {
"message": "Organisationen uppdaterades"
},
"taxInformation": {
"message": "Skatteinformation"
},
"taxInformationDesc": {
"message": "För kunder i USA krävs postnummer för att uppfylla momskrav. För kunder i andra länder har du möjlighet att ange momsregistreringsnummer (VAT/GST) och/eller adress som ska synas på dina fakturor."
},
"billingPlan": {
"message": "Abonnemang",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlan": {
"message": "Uppgradera plan",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlanUpgrade": {
"message": "Uppgradera ditt konto till en annan plan genom att ange informationen nedan. Se till att du har en aktiv betalningsmetod på kontot.",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"invoiceNumber": {
"message": "Faktura #$NUMBER$",
"description": "ex. Invoice #79C66F0-0001",
"placeholders": {
"number": {
"content": "$1",
"example": "79C66F0-0001"
}
}
},
"viewInvoice": {
"message": "Visa faktura"
},
"downloadInvoice": {
"message": "Hämta faktura"
},
"verifyBankAccount": {
"message": "Verifiera bankkonto"
},
"verifyBankAccountDesc": {
"message": "Vi har gjort två mikro-insättningar på ditt bankkonto (det kan ta 1-2 arbetsdagar innan de syns). Ange beloppen för att verifiera bankkontot."
},
"verifyBankAccountInitialDesc": {
"message": "Betalning via bankkonto är endast tillgängligt för kunder i USA. Du måste också verifiera ditt bankkonto. Vi kommer göra två mikro-insättningar inom de närmaste 1-2 arbetsdagarna. Ange dessa belopp på organisationens faktureringssida för att verifiera bankkontot."
},
"verifyBankAccountFailureWarning": {
"message": "Om du inte verifierar bankkontot kommer det att resultera i en missad betalning och ditt abonnemang kommer inaktiveras."
},
"verifiedBankAccount": {
"message": "Bankkontot har verifierats."
},
"bankAccount": {
"message": "Bankkonto"
},
"amountX": {
"message": "Belopp $COUNT$",
"description": "Used in bank account verification of micro-deposits. Amount, as in a currency amount. Ex. Amount 1 is $2.00, Amount 2 is $1.50",
"placeholders": {
"count": {
"content": "$1",
"example": "1"
}
}
},
"routingNumber": {
"message": "Routningsnummer",
"description": "Bank account routing number"
},
"accountNumber": {
"message": "Kontonummer"
},
"accountHolderName": {
"message": "Kontoinnehavarens namn"
},
"bankAccountType": {
"message": "Kontotyp"
},
"bankAccountTypeCompany": {
"message": "Företag"
},
"bankAccountTypeIndividual": {
"message": "Individuell (personlig)"
},
"enterInstallationId": {
"message": "Ange ditt installations-id"
},
"limitSubscriptionDesc": {
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
},
"maxSeatLimit": {
"message": "Maximum Seat Limit (optional)",
"description": "Upper limit of seats to allow through autoscaling"
},
"maxSeatCost": {
"message": "Max potential seat cost"
},
"addSeats": {
"message": "Lägg till platser",
"description": "Seat = User Seat"
},
"removeSeats": {
"message": "Ta bort platser",
"description": "Seat = User Seat"
},
"subscriptionDesc": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
},
"subscriptionUserSeats": {
"message": "Ditt abonnemang tillåter totalt $COUNT$ användare.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"limitSubscription": {
"message": "Limit Subscription (Optional)"
},
"subscriptionSeats": {
"message": "Subscription Seats"
},
"subscriptionUpdated": {
"message": "Subscription updated"
},
"additionalOptions": {
"message": "Ytterligare alternativ"
},
"additionalOptionsDesc": {
"message": "For additional help in managing your subscription, please contact Customer Support."
},
"subscriptionUserSeatsUnlimitedAutoscale": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
},
"subscriptionUserSeatsLimitedAutoscale": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
"placeholders": {
"max": {
"content": "$1",
"example": "50"
}
}
},
"subscriptionFreePlan": {
"message": "Du kan inte bjuda in fler än $COUNT$ användare utan att uppgradera din plan.",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"subscriptionFamiliesPlan": {
"message": "You cannot invite more than $COUNT$ users without upgrading your plan. Please contact Customer Support to upgrade.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionSponsoredFamiliesPlan": {
"message": "Your subscription allows for a total of $COUNT$ users. Your plan is sponsored and billed to an external organization.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionMaxReached": {
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"seatsToAdd": {
"message": "Platser att lägga till"
},
"seatsToRemove": {
"message": "Platser att ta bort"
},
"seatsAddNote": {
"message": "Att lägga till användarplatser kommer att resultera i justeringar av ditt totala debiteringsbelopp och omedelbart debitera din betalningsmetod. Den första debiteringen kommer att fördelas proportionellt för den återstående delen av den nuvarande faktureringscykeln."
},
"seatsRemoveNote": {
"message": "Att ta bort användarplatser kommer resultera i justeringar av ditt totala debiteringsbelopp som kommer läggas till som kredit mot din nästa debitering."
},
"adjustedSeats": {
"message": "Justerade $AMOUNT$ användarplatser.",
"placeholders": {
"amount": {
"content": "$1",
"example": "15"
}
}
},
"keyUpdated": {
"message": "Nyckeln uppdaterades"
},
"updateKeyTitle": {
"message": "Uppdatera nyckel"
},
"updateEncryptionKey": {
"message": "Uppdatera krypteringsnyckel"
},
"updateEncryptionKeyShortDesc": {
"message": "Du använder för närvarande ett föråldrat krypteringssystem."
},
"updateEncryptionKeyDesc": {
"message": "Vi har övergått till större krypteringsnycklar som ger bättre säkerhet och tillgång till nyare funktioner. Att uppdatera din krypteringsnyckel är snabbt och smidigt. Skriv bara in ditt huvudlösenord nedan. Denna uppdatering kommer så småningom bli obligatorisk."
},
"updateEncryptionKeyWarning": {
"message": "Efter att ha uppdaterat din krypteringsnyckel, måste du logga ut och in igen i alla Bitwarden-program som du använder (t.ex. mobilappen och webbläsartillägget). Att inte logga ut och in igen (vilket hämtar din nya krypteringsnyckel) kan resultera i datakorruption. Vi kommer försöka logga ut dig automatiskt, men det kan vara fördröjt."
},
"updateEncryptionKeyExportWarning": {
"message": "Alla krypterade exporter som du har sparat kommer också bli ogiltiga."
},
"subscription": {
"message": "Prenumeration"
},
"loading": {
"message": "Laddar"
},
"upgrade": {
"message": "Uppgradera"
},
"upgradeOrganization": {
"message": "Uppgradera organisation"
},
"upgradeOrganizationDesc": {
"message": "Denna funktion är inte tillgänglig för gratisorganisationer. Byt till ett betalt abonnemang för att låsa upp fler funktioner."
},
"createOrganizationStep1": {
"message": "Skapa organisation: Steg 1"
},
"createOrganizationCreatePersonalAccount": {
"message": "Innan du skapar din organisation, måste du först skapa ett personligt gratiskonto."
},
"refunded": {
"message": "Återbetald"
},
"nothingSelected": {
"message": "Du har inte markerat något."
},
"acceptPolicies": {
"message": "Genom att markera denna ruta godkänner du följande:"
},
"acceptPoliciesError": {
"message": "Användarvillkoren och Integritetspolicyn har inte accepterats."
},
"termsOfService": {
"message": "Användarvillkor"
},
"privacyPolicy": {
"message": "Integritetspolicy"
},
"filters": {
"message": "Filter"
},
"vaultTimeout": {
"message": "Valvets tidsgräns"
},
"vaultTimeoutDesc": {
"message": "Välj när valvets tidsgräns överskrids och den valda åtgärden utförs."
},
"oneMinute": {
"message": "1 minut"
},
"fiveMinutes": {
"message": "5 minuter"
},
"fifteenMinutes": {
"message": "15 minuter"
},
"thirtyMinutes": {
"message": "30 minuter"
},
"oneHour": {
"message": "1 timme"
},
"fourHours": {
"message": "4 timmar"
},
"onRefresh": {
"message": "Vid omstart"
},
"dateUpdated": {
"message": "Uppdaterades",
"description": "ex. Date this item was updated"
},
"datePasswordUpdated": {
"message": "Lösenordet uppdaterades",
"description": "ex. Date this password was updated"
},
"organizationIsDisabled": {
"message": "Organisationen är inaktiverad."
},
"licenseIsExpired": {
"message": "License is expired."
},
"updatedUsers": {
"message": "Uppdaterade användare"
},
"selected": {
"message": "Markerade"
},
"ownership": {
"message": "Ägarskap"
},
"whoOwnsThisItem": {
"message": "Vem äger detta objekt?"
},
"strong": {
"message": "Stark",
"description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"good": {
"message": "Bra",
"description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weak": {
"message": "Svagt",
"description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"veryWeak": {
"message": "Mycket svagt",
"description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weakMasterPassword": {
"message": "Svagt huvudlösenord"
},
"weakMasterPasswordDesc": {
"message": "Huvudlösenordet du har valt är svagt. Du bör använda ett starkt huvudlösenord (eller en lösenordsfras) för att skydda ditt Bitwarden-konto ordentligt. Är du säker på att du vill använda detta huvudlösenord?"
},
"rotateAccountEncKey": {
"message": "Rotera även mitt kontos krypteringsnyckel"
},
"rotateEncKeyTitle": {
"message": "Rotera krypteringsnyckel"
},
"rotateEncKeyConfirmation": {
"message": "Är du säker på att du vill rotera ditt kontos krypteringsnyckel?"
},
"attachmentsNeedFix": {
"message": "Detta objekt har gamla bilagor som behöver åtgärdas."
},
"attachmentFixDesc": {
"message": "Detta är en gammal bilaga som behöver åtgärdas. Klicka för att läsa mer."
},
"fix": {
"message": "Åtgärda",
"description": "This is a verb. ex. 'Fix The Car'"
},
"oldAttachmentsNeedFixDesc": {
"message": "Det finns gamla bilagor i ditt valv som behöver åtgärdas innan du kan rotera ditt kontos krypteringsnyckel."
},
"yourAccountsFingerprint": {
"message": "Ditt kontos fingeravtrycksfras",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"fingerprintEnsureIntegrityVerify": {
"message": "För att säkerställa dina krypteringsnycklars integritet, vänligen verifiera användarens fingeravtrycksfras innan du fortsätter.",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"dontAskFingerprintAgain": {
"message": "Never prompt to verify fingerprint phrases for invited users (Not recommended)",
"description": "A 'fingerprint phrase' is a unique word phrase (similar to a passphrase) that a user can use to authenticate their public key with another user, for the purposes of sharing."
},
"free": {
"message": "Gratis",
"description": "Free, as in 'Free beer'"
},
"apiKey": {
"message": "API-nyckel"
},
"apiKeyDesc": {
"message": "Din API-nyckel kan användas för att autentisera mot Bitwardens publika API."
},
"apiKeyRotateDesc": {
"message": "Genom att rotera API-nyckeln ogiltigförklarar du den tidigare nyckeln. Du kan rotera din API-nyckel om du tror att din nuvarande nyckel inte längre är säker att använda."
},
"apiKeyWarning": {
"message": "Din API-nyckel har full tillgång till organisationen. Den bör hållas hemlig."
},
"userApiKeyDesc": {
"message": "Din API-nyckel kan användas för att autentisera i Bitwardens CLI."
},
"userApiKeyWarning": {
"message": "Din API-nyckel är en alternativ autentiseringsmekanism. Den bör hållas hemlig."
},
"oauth2ClientCredentials": {
"message": "OAuth 2.0 Klientautentiseringsuppgifter",
"description": "'OAuth 2.0' is a programming protocol. It should probably not be translated."
},
"viewApiKey": {
"message": "Visa API-nyckel"
},
"rotateApiKey": {
"message": "Rotera API-nyckel"
},
"selectOneCollection": {
"message": "Du måste markera minst en samling."
},
"couldNotChargeCardPayInvoice": {
"message": "Det gick inte att debitera ditt kort. Vänligen granska och betala den obetalda fakturan som visas nedan."
},
"inAppPurchase": {
"message": "Köp i appen"
},
"cannotPerformInAppPurchase": {
"message": "Du kan inte utföra denna åtgärd när du använder köp i appen som betalningsmetod."
},
"manageSubscriptionFromStore": {
"message": "Du måste hantera ditt abonnemang från butiken där ditt köp i appen gjordes."
},
"minLength": {
"message": "Minsta längd"
},
"clone": {
"message": "Klona"
},
"masterPassPolicyDesc": {
"message": "Ange minimikrav för huvudlösenordsstyrka."
},
"twoStepLoginPolicyDesc": {
"message": "Kräv att användare konfigurerar tvåstegsverifiering för sina personliga konton."
},
"twoStepLoginPolicyWarning": {
"message": "Medlemmar som inte har tvåstegsverifiering aktiverat för sina personliga konton kommer tas bort från organisationen och få ett e-postmeddelande om ändringen."
},
"twoStepLoginPolicyUserWarning": {
"message": "Du är medlem i en organisation som kräver att tvåstegsverifiering är aktiverat för ditt användarkonto. Om du inaktiverar alla metoder för tvåstegsverifiering kommer du automatiskt tas bort från dessa organisationer."
},
"passwordGeneratorPolicyDesc": {
"message": "Ange minimikrav för lösenordsgeneratorn."
},
"passwordGeneratorPolicyInEffect": {
"message": "En eller flera organisationspolicyer påverkar dina generatorinställningar."
},
"masterPasswordPolicyInEffect": {
"message": "En eller flera organisationspolicyer kräver att ditt huvudlösenord uppfyller följande krav:"
},
"policyInEffectMinComplexity": {
"message": "Minsta komplexitetspoäng på $SCORE$",
"placeholders": {
"score": {
"content": "$1",
"example": "4"
}
}
},
"policyInEffectMinLength": {
"message": "Minsta längd på $LENGTH$",
"placeholders": {
"length": {
"content": "$1",
"example": "14"
}
}
},
"policyInEffectUppercase": {
"message": "Innehålla en eller flera versaler"
},
"policyInEffectLowercase": {
"message": "Innehålla en eller flera gemener"
},
"policyInEffectNumbers": {
"message": "Innehålla en eller flera siffror"
},
"policyInEffectSpecial": {
"message": "Innehålla ett eller flera av följande specialtecken: $CHARS$",
"placeholders": {
"chars": {
"content": "$1",
"example": "!@#$%^&*"
}
}
},
"masterPasswordPolicyRequirementsNotMet": {
"message": "Ditt nya huvudlösenord uppfyller inte kraven i policyn."
},
"minimumNumberOfWords": {
"message": "Minsta antal ord"
},
"defaultType": {
"message": "Standardtyp"
},
"userPreference": {
"message": "Användarpreferens"
},
"vaultTimeoutAction": {
"message": "Åtgärd när valvets tidsgräns överskrids"
},
"vaultTimeoutActionLockDesc": {
"message": "Ett låst valv kräver att du anger ditt huvudlösenord för att komma åt det igen."
},
"vaultTimeoutActionLogOutDesc": {
"message": "Ett utloggat valv kräver att du autentiserar för att komma åt det igen."
},
"lock": {
"message": "Lås",
"description": "Verb form: to make secure or inaccesible by"
},
"trash": {
"message": "Papperskorg",
"description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted"
},
"searchTrash": {
"message": "Sök i papperskorgen"
},
"permanentlyDelete": {
"message": "Radera permanent"
},
"permanentlyDeleteSelected": {
"message": "Radera markerade permanent"
},
"permanentlyDeleteItem": {
"message": "Radera objekt permanent"
},
"permanentlyDeleteItemConfirmation": {
"message": "Är du säker på att du vill radera detta objekt permanent?"
},
"permanentlyDeletedItem": {
"message": "Raderade objekt permanent"
},
"permanentlyDeletedItems": {
"message": "Raderade objekt permanent"
},
"permanentlyDeleteSelectedItemsDesc": {
"message": "Du har markerat $COUNT$ objekt att radera permanent. Är du säker på att du vill radera alla dessa objekt permanent?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"permanentlyDeletedItemId": {
"message": "Raderade objektet $ID$ permanent.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"restore": {
"message": "Återställ"
},
"restoreSelected": {
"message": "Återställ markerade"
},
"restoreItem": {
"message": "Återställ objekt"
},
"restoredItem": {
"message": "Återställde objekt"
},
"restoredItems": {
"message": "Återställde objekt"
},
"restoreItemConfirmation": {
"message": "Är du säker på att du vill återställa detta objekt?"
},
"restoreItems": {
"message": "Återställ objekt"
},
"restoreSelectedItemsDesc": {
"message": "Du har markerat $COUNT$ objekt att återställa. Är du säker på att du vill återställa alla dessa objekt?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"restoredItemId": {
"message": "Återställde objektet $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"vaultTimeoutLogOutConfirmation": {
"message": "Genom att logga ut upphör all åtkomst till valvet och onlineautentisering krävs efter att tidsgränsen överskridits. Är du säker på att du vill använda denna inställning?"
},
"vaultTimeoutLogOutConfirmationTitle": {
"message": "Bekräftelse av åtgärd när valvets tidsgräns överskrids"
},
"hidePasswords": {
"message": "Dölj lösenord"
},
"countryPostalCodeRequiredDesc": {
"message": "Vi behöver denna information endast för att beräkna moms och finansiell rapportering."
},
"includeVAT": {
"message": "Inkludera momsinformation (valfri)"
},
"taxIdNumber": {
"message": "Momsregistreringsnummer (VAT/GST)"
},
"taxInfoUpdated": {
"message": "Momsinformationen uppdaterades."
},
"setMasterPassword": {
"message": "Ange huvudlösenord"
},
"ssoCompleteRegistration": {
"message": "För att slutföra inloggning med SSO, ange ett huvudlösenord för att komma åt och skydda ditt valv."
},
"identifier": {
"message": "Identifierare"
},
"organizationIdentifier": {
"message": "Organisationens Identifierare"
},
"ssoLogInWithOrgIdentifier": {
"message": "Logga in genom organisationens inloggningsportal. Ange organisationens identifierare för att börja."
},
"enterpriseSingleSignOn": {
"message": "Single Sign-On för företag"
},
"ssoHandOff": {
"message": "Du kan nu stänga denna flik och fortsätta i tillägget."
},
"includeAllTeamsFeatures": {
"message": "Alla funktioner för team, plus:"
},
"includeSsoAuthentication": {
"message": "SSO-autentisering via SAML2.0 och OpenID Connect"
},
"includeEnterprisePolicies": {
"message": "Företagets policyer"
},
"ssoValidationFailed": {
"message": "Validering med SSO misslyckades"
},
"ssoIdentifierRequired": {
"message": "Organisationens identifierare krävs."
},
"unlinkSso": {
"message": "Avlänka SSO"
},
"unlinkSsoConfirmation": {
"message": "Are you sure you want to unlink SSO for this organization?"
},
"linkSso": {
"message": "Länka SSO"
},
"singleOrg": {
"message": "En organisation"
},
"singleOrgDesc": {
"message": "Hindra användare från att gå med i några andra organisationer."
},
"singleOrgBlockCreateMessage": {
"message": "Din nuvarande organisation har en policy som hindrar dig från att gå med i fler än en organisation. Vänligen kontakta din organisations administratörer eller registrera ett annat Bitwarden-konto."
},
"singleOrgPolicyWarning": {
"message": "Medlemmar som inte är ägare eller administratörer och redan är med i en annan organisation kommer att tas bort från organisationen."
},
"requireSso": {
"message": "Autentisering med Single Sign-On"
},
"requireSsoPolicyDesc": {
"message": "Kräv att användare loggar in med Single Sign-On för företag."
},
"prerequisite": {
"message": "Förutsättning"
},
"requireSsoPolicyReq": {
"message": "Policyn \"En organisation\" måste vara aktiverad innan denna policy kan aktiveras."
},
"requireSsoPolicyReqError": {
"message": "Policyn \"En organisation\" är inte aktiverad."
},
"requireSsoExemption": {
"message": "Organisationens ägare och administratörer är undantagna från denna policy."
},
"sendTypeFile": {
"message": "Fil"
},
"sendTypeText": {
"message": "Text"
},
"createSend": {
"message": "Skapa ny Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editSend": {
"message": "Redigera Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createdSend": {
"message": "Created Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedSend": {
"message": "Edited Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletedSend": {
"message": "Deleted Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSend": {
"message": "Radera Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSendConfirmation": {
"message": "Är du säker på att du vill radera denna Send?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"whatTypeOfSend": {
"message": "Vilken typ av Send är detta?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletionDate": {
"message": "Raderingsdatum"
},
"deletionDateDesc": {
"message": "The Send will be permanently deleted on the specified date and time.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDate": {
"message": "Utgångsdatum"
},
"expirationDateDesc": {
"message": "If set, access to this Send will expire on the specified date and time.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"maxAccessCount": {
"message": "Maximalt antal åtkomster"
},
"maxAccessCountDesc": {
"message": "If set, users will no longer be able to access this Send once the maximum access count is reached.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"currentAccessCount": {
"message": "Nuvarande antal åtkomster"
},
"sendPasswordDesc": {
"message": "Optionally require a password for users to access this Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNotesDesc": {
"message": "Private notes about this Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disabled": {
"message": "Inaktiverad"
},
"sendLink": {
"message": "Send link",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"copySendLink": {
"message": "Copy Send Link",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"removePassword": {
"message": "Ta bort lösenord"
},
"removedPassword": {
"message": "Tog bort lösenord"
},
"removePasswordConfirmation": {
"message": "Är du säker på att du vill ta bort lösenordet?"
},
"hideEmail": {
"message": "Dölj min e-postadress för mottagare."
},
"disableThisSend": {
"message": "Disable this Send so that no one can access it.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"allSends": {
"message": "All Sends"
},
"maxAccessCountReached": {
"message": "Det maximala antalet åtkomster har uppnåtts",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
"pendingDeletion": {
"message": "Väntar på radering"
},
"expired": {
"message": "Utgången"
},
"searchSends": {
"message": "Search Sends",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPassword": {
"message": "This Send is protected with a password. Please type the password below to continue.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPasswordDontKnow": {
"message": "Don't know the password? Ask the Sender for the password needed to access this Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendHiddenByDefault": {
"message": "This send is hidden by default. You can toggle its visibility using the button below.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"downloadFile": {
"message": "Ladda ner fil"
},
"sendAccessUnavailable": {
"message": "The Send you are trying to access does not exist or is no longer available.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"missingSendFile": {
"message": "The file associated with this Send could not be found.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"noSendsInList": {
"message": "There are no Sends to list.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"emergencyAccess": {
"message": "Nödåtkomst"
},
"emergencyAccessDesc": {
"message": "Bevilja och hantera åtkomst för betrodda kontakter i nödsituationer. Betrodda kontakter kan begära att antingen visa eller ta över ditt konto vid en nödsituation. Besök vår hjälpsida för mer information och information om hur delning utan kännedom fungerar."
},
"emergencyAccessOwnerWarning": {
"message": "Du är ägare till en eller flera organisationer. Om du ger tillgång till en nödkontakt kommer de att kunna använda alla dina behörigheter som ägare efter ett övertagande."
},
"trustedEmergencyContacts": {
"message": "Betrodda nödkontakter"
},
"noTrustedContacts": {
"message": "Du har inte lagt till några nödkontakter än, bjud in en betrodd kontakt för att komma igång."
},
"addEmergencyContact": {
"message": "Lägg till nödkontakt"
},
"designatedEmergencyContacts": {
"message": "Utsedd till nödkontakt"
},
"noGrantedAccess": {
"message": "Du har inte utsetts till någon annans nödkontakt än."
},
"inviteEmergencyContact": {
"message": "Bjud in nödkontakt"
},
"editEmergencyContact": {
"message": "Redigera nödkontakt"
},
"inviteEmergencyContactDesc": {
"message": "Bjud in en nödkontakt genom att ange e-postadressen som tillhör deras Bitwarden-konto nedan. Om de inte redan har ett Bitwarden-konto kommer de uppmanas att skapa ett."
},
"emergencyAccessRecoveryInitiated": {
"message": "Nödåtkomst initierad"
},
"emergencyAccessRecoveryApproved": {
"message": "Nödåtkomst godkänd"
},
"viewDesc": {
"message": "Kan visa alla objekt i ditt valv."
},
"takeover": {
"message": "Ta över"
},
"takeoverDesc": {
"message": "Kan återställa ditt konto med ett nytt huvudlösenord."
},
"waitTime": {
"message": "Väntetid"
},
"waitTimeDesc": {
"message": "Tid som krävs innan åtkomst beviljas automatiskt."
},
"oneDay": {
"message": "1 dag"
},
"days": {
"message": "$DAYS$ dagar",
"placeholders": {
"days": {
"content": "$1",
"example": "1"
}
}
},
"invitedUser": {
"message": "Bjöd in användare."
},
"acceptEmergencyAccess": {
"message": "Du har blivit inbjuden att bli nödkontakt åt användaren ovan. För att acceptera inbjudan måste du logga in eller skapa ett nytt Bitwarden-konto."
},
"emergencyInviteAcceptFailed": {
"message": "Det gick inte att acceptera inbjudan. Be användaren att skicka en ny inbjudan."
},
"emergencyInviteAcceptFailedShort": {
"message": "Det gick inte att acceptera inbjudan. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"emergencyInviteAcceptedDesc": {
"message": "Du kan komma åt nödalternativen för den här användaren efter att din identitet har bekräftats. Vi skickar dig ett e-postmeddelande när det händer."
},
"requestAccess": {
"message": "Begär åtkomst"
},
"requestAccessConfirmation": {
"message": "Är du säker på att du vill begära nödåtkomst? Du kommer att få åtkomst efter $WAITTIME$ dag(ar) eller när användaren manuellt godkänner begäran.",
"placeholders": {
"waittime": {
"content": "$1",
"example": "1"
}
}
},
"requestSent": {
"message": "Nödåtkomst begärd för $USER$. Vi meddelar dig via e-post när det är möjligt att fortsätta.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"approve": {
"message": "Godkänn"
},
"reject": {
"message": "Neka"
},
"approveAccessConfirmation": {
"message": "Är du säker på att du vill godkänna nödåtkomst? Detta tillåter $USER$ att $ACTION$ ditt konto.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
},
"action": {
"content": "$2",
"example": "View"
}
}
},
"emergencyApproved": {
"message": "Nödåtkomst godkänd."
},
"emergencyRejected": {
"message": "Nödåtkomst nekad"
},
"passwordResetFor": {
"message": "Lösenordet för $USER$ återställdes. Du kan nu logga in med det nya lösenordet.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"personalOwnership": {
"message": "Personligt ägarskap"
},
"personalOwnershipPolicyDesc": {
"message": "Kräv att användare sparar objekt till en organisation genom att ta bort det personliga ägarskapsalternativet."
},
"personalOwnershipExemption": {
"message": "Organisationens ägare och administratörer är undantagna från denna policy."
},
"personalOwnershipSubmitError": {
"message": "På grund av en av företagets policyer är du begränsad från att spara objekt till ditt personliga valv. Ändra ägarskap till en organisation och välj från tillgängliga samlingar."
},
"disableSend": {
"message": "Inaktivera Send"
},
"disableSendPolicyDesc": {
"message": "Do not allow users to create or edit a Bitwarden Send. Deleting an existing Send is still allowed.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disableSendExemption": {
"message": "Användare som kan hantera organisationens policyer är berörs inte av den här policyn."
},
"sendDisabled": {
"message": "Send disabled",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDisabledWarning": {
"message": "Due to an enterprise policy, you are only able to delete an existing Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptions": {
"message": "Alternativ för Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyDesc": {
"message": "Ange alternativ för att skapa och redigera Sends.",
"description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsExemption": {
"message": "Organisationsanvändare som kan hantera organisationens policyer berörs inte av den här policyn."
},
"disableHideEmail": {
"message": "Tillåt inte användare att dölja sin e-postadress från mottagare när de skapar eller redigerar en Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyInEffect": {
"message": "Följande organisationspolicyer är aktiva just nu:"
},
"sendDisableHideEmailInEffect": {
"message": "Användare får inte dölja sin e-postadress för mottagare när de skapar eller redigerar en Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"modifiedPolicyId": {
"message": "Ändrade policyn $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"planPrice": {
"message": "Abonnemangets pris"
},
"estimatedTax": {
"message": "Uppskattad moms"
},
"custom": {
"message": "Anpassad"
},
"customDesc": {
"message": "Tillåter mer detaljerad kontroll av användarbehörigheter för avancerade konfigurationer."
},
"permissions": {
"message": "Behörigheter"
},
"accessEventLogs": {
"message": "Åtkomst till händelseloggar"
},
"accessImportExport": {
"message": "Åtkomst till import/export"
},
"accessReports": {
"message": "Åtkomst till rapporter"
},
"missingPermissions": {
"message": "Du har inte tillstånd att utföra den här åtgärden."
},
"manageAllCollections": {
"message": "Hantera alla samlingar"
},
"createNewCollections": {
"message": "Skapa ny samling"
},
"editAnyCollection": {
"message": "Ändra samling"
},
"deleteAnyCollection": {
"message": "Delete Any Collection"
},
"manageAssignedCollections": {
"message": "Hantera tilldelade samlingar"
},
"editAssignedCollections": {
"message": "Redigera tilldelade samlingar"
},
"deleteAssignedCollections": {
"message": "Delete Assigned Collections"
},
"manageGroups": {
"message": "Hantera grupper"
},
"managePolicies": {
"message": "Hantera policyer"
},
"manageSso": {
"message": "Hantera SSO"
},
"manageUsers": {
"message": "Hantera användare"
},
"manageResetPassword": {
"message": "Hantera lösenordsåterställning"
},
"disableRequiredError": {
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
"placeholders": {
"policyName": {
"content": "$1",
"example": "Single Sign-On Authentication"
}
}
},
"personalOwnershipPolicyInEffect": {
"message": "En organisationspolicy påverkar dina ägarskapsalternativ."
},
"personalOwnershipPolicyInEffectImports": {
"message": "An organization policy has disabled importing items into your personal vault."
},
"personalOwnershipCheckboxDesc": {
"message": "Inaktivera personligt ägarskap för organisationens användare"
},
"textHiddenByDefault": {
"message": "When accessing the Send, hide the text by default",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNameDesc": {
"message": "A friendly name to describe this Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTextDesc": {
"message": "Texten du vill skicka."
},
"sendFileDesc": {
"message": "Filen du vill skicka."
},
"copySendLinkOnSave": {
"message": "Copy the link to share this Send to my clipboard upon save."
},
"sendLinkLabel": {
"message": "Send link",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"send": {
"message": "Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineProductDesc": {
"message": "Bitwarden Send transmits sensitive, temporary information to others easily and securely.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineLearnMore": {
"message": "Läs mer om",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more about** Bitwarden Send or sign up to try it today.'"
},
"sendVaultCardProductDesc": {
"message": "Dela text eller filer direkt med vem som helst."
},
"sendVaultCardLearnMore": {
"message": "Läs mer",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read '**Learn more**, see how it works, or try it now. '"
},
"sendVaultCardSee": {
"message": "se",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, **see** how it works, or try it now.'"
},
"sendVaultCardHowItWorks": {
"message": "hur det fungerar",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see **how it works**, or try it now.'"
},
"sendVaultCardOr": {
"message": "eller",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, **or** try it now.'"
},
"sendVaultCardTryItNow": {
"message": "prova det nu",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more, see how it works, or **try it now**.'"
},
"sendAccessTaglineOr": {
"message": "eller",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send **or** sign up to try it today.'"
},
"sendAccessTaglineSignUp": {
"message": "registrera dig",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or **sign up** to try it today.'"
},
"sendAccessTaglineTryToday": {
"message": "att prova det idag.",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'"
},
"sendCreatorIdentifier": {
"message": "Bitwarden-användaren $USER_IDENTIFIER$ delade följande med dig",
"placeholders": {
"user_identifier": {
"content": "$1",
"example": "An email address"
}
}
},
"viewSendHiddenEmailWarning": {
"message": "Bitwarden-användaren som skapade denna Send har valt att dölja sin e-postadress. Du bör se till att du litar på källan till denna länk innan du använder eller hämtar innehållet.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDateIsInvalid": {
"message": "Det angivna utgångsdatumet är inte giltigt."
},
"deletionDateIsInvalid": {
"message": "Det angivna raderingsdatumet är inte giltigt."
},
"expirationDateAndTimeRequired": {
"message": "Ett utgångsdatum och tid krävs."
},
"deletionDateAndTimeRequired": {
"message": "Ett raderingsdatum och tid krävs."
},
"dateParsingError": {
"message": "Det gick inte att spara raderings- och utgångsdatum."
},
"webAuthnFallbackMsg": {
"message": "Klicka på knappen nedan för att verifiera din 2FA."
},
"webAuthnAuthenticate": {
"message": "Autentisera WebAuthn"
},
"webAuthnNotSupported": {
"message": "WebAuthn stöds inte i denna webbläsare."
},
"webAuthnSuccess": {
"message": "WebAuthn verified successfully! You may close this tab."
},
"hintEqualsPassword": {
"message": "Din lösenordsledtråd får inte vara samma som ditt lösenord."
},
"enrollPasswordReset": {
"message": "Delta i lösenordsåterställning"
},
"enrolledPasswordReset": {
"message": "Deltar i lösenordsåterställning"
},
"withdrawPasswordReset": {
"message": "Utträd från lösenordsåterställning"
},
"enrollPasswordResetSuccess": {
"message": "Deltagandet lyckades!"
},
"withdrawPasswordResetSuccess": {
"message": "Utträdet lyckades!"
},
"eventEnrollPasswordReset": {
"message": "Användare $ID$ anmälde sig till hjälp för återställning av lösenord.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventWithdrawPasswordReset": {
"message": "Användaren $ID$ drog sig tillbaka från hjälp med återställning av lösenord.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventAdminPasswordReset": {
"message": "Huvudlösenordet återställdes för användaren $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventResetSsoLink": {
"message": "Reset Sso link for user $ID$",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"firstSsoLogin": {
"message": "$ID$ logged in using Sso for the first time",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"resetPassword": {
"message": "Återställ lösenord"
},
"resetPasswordLoggedOutWarning": {
"message": "Om du fortsätter kommer $NAME$ loggas ut från sin nuvarande session vilket kräver att de loggar in igen. Aktiva sessioner på andra enheter kan fortsätta vara aktiva i upp till en timme.",
"placeholders": {
"name": {
"content": "$1",
"example": "John Smith"
}
}
},
"thisUser": {
"message": "denna användare"
},
"resetPasswordMasterPasswordPolicyInEffect": {
"message": "En eller flera organisationspolicyer kräver att huvudlösenordet uppfyller följande krav:"
},
"resetPasswordSuccess": {
"message": "Lösenordsåterställningen lyckades!"
},
"resetPasswordEnrollmentWarning": {
"message": "Deltagande tillåter organisationsadministratörer att ändra ditt huvudlösenord. Är du säker på att du vill delta?"
},
"resetPasswordPolicy": {
"message": "Återställning av huvudlösenord"
},
"resetPasswordPolicyDescription": {
"message": "Tillåt administratörer i organisationen att återställa organisationens användares huvudlösenord."
},
"resetPasswordPolicyWarning": {
"message": "Användare i organisationen måste själva delta eller delta automatiskt innan administratörer kan återställa deras huvudlösenord."
},
"resetPasswordPolicyAutoEnroll": {
"message": "Automatiskt deltagande"
},
"resetPasswordPolicyAutoEnrollDescription": {
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
},
"resetPasswordPolicyAutoEnrollWarning": {
"message": "Användare som redan är med i organisationen kommer inte att retroaktivt delta i lösenordsåterställning. De kommer behöva delta själva innan administratörer kan återställa sitt huvudlösenord."
},
"resetPasswordPolicyAutoEnrollCheckbox": {
"message": "Require new users to be enrolled automatically"
},
"resetPasswordAutoEnrollInviteWarning": {
"message": "Denna organisation har en företagspolicy som automatiskt registrerar dig för lösenordsåterställning. Deltagandet gör det möjligt för organisationsadministratörer att ändra ditt huvudlösenord."
},
"resetPasswordOrgKeysError": {
"message": "Svaret om organisationnycklar är null"
},
"resetPasswordDetailsError": {
"message": "Svaret om detaljer om lösenordsåterställning är null"
},
"trashCleanupWarning": {
"message": "Objekt som har legat i papperskorgen i mer än 30 dagar raderas automatiskt."
},
"trashCleanupWarningSelfHosted": {
"message": "Objekt som har legat i papperskorgen ett tag raderas automatiskt."
},
"passwordPrompt": {
"message": "Återupprepa huvudlösenord"
},
"passwordConfirmation": {
"message": "Bekräfta huvudlösenord"
},
"passwordConfirmationDesc": {
"message": "Denna åtgärd är skyddad. För att fortsätta, ange ditt huvudlösenord igen för att verifiera din identitet."
},
"reinviteSelected": {
"message": "Skicka inbjudningar igen"
},
"noSelectedUsersApplicable": {
"message": "Denna åtgärd är inte tillämplig på någon av de valda användarna."
},
"removeUsersWarning": {
"message": "Är du säker på att du vill ta bort följande användare? Processen kan ta några sekunder att slutföra och kan inte pausas eller avbrytas."
},
"theme": {
"message": "Tema"
},
"themeDesc": {
"message": "Choose a theme for your web vault."
},
"themeSystem": {
"message": "Använd systemtema"
},
"themeDark": {
"message": "Mörkt"
},
"themeLight": {
"message": "Ljust"
},
"confirmSelected": {
"message": "Bekräfta valda"
},
"bulkConfirmStatus": {
"message": "Status för massåtgärd"
},
"bulkConfirmMessage": {
"message": "Bekräftade."
},
"bulkReinviteMessage": {
"message": "Bjöd in igen."
},
"bulkRemovedMessage": {
"message": "Tog bort"
},
"bulkFilteredMessage": {
"message": "Exkluderad, inte tillämplig för denna åtgärd."
},
"fingerprint": {
"message": "Fingeravtryck"
},
"removeUsers": {
"message": "Ta bort användare"
},
"error": {
"message": "Fel"
},
"resetPasswordManageUsers": {
"message": "Hantera användare måste också aktiveras med rättigheten Hantera lösenordsåterställning"
},
"setupProvider": {
"message": "Provider Setup"
},
"setupProviderLoginDesc": {
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
},
"setupProviderDesc": {
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
},
"providerName": {
"message": "Provider Name"
},
"providerSetup": {
"message": "The provider has been set up."
},
"clients": {
"message": "Klienter"
},
"providerAdmin": {
"message": "Provider Admin"
},
"providerAdminDesc": {
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
},
"serviceUser": {
"message": "Service User"
},
"serviceUserDesc": {
"message": "Service users can access and manage all client organizations."
},
"providerInviteUserDesc": {
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
},
"joinProvider": {
"message": "Join Provider"
},
"joinProviderDesc": {
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
},
"providerInviteAcceptFailed": {
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
},
"providerInviteAcceptedDesc": {
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
},
"providerUsersNeedConfirmed": {
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
},
"provider": {
"message": "Provider"
},
"newClientOrganization": {
"message": "New Client Organization"
},
"newClientOrganizationDesc": {
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
},
"addExistingOrganization": {
"message": "Lägg till befintlig organisation"
},
"myProvider": {
"message": "My Provider"
},
"addOrganizationConfirmation": {
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
},
"provider": {
"content": "$2",
"example": "My Provider Name"
}
}
},
"organizationJoinedProvider": {
"message": "Organization was successfully added to the provider"
},
"accessingUsingProvider": {
"message": "Accessing organization using provider $PROVIDER$",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"providerIsDisabled": {
"message": "Provider is disabled."
},
"providerUpdated": {
"message": "Provider updated"
},
"yourProviderIs": {
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"detachedOrganization": {
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"detachOrganizationConfirmation": {
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
},
"add": {
"message": "Lägg till"
},
"updatedMasterPassword": {
"message": "Updated Master Password"
},
"updateMasterPassword": {
"message": "Update Master Password"
},
"updateMasterPasswordWarning": {
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
},
"masterPasswordInvalidWarning": {
"message": "Your Master Password does not meet the policy requirements of this organization. In order to join the organization, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
},
"maximumVaultTimeout": {
"message": "Vault Timeout"
},
"maximumVaultTimeoutDesc": {
"message": "Configure a maximum vault timeout for all users."
},
"maximumVaultTimeoutLabel": {
"message": "Maximum Vault Timeout"
},
"invalidMaximumVaultTimeout": {
"message": "Invalid Maximum Vault Timeout."
},
"hours": {
"message": "Timmar"
},
"minutes": {
"message": "Minuter"
},
"vaultTimeoutPolicyInEffect": {
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
"placeholders": {
"hours": {
"content": "$1",
"example": "5"
},
"minutes": {
"content": "$2",
"example": "5"
}
}
},
"customVaultTimeout": {
"message": "Custom Vault Timeout"
},
"vaultTimeoutToLarge": {
"message": "Your vault timeout exceeds the restriction set by your organization."
},
"disablePersonalVaultExport": {
"message": "Disable Personal Vault Export"
},
"disablePersonalVaultExportDesc": {
"message": "Prohibits users from exporting their private vault data."
},
"vaultExportDisabled": {
"message": "Vault Export Disabled"
},
"personalVaultExportPolicyInEffect": {
"message": "One or more organization policies prevents you from exporting your personal vault."
},
"selectType": {
"message": "Select SSO Type"
},
"type": {
"message": "Typ"
},
"openIdConnectConfig": {
"message": "OpenID Connect Configuration"
},
"samlSpConfig": {
"message": "SAML Service Provider Configuration"
},
"samlIdpConfig": {
"message": "SAML Identity Provider Configuration"
},
"callbackPath": {
"message": "Callback Path"
},
"signedOutCallbackPath": {
"message": "Signed Out Callback Path"
},
"authority": {
"message": "Authority"
},
"clientId": {
"message": "Client ID"
},
"clientSecret": {
"message": "Client Secret"
},
"metadataAddress": {
"message": "Metadata Address"
},
"oidcRedirectBehavior": {
"message": "OIDC Redirect Behavior"
},
"getClaimsFromUserInfoEndpoint": {
"message": "Get claims from user info endpoint"
},
"additionalScopes": {
"message": "Custom Scopes"
},
"additionalUserIdClaimTypes": {
"message": "Custom User ID Claim Types"
},
"additionalEmailClaimTypes": {
"message": "Email Claim Types"
},
"additionalNameClaimTypes": {
"message": "Custom Name Claim Types"
},
"acrValues": {
"message": "Requested Authentication Context Class Reference values"
},
"expectedReturnAcrValue": {
"message": "Expected \"acr\" Claim Value In Response"
},
"spEntityId": {
"message": "SP Entity ID"
},
"spMetadataUrl": {
"message": "SAML 2.0 Metadata URL"
},
"spAcsUrl": {
"message": "Assertion Consumer Service (ACS) URL"
},
"spNameIdFormat": {
"message": "Name ID Format"
},
"spOutboundSigningAlgorithm": {
"message": "Outbound Signing Algorithm"
},
"spSigningBehavior": {
"message": "Signing Behavior"
},
"spMinIncomingSigningAlgorithm": {
"message": "Minimum Incoming Signing Algorithm"
},
"spWantAssertionsSigned": {
"message": "Expect signed assertions"
},
"spValidateCertificates": {
"message": "Validate certificates"
},
"idpEntityId": {
"message": "Entity ID"
},
"idpBindingType": {
"message": "Binding Type"
},
"idpSingleSignOnServiceUrl": {
"message": "Single Sign On Service URL"
},
"idpSingleLogoutServiceUrl": {
"message": "Single Log Out Service URL"
},
"idpX509PublicCert": {
"message": "X509 Public Certificate"
},
"idpOutboundSigningAlgorithm": {
"message": "Outbound Signing Algorithm"
},
"idpAllowUnsolicitedAuthnResponse": {
"message": "Allow unsolicited authentication response"
},
"idpAllowOutboundLogoutRequests": {
"message": "Allow outbound logout requests"
},
"idpSignAuthenticationRequests": {
"message": "Sign authentication requests"
},
"ssoSettingsSaved": {
"message": "Single Sign-On configuration was saved."
},
"sponsoredFamilies": {
"message": "Free Bitwarden Families"
},
"sponsoredFamiliesEligible": {
"message": "You and your family are eligible for Free Bitwarden Families. Redeem with your personal email to keep your data secure even when you are not at work."
},
"sponsoredFamiliesEligibleCard": {
"message": "Redeem your Free Bitwarden for Families plan today to keep your data secure even when you are not at work."
},
"sponsoredFamiliesInclude": {
"message": "The Bitwarden for Families plan include"
},
"sponsoredFamiliesPremiumAccess": {
"message": "Premium access for up to 6 users"
},
"sponsoredFamiliesSharedCollections": {
"message": "Shared collections for Family secrets"
},
"badToken": {
"message": "The link is no longer valid. Please have the sponsor resend the offer."
},
"reclaimedFreePlan": {
"message": "Reclaimed free plan"
},
"redeem": {
"message": "Lös in"
},
"sponsoredFamiliesSelectOffer": {
"message": "Välj den organisation som du vill sponsra"
},
"familiesSponsoringOrgSelect": {
"message": "Which Free Families offer would you like to redeem?"
},
"sponsoredFamiliesEmail": {
"message": "Enter your personal email to redeem Bitwarden Families"
},
"sponsoredFamiliesLeaveCopy": {
"message": "If you leave or are removed from the sponsoring organization, your Families plan will expire at the end of the billing period."
},
"acceptBitwardenFamiliesHelp": {
"message": "Accept offer for an existing organization or create a new Families organization."
},
"setupSponsoredFamiliesLoginDesc": {
"message": "You've been offered a free Bitwarden Families Plan Organization. To continue, you need to log in to the account that received the offer."
},
"sponsoredFamiliesAcceptFailed": {
"message": "Unable to accept offer. Please resend the offer email from your enterprise account and try again."
},
"sponsoredFamiliesAcceptFailedShort": {
"message": "Unable to accept offer. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must have at least one existing Families Organization."
}
}
},
"sponsoredFamiliesOffer": {
"message": "Accept Free Bitwarden Families"
},
"sponsoredFamiliesOfferRedeemed": {
"message": "Free Bitwarden Families offer successfully redeemed"
},
"redeemed": {
"message": "Redeemed"
},
"redeemedAccount": {
"message": "Redeemed Account"
},
"revokeAccount": {
"message": "Återkalla konto $NAME$",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"resendEmailLabel": {
"message": "Resend Sponsorship email to $NAME$ sponsorship",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"freeFamiliesPlan": {
"message": "Free Families Plan"
},
"redeemNow": {
"message": "Lös in nu"
},
"recipient": {
"message": "Mottagare"
},
"removeSponsorship": {
"message": "Remove Sponsorship"
},
"removeSponsorshipConfirmation": {
"message": "After removing a sponsorship, you will be responsible for this subscription and related invoices. Are you sure you want to continue?"
},
"sponsorshipCreated": {
"message": "Sponsorship Created"
},
"revoke": {
"message": "Återkalla"
},
"emailSent": {
"message": "Email Sent"
},
"revokeSponsorshipConfirmation": {
"message": "After removing this account, the Families organization owner will be responsible for this subscription and related invoices. Are you sure you want to continue?"
},
"removeSponsorshipSuccess": {
"message": "Sponsorship Removed"
},
"ssoKeyConnectorUnavailable": {
"message": "Unable to reach the Key Connector, try again later."
},
"keyConnectorUrl": {
"message": "Key Connector URL"
},
"sendVerificationCode": {
"message": "Skicka en verifieringskod till din e-postadress"
},
"sendCode": {
"message": "Skicka kod"
},
"codeSent": {
"message": "Kod har skickats"
},
"verificationCode": {
"message": "Verifieringskod"
},
"confirmIdentity": {
"message": "Bekräfta din identitet för att fortsätta."
},
"verificationCodeRequired": {
"message": "Verification code is required."
},
"invalidVerificationCode": {
"message": "Ogiltig verifieringskod"
},
"convertOrganizationEncryptionDesc": {
"message": "$ORGANIZATION$ is using SSO with a self-hosted key server. A master password is no longer required to log in for members of this organization.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"leaveOrganization": {
"message": "Lämna organisation"
},
"removeMasterPassword": {
"message": "Remove Master Password"
},
"removedMasterPassword": {
"message": "Master password removed."
},
"allowSso": {
"message": "Allow SSO authentication"
},
"allowSsoDesc": {
"message": "Once set up, your configuration will be saved and members will be able to authenticate using their Identity Provider credentials."
},
"ssoPolicyHelpStart": {
"message": "Enable the",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpLink": {
"message": "SSO Authentication policy",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpEnd": {
"message": "to require all members to log in with SSO.",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Enable the SSO Authentication policy to require all members to log in with SSO.'"
},
"ssoPolicyHelpKeyConnector": {
"message": "SSO Authentication and Single Organization policies are required to set up Key Connector decryption."
},
"memberDecryptionOption": {
"message": "Member Decryption Options"
},
"memberDecryptionPassDesc": {
"message": "Once authenticated, members will decrypt vault data using their Master Passwords."
},
"keyConnector": {
"message": "Key Connector"
},
"memberDecryptionKeyConnectorDesc": {
"message": "Connect Login with SSO to your self-hosted decryption key server. Using this option, members won’t need to use their Master Passwords to decrypt vault data. Contact Bitwarden Support for set up assistance."
},
"keyConnectorPolicyRestriction": {
"message": "\"Login with SSO and Key Connector Decryption\" is enabled. This policy will only apply to Owners and Admins."
},
"enabledSso": {
"message": "Enabled SSO"
},
"disabledSso": {
"message": "Disabled SSO"
},
"enabledKeyConnector": {
"message": "Enabled Key Connector"
},
"disabledKeyConnector": {
"message": "Disabled Key Connector"
},
"keyConnectorWarning": {
"message": "Once members begin using Key Connector, your Organization cannot revert to Master Password decryption. Proceed only if you are comfortable deploying and managing a key server."
},
"migratedKeyConnector": {
"message": "Migrated to Key Connector"
},
"paymentSponsored": {
"message": "Please provide a payment method to associate with the organization. Don't worry, we won't charge you anything unless you select additional features or your sponsorship expires. "
},
"orgCreatedSponsorshipInvalid": {
"message": "The sponsorship offer has expired. You may delete the organization you created to avoid a charge at the end of your 7 day trial. Otherwise you may close this prompt to keep the organization and assume billing responsibility."
},
"newFamiliesOrganization": {
"message": "New Families Organization"
},
"acceptOffer": {
"message": "Accept Offer"
},
"sponsoringOrg": {
"message": "Sponsoring Organization"
},
"keyConnectorTest": {
"message": "Test"
},
"keyConnectorTestSuccess": {
"message": "Success! Key Connector reached."
},
"keyConnectorTestFail": {
"message": "Cannot reach Key Connector. Check URL."
},
"sponsorshipTokenHasExpired": {
"message": "The sponsorship offer has expired."
},
"freeWithSponsorship": {
"message": "FREE with sponsorship"
},
"formErrorSummaryPlural": {
"message": "$COUNT$ fields above need your attention.",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"formErrorSummarySingle": {
"message": "1 field above needs your attention."
},
"fieldRequiredError": {
"message": "$FIELDNAME$ is required.",
"placeholders": {
"fieldname": {
"content": "$1",
"example": "Full name"
}
}
},
"required": {
"message": "required"
},
"idpSingleSignOnServiceUrlRequired": {
"message": "Required if Entity ID is not a URL."
},
"openIdOptionalCustomizations": {
"message": "Optional Customizations"
},
"openIdAuthorityRequired": {
"message": "Required if Authority is not valid."
},
"separateMultipleWithComma": {
"message": "Separate multiple with a comma."
},
"sessionTimeout": {
"message": "Your session has timed out. Please go back and try logging in again."
},
"exportingPersonalVaultTitle": {
"message": "Exporting Personal Vault"
},
"exportingOrganizationVaultTitle": {
"message": "Exporting Organization Vault"
},
"exportingPersonalVaultDescription": {
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
}
}
},
"exportingOrganizationVaultDescription": {
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"backToReports": {
"message": "Tillbaka till Rapporter"
},
"generator": {
"message": "Generator"
},
"whatWouldYouLikeToGenerate": {
"message": "What would you like to generate?"
},
"passwordType": {
"message": "Password Type"
},
"regenerateUsername": {
"message": "Regenerate Username"
},
"generateUsername": {
"message": "Generate Username"
},
"usernameType": {
"message": "Username Type"
},
"plusAddressedEmail": {
"message": "Plus Addressed Email",
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
},
"plusAddressedEmailDesc": {
"message": "Use your email provider's sub-addressing capabilities."
},
"catchallEmail": {
"message": "Catch-all Email"
},
"catchallEmailDesc": {
"message": "Use your domain's configured catch-all inbox."
},
"random": {
"message": "Random"
},
"randomWord": {
"message": "Random Word"
},
"service": {
"message": "Service"
}
}
| bitwarden/web/src/locales/sv/messages.json/0 | {
"file_path": "bitwarden/web/src/locales/sv/messages.json",
"repo_id": "bitwarden",
"token_count": 59400
} | 162 |
.modal-content {
border: none;
border-radius: none;
@include themify($themes) {
background-color: themed("backgroundColor");
}
}
.modal-dialog {
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
width: $modal-md;
}
.modal-sm {
width: $modal-sm;
}
.modal-lg {
width: $modal-lg;
}
.modal-header {
@include themify($themes) {
background-color: themed("foregroundColor");
border-bottom: 1px solid themed("separator");
color: themed("textColor");
}
}
.modal-body {
@include themify($themes) {
background-color: themed("foregroundColor");
color: themed("textColor");
}
h3,
.section-header > * {
font-weight: normal;
text-transform: uppercase;
@include themify($themes) {
color: themed("textMuted");
}
}
}
.modal .list-group-flush {
:first-child {
border-top: none;
}
:last-child {
border-bottom: none;
}
}
.modal .list-group-flush-2fa {
div {
border-left: none;
border-right: none;
}
div:first-child {
border-top: none;
}
div:last-child {
border-bottom: none;
}
}
.modal-footer {
justify-content: flex-start;
@include themify($themes) {
background-color: themed("footerBackgroundColor");
border-top: 1px solid themed("separator");
}
}
.close {
@include themify($themes) {
color: themed("textColor");
}
}
#totpImage {
@include themify($themes) {
filter: themed("imgFilter");
}
}
.totp {
.totp-code {
@extend .text-monospace;
font-size: 1.2rem;
}
.totp-countdown {
display: block;
margin: 3px 3px 0 0;
user-select: none;
.totp-sec {
font-size: 0.85em;
line-height: 32px;
position: absolute;
text-align: center;
width: 32px;
}
svg {
height: 32px;
transform: rotate(-90deg);
width: 32px;
}
.totp-circle {
fill: none;
@include themify($themes) {
stroke: themed("primary");
}
&.inner {
stroke-dasharray: 78.6;
stroke-dashoffset: 0;
stroke-width: 3;
}
&.outer {
stroke-dasharray: 88;
stroke-dashoffset: 0;
stroke-width: 2;
}
}
}
> .align-items-center {
margin-bottom: -5px;
}
&.low {
.totp-sec,
.totp-code {
@include themify($themes) {
color: themed("danger");
}
}
.totp-circle {
@include themify($themes) {
stroke: themed("danger");
}
}
}
}
.cdk-drag-preview {
border-radius: $border-radius;
opacity: 0.8;
z-index: $zindex-tooltip !important;
@include themify($themes) {
background: themed("cdkDraggingBackground");
}
}
| bitwarden/web/src/scss/modals.scss/0 | {
"file_path": "bitwarden/web/src/scss/modals.scss",
"repo_id": "bitwarden",
"token_count": 1227
} | 163 |
import { StateMigrationService as BaseStateMigrationService } from "jslib-common/services/stateMigration.service";
import { Account } from "../models/account";
import { GlobalState } from "../models/globalState";
export class StateMigrationService extends BaseStateMigrationService<GlobalState, Account> {
protected async migrationStateFrom1To2(): Promise<void> {
await super.migrateStateFrom1To2();
const globals = (await this.get<GlobalState>("global")) ?? this.stateFactory.createGlobal(null);
globals.rememberEmail = (await this.get<boolean>("rememberEmail")) ?? globals.rememberEmail;
await this.set("global", globals);
}
}
| bitwarden/web/src/services/stateMigration.service.ts/0 | {
"file_path": "bitwarden/web/src/services/stateMigration.service.ts",
"repo_id": "bitwarden",
"token_count": 191
} | 164 |
package com.aitongyi.web.bean;
import java.util.Date;
/**
* Created by admin on 16/8/8.
*/
public class User {
private Integer id;
private String username;
private String password;
private boolean enabled;
private Date createDate;
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("User{");
sb.append("id=").append(id);
sb.append(", username='").append(username).append('\'');
sb.append(", password='").append(password).append('\'');
sb.append(", enabled=").append(enabled);
sb.append(", createDate=").append(createDate);
sb.append('}');
return sb.toString();
}
}
| chwshuang/web/bean/src/main/java/com/aitongyi/web/bean/User.java/0 | {
"file_path": "chwshuang/web/bean/src/main/java/com/aitongyi/web/bean/User.java",
"repo_id": "chwshuang",
"token_count": 572
} | 165 |
package web
import (
"fmt"
"testing"
)
func (c *Context) A(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "context-A")
}
func (c *Context) Z(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "context-Z")
}
func (c *AdminContext) B(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "admin-B")
}
func (c *APIContext) C(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "api-C")
}
func (c *TicketsContext) D(w ResponseWriter, r *Request) {
fmt.Fprintf(w, "tickets-D")
}
func (c *Context) mwNoNext(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "context-mw-NoNext ")
}
func (c *Context) mwAlpha(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "context-mw-Alpha ")
next(w, r)
}
func (c *Context) mwBeta(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "context-mw-Beta ")
next(w, r)
}
func (c *Context) mwGamma(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "context-mw-Gamma ")
next(w, r)
}
func (c *APIContext) mwDelta(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "api-mw-Delta ")
next(w, r)
}
func (c *AdminContext) mwEpsilon(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "admin-mw-Epsilon ")
next(w, r)
}
func (c *AdminContext) mwZeta(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "admin-mw-Zeta ")
next(w, r)
}
func (c *TicketsContext) mwEta(w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "tickets-mw-Eta ")
next(w, r)
}
func mwGenricInterface(ctx interface{}, w ResponseWriter, r *Request, next NextMiddlewareFunc) {
fmt.Fprintf(w, "context-mw-Interface ")
next(w, r)
}
func TestFlatNoMiddleware(t *testing.T) {
router := New(Context{})
router.Get("/action", (*Context).A)
router.Get("/action_z", (*Context).Z)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-A", 200)
rw, req = newTestRequest("GET", "/action_z")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-Z", 200)
}
func TestFlatOneMiddleware(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
router.Get("/action", (*Context).A)
router.Get("/action_z", (*Context).Z)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-A", 200)
rw, req = newTestRequest("GET", "/action_z")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-Z", 200)
}
func TestFlatTwoMiddleware(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
router.Middleware((*Context).mwBeta)
router.Get("/action", (*Context).A)
router.Get("/action_z", (*Context).Z)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-mw-Beta context-A", 200)
rw, req = newTestRequest("GET", "/action_z")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-mw-Beta context-Z", 200)
}
func TestDualTree(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
router.Get("/action", (*Context).A)
admin := router.Subrouter(AdminContext{}, "/admin")
admin.Middleware((*AdminContext).mwEpsilon)
admin.Get("/action", (*AdminContext).B)
api := router.Subrouter(APIContext{}, "/api")
api.Middleware((*APIContext).mwDelta)
api.Get("/action", (*APIContext).C)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-A", 200)
rw, req = newTestRequest("GET", "/admin/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha admin-mw-Epsilon admin-B", 200)
rw, req = newTestRequest("GET", "/api/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha api-mw-Delta api-C", 200)
}
func TestDualLeaningLeftTree(t *testing.T) {
router := New(Context{})
router.Get("/action", (*Context).A)
admin := router.Subrouter(AdminContext{}, "/admin")
admin.Get("/action", (*AdminContext).B)
api := router.Subrouter(APIContext{}, "/api")
api.Middleware((*APIContext).mwDelta)
api.Get("/action", (*APIContext).C)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-A", 200)
rw, req = newTestRequest("GET", "/admin/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "admin-B", 200)
rw, req = newTestRequest("GET", "/api/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "api-mw-Delta api-C", 200)
}
func TestTicketsA(t *testing.T) {
router := New(Context{})
admin := router.Subrouter(AdminContext{}, "/admin")
admin.Middleware((*AdminContext).mwEpsilon)
tickets := admin.Subrouter(TicketsContext{}, "/tickets")
tickets.Get("/action", (*TicketsContext).D)
rw, req := newTestRequest("GET", "/admin/tickets/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "admin-mw-Epsilon tickets-D", 200)
}
func TestTicketsB(t *testing.T) {
router := New(Context{})
admin := router.Subrouter(AdminContext{}, "/admin")
tickets := admin.Subrouter(TicketsContext{}, "/tickets")
tickets.Middleware((*TicketsContext).mwEta)
tickets.Get("/action", (*TicketsContext).D)
rw, req := newTestRequest("GET", "/admin/tickets/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "tickets-mw-Eta tickets-D", 200)
}
func TestTicketsC(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
admin := router.Subrouter(AdminContext{}, "/admin")
tickets := admin.Subrouter(TicketsContext{}, "/tickets")
tickets.Get("/action", (*TicketsContext).D)
rw, req := newTestRequest("GET", "/admin/tickets/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha tickets-D", 200)
}
func TestTicketsD(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
admin := router.Subrouter(AdminContext{}, "/admin")
tickets := admin.Subrouter(TicketsContext{}, "/tickets")
tickets.Middleware((*TicketsContext).mwEta)
tickets.Get("/action", (*TicketsContext).D)
rw, req := newTestRequest("GET", "/admin/tickets/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha tickets-mw-Eta tickets-D", 200)
}
func TestTicketsE(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha)
router.Middleware((*Context).mwBeta)
router.Middleware((*Context).mwGamma)
admin := router.Subrouter(AdminContext{}, "/admin")
admin.Middleware((*AdminContext).mwEpsilon)
admin.Middleware((*AdminContext).mwZeta)
tickets := admin.Subrouter(TicketsContext{}, "/tickets")
tickets.Middleware((*TicketsContext).mwEta)
tickets.Get("/action", (*TicketsContext).D)
rw, req := newTestRequest("GET", "/admin/tickets/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-mw-Beta context-mw-Gamma admin-mw-Epsilon admin-mw-Zeta tickets-mw-Eta tickets-D", 200)
}
func TestNoNext(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwNoNext)
router.Get("/action", (*Context).A)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-NoNext", 200)
}
func TestSameContext(t *testing.T) {
router := New(Context{})
router.Middleware((*Context).mwAlpha).
Middleware((*Context).mwBeta)
admin := router.Subrouter(Context{}, "/admin")
admin.Middleware((*Context).mwGamma)
admin.Get("/foo", (*Context).A)
rw, req := newTestRequest("GET", "/admin/foo")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Alpha context-mw-Beta context-mw-Gamma context-A", 200)
}
func TestSameNamespace(t *testing.T) {
router := New(Context{})
admin := router.Subrouter(AdminContext{}, "/")
admin.Get("/action", (*AdminContext).B)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "admin-B", 200)
}
func TestInterfaceMiddleware(t *testing.T) {
router := New(Context{})
router.Middleware(mwGenricInterface)
router.Get("/action", (*Context).A)
rw, req := newTestRequest("GET", "/action")
router.ServeHTTP(rw, req)
assertResponse(t, rw, "context-mw-Interface context-A", 200)
}
| gocraft/web/middleware_test.go/0 | {
"file_path": "gocraft/web/middleware_test.go",
"repo_id": "gocraft",
"token_count": 3248
} | 166 |
package web
import (
"regexp"
"strings"
)
type pathNode struct {
// Given the next segment s, if edges[s] exists, then we'll look there first.
edges map[string]*pathNode
// If set, failure to match on edges will match on wildcard
wildcard *pathNode
// If set, and we have nothing left to match, then we match on this node
leaves []*pathLeaf
// If true, this pathNode has a pathparam that matches the rest of the path
matchesFullPath bool
}
// pathLeaf represents a leaf path segment that corresponds to a single route.
// For the route /admin/forums/:forum_id:\d.*/suggestions/:suggestion_id:\d.*
// We'd have wildcards = ["forum_id", "suggestion_id"]
// and regexps = [/\d.*/, /\d.*/]
// For the route /admin/forums/:forum_id/suggestions/:suggestion_id:\d.*
// We'd have wildcards = ["forum_id", "suggestion_id"]
// and regexps = [nil, /\d.*/]
// For the route /admin/forums/:forum_id/suggestions/:suggestion_id
// We'd have wildcards = ["forum_id", "suggestion_id"]
// and regexps = nil
type pathLeaf struct {
// names of wildcards that lead to this leaf. eg, ["category_id"] for the wildcard ":category_id"
wildcards []string
// regexps corresponding to wildcards. If a segment has regexp contraint, its entry will be nil.
// If the route has no regexp contraints on any segments, then regexps will be nil.
regexps []*regexp.Regexp
// Pointer back to the route
route *route
// If true, this leaf has a pathparam that matches the rest of the path
matchesFullPath bool
}
func newPathNode() *pathNode {
return &pathNode{edges: make(map[string]*pathNode)}
}
func (pn *pathNode) add(path string, route *route) {
pn.addInternal(splitPath(path), route, nil, nil)
}
func (pn *pathNode) addInternal(segments []string, route *route, wildcards []string, regexps []*regexp.Regexp) {
if len(segments) == 0 {
allNilRegexps := true
for _, r := range regexps {
if r != nil {
allNilRegexps = false
break
}
}
if allNilRegexps {
regexps = nil
}
matchesFullPath := false
if len(wildcards) > 0 {
matchesFullPath = wildcards[len(wildcards)-1] == "*"
}
pn.leaves = append(pn.leaves, &pathLeaf{route: route, wildcards: wildcards, regexps: regexps, matchesFullPath: matchesFullPath})
} else { // len(segments) >= 1
seg := segments[0]
wc, wcName, wcRegexpStr := isWildcard(seg)
if wc {
if pn.wildcard == nil {
pn.wildcard = newPathNode()
}
if !pn.wildcard.matchesFullPath {
pn.wildcard.matchesFullPath = wcName == "*"
}
pn.wildcard.addInternal(segments[1:], route, append(wildcards, wcName), append(regexps, compileRegexp(wcRegexpStr)))
} else {
subPn, ok := pn.edges[seg]
if !ok {
subPn = newPathNode()
pn.edges[seg] = subPn
}
subPn.addInternal(segments[1:], route, wildcards, regexps)
}
}
}
func (pn *pathNode) Match(path string) (leaf *pathLeaf, wildcards map[string]string) {
// Bail on invalid paths.
if len(path) == 0 || path[0] != '/' {
return nil, nil
}
return pn.match(splitPath(path), nil)
}
// Segments is like ["admin", "users"] representing "/admin/users"
// wildcardValues are the actual values accumulated when we match on a wildcard.
func (pn *pathNode) match(segments []string, wildcardValues []string) (leaf *pathLeaf, wildcardMap map[string]string) {
// Handle leaf nodes:
if len(segments) == 0 {
for _, leaf := range pn.leaves {
if leaf.match(wildcardValues) {
return leaf, makeWildcardMap(leaf, wildcardValues)
}
}
return nil, nil
}
var seg string
seg, segments = segments[0], segments[1:]
subPn, ok := pn.edges[seg]
if ok {
leaf, wildcardMap = subPn.match(segments, wildcardValues)
}
if leaf == nil && pn.wildcard != nil {
leaf, wildcardMap = pn.wildcard.match(segments, append(wildcardValues, seg))
}
if leaf == nil && pn.matchesFullPath {
for _, leaf := range pn.leaves {
if leaf.matchesFullPath && leaf.match(wildcardValues) {
if len(wildcardValues) > 0 {
wcVals := []string{wildcardValues[len(wildcardValues)-1], seg}
for _, s := range segments {
wcVals = append(wcVals, s)
}
wildcardValues[len(wildcardValues)-1] = strings.Join(wcVals, "/")
}
return leaf, makeWildcardMap(leaf, wildcardValues)
}
}
return nil, nil
}
return leaf, wildcardMap
}
func (leaf *pathLeaf) match(wildcardValues []string) bool {
if leaf.regexps == nil {
return true
}
// Invariant:
if len(leaf.regexps) != len(wildcardValues) {
panic("bug: invariant violated")
}
for i, r := range leaf.regexps {
if r != nil {
if !r.MatchString(wildcardValues[i]) {
return false
}
}
}
return true
}
// key is a non-empty path segment like "admin" or ":category_id" or ":category_id:\d+"
// Returns true if it's a wildcard, and if it is, also returns it's name / regexp.
// Eg, (true, "category_id", "\d+")
func isWildcard(key string) (bool, string, string) {
if key[0] == ':' {
substrs := strings.SplitN(key[1:], ":", 2)
if len(substrs) == 1 {
return true, substrs[0], ""
}
return true, substrs[0], substrs[1]
}
return false, "", ""
}
// "/" -> []
// "/admin" -> ["admin"]
// "/admin/" -> ["admin"]
// "/admin/users" -> ["admin", "users"]
func splitPath(key string) []string {
elements := strings.Split(key, "/")
if elements[0] == "" {
elements = elements[1:]
}
if elements[len(elements)-1] == "" {
elements = elements[:len(elements)-1]
}
return elements
}
func makeWildcardMap(leaf *pathLeaf, wildcards []string) map[string]string {
if leaf == nil {
return nil
}
leafWildcards := leaf.wildcards
if len(wildcards) == 0 || (len(leafWildcards) != len(wildcards)) {
return nil
}
// At this point, we know that wildcards and leaf.wildcards match in length.
assoc := make(map[string]string)
for i, w := range wildcards {
assoc[leafWildcards[i]] = w
}
return assoc
}
func compileRegexp(regStr string) *regexp.Regexp {
if regStr == "" {
return nil
}
return regexp.MustCompile("^" + regStr + "$")
}
| gocraft/web/tree.go/0 | {
"file_path": "gocraft/web/tree.go",
"repo_id": "gocraft",
"token_count": 2323
} | 167 |
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="824.000000pt" height="824.000000pt" viewBox="0 0 824.000000 824.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,824.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3908 8215 c-2 -2 -48 -6 -103 -9 -55 -3 -111 -8 -125 -10 -14 -3
-43 -7 -65 -10 -75 -10 -189 -27 -205 -31 -3 0 -27 -4 -55 -9 -27 -4 -77 -14
-110 -23 -33 -8 -71 -17 -85 -20 -34 -6 -172 -42 -190 -50 -8 -3 -20 -7 -27
-9 -55 -11 -276 -91 -418 -151 -144 -60 -380 -177 -407 -201 -10 -8 -18 -12
-18 -9 0 6 -98 -53 -235 -141 -97 -62 -312 -225 -420 -317 -49 -42 -157 -146
-240 -230 -154 -156 -162 -165 -229 -250 -22 -27 -48 -57 -58 -66 -10 -9 -18
-20 -18 -24 0 -6 -24 -37 -72 -95 -25 -29 -157 -227 -214 -321 -92 -151 -236
-441 -302 -609 -56 -144 -148 -422 -158 -480 -3 -14 -10 -43 -16 -65 -5 -22
-12 -51 -14 -64 -3 -12 -11 -51 -19 -85 -7 -33 -16 -79 -20 -101 -3 -23 -8
-52 -11 -65 -6 -32 -11 -71 -19 -145 -4 -33 -8 -71 -11 -85 -24 -146 -24 -666
1 -845 2 -16 6 -50 9 -75 5 -44 8 -63 21 -153 6 -40 18 -103 30 -157 3 -14 8
-38 11 -55 14 -81 82 -332 107 -400 6 -16 12 -34 14 -40 7 -35 105 -289 145
-375 86 -185 202 -403 234 -440 7 -8 14 -19 15 -25 3 -14 32 -59 44 -67 6 -5
6 -8 0 -8 -7 0 -6 -3 0 -8 6 -4 33 -41 60 -82 46 -70 132 -189 145 -200 3 -3
24 -30 47 -60 78 -101 207 -243 327 -359 50 -47 102 -98 117 -113 15 -16 30
-28 33 -28 3 0 24 -17 45 -37 22 -21 52 -47 67 -58 15 -11 32 -25 39 -31 6 -6
51 -41 100 -78 83 -62 77 -50 -10 19 -59 46 -348 335 -381 380 -16 22 -31 42
-34 45 -36 35 -193 261 -240 345 -61 109 -106 191 -106 195 -1 3 -11 25 -23
49 -38 74 -127 301 -160 411 -18 58 -37 119 -42 136 -5 17 -12 44 -14 60 -3
16 -14 67 -25 114 -24 105 -30 134 -36 185 -2 22 -6 51 -9 65 -43 216 -49 744
-11 1020 3 19 7 53 10 75 10 69 18 129 22 150 2 11 7 40 10 65 3 25 10 53 15
63 6 9 8 17 5 17 -2 0 1 19 6 43 5 23 12 53 14 67 3 14 18 77 35 140 17 63 32
123 34 134 8 34 123 370 155 451 172 433 415 870 690 1241 84 113 108 144 201
253 30 36 64 77 75 90 25 33 370 378 414 416 47 41 150 127 173 145 10 8 33
27 50 42 18 15 35 28 38 28 3 0 16 9 28 19 12 11 48 37 79 58 31 21 59 41 62
44 10 11 132 89 140 89 5 0 10 4 12 8 2 4 62 42 133 83 174 100 346 184 490
238 33 13 74 29 90 36 17 7 88 32 160 54 111 36 174 53 280 77 44 10 172 34
200 38 36 4 120 16 155 22 160 25 509 22 715 -7 39 -6 77 -10 85 -11 8 0 44
-7 80 -14 36 -8 76 -17 90 -19 22 -3 146 -32 178 -41 7 -2 14 -4 17 -4 3 -1
20 -7 40 -16 19 -8 35 -11 35 -8 0 4 6 1 14 -5 8 -7 23 -14 34 -16 11 -2 48
-15 81 -28 34 -14 61 -21 61 -17 0 5 -131 63 -150 65 -3 0 -15 6 -27 13 -13 7
-23 10 -23 6 0 -3 -6 -2 -12 4 -24 19 -393 132 -508 156 -43 9 -74 15 -120 25
-25 6 -58 13 -75 15 -16 3 -43 7 -60 10 -63 12 -96 17 -142 22 -27 2 -68 7
-93 10 -25 3 -74 8 -110 11 -75 5 -537 12 -542 8z"/>
<path d="M5427 7854 c-1 -1 -54 -4 -117 -7 -63 -3 -126 -8 -140 -12 -14 -3
-41 -8 -60 -11 -19 -3 -53 -10 -75 -15 -22 -5 -51 -11 -65 -14 -27 -4 -196
-52 -220 -62 -8 -3 -19 -7 -25 -8 -75 -18 -413 -174 -559 -259 -136 -79 -139
-80 -150 -89 -6 -5 -45 -30 -86 -58 -41 -27 -86 -57 -100 -66 -35 -24 -214
-157 -220 -163 -3 -3 -34 -28 -69 -55 -35 -28 -75 -61 -90 -75 -15 -14 -42
-38 -61 -54 -155 -128 -452 -428 -625 -631 -27 -32 -57 -66 -65 -74 -8 -9 -36
-44 -63 -78 -26 -34 -53 -68 -60 -75 -7 -7 -44 -56 -82 -108 -38 -52 -72 -97
-75 -100 -22 -21 -227 -335 -310 -475 -95 -161 -244 -445 -233 -445 5 0 3 -4
-3 -8 -23 -15 -256 -593 -268 -667 -1 -5 -9 -30 -19 -55 -17 -47 -41 -135 -36
-135 1 0 -3 -10 -10 -23 -7 -13 -14 -32 -16 -42 -2 -10 -14 -54 -26 -97 -12
-43 -26 -94 -30 -113 -4 -19 -13 -55 -19 -80 -7 -25 -14 -56 -16 -69 -3 -12
-11 -51 -19 -85 -8 -34 -17 -79 -20 -101 -4 -22 -8 -48 -11 -57 -6 -20 -9 -38
-23 -128 -6 -36 -13 -81 -16 -100 -3 -20 -7 -54 -10 -75 -2 -22 -4 -40 -5 -40
-4 0 -25 -223 -36 -370 -14 -208 -3 -594 22 -755 3 -19 7 -50 9 -67 4 -31 17
-107 30 -163 3 -14 8 -38 11 -55 3 -16 10 -48 16 -70 11 -43 14 -54 18 -70 33
-134 188 -473 240 -525 3 -3 20 -27 39 -55 39 -56 39 -56 119 -140 67 -70 155
-145 171 -145 6 0 11 -4 11 -9 0 -5 7 -12 16 -15 15 -6 15 -4 3 11 -8 10 -22
26 -31 37 -35 38 -112 220 -110 259 0 9 -2 17 -6 17 -4 0 -8 10 -8 23 -1 12
-4 36 -8 52 -6 30 -12 68 -21 128 -26 170 -22 572 10 862 12 109 12 117 20
170 4 28 9 64 10 80 2 17 4 30 5 30 3 0 13 88 14 118 0 15 3 27 7 27 4 0 6 11
4 25 -1 14 3 25 9 25 6 0 4 5 -4 10 -8 5 -10 10 -4 10 16 0 23 34 11 55 -6 12
-6 16 1 11 5 -3 12 8 16 27 3 17 8 46 11 62 2 17 7 41 10 55 3 14 8 41 11 60
3 19 10 49 14 65 5 17 11 41 14 55 3 14 8 36 11 50 3 14 8 36 11 50 2 14 7 32
10 40 3 8 8 26 10 39 3 14 14 58 26 100 11 41 21 80 22 86 1 5 5 16 9 23 5 6
6 12 3 12 -3 0 1 19 10 41 8 23 16 51 18 63 2 12 16 57 31 101 15 44 28 87 30
95 3 14 49 156 62 190 3 8 8 24 10 34 2 11 8 25 13 31 5 7 7 15 3 18 -3 4 -2
7 4 7 5 0 10 6 10 14 0 13 29 91 102 271 20 50 35 93 34 97 -1 3 4 12 12 18 8
7 15 18 15 25 0 7 12 39 27 71 15 33 28 61 28 64 1 9 188 385 194 390 3 3 17
25 30 50 14 25 48 85 78 133 29 49 53 90 53 93 0 3 5 10 10 17 16 18 100 148
100 153 0 3 5 10 10 17 6 7 47 64 91 127 120 169 341 458 419 545 15 17 67 75
115 130 129 146 152 170 351 369 185 186 212 211 349 331 44 39 86 76 94 84
39 36 317 255 406 319 55 39 105 75 110 79 10 8 145 95 251 161 28 18 56 32
62 32 5 0 12 4 14 8 3 7 271 144 293 149 6 1 48 16 95 33 93 35 88 33 190 55
14 3 36 8 50 11 44 9 195 5 224 -6 16 -6 31 -8 34 -6 3 3 -6 10 -19 15 -13 5
-46 19 -74 31 -69 30 -181 66 -235 76 -8 2 -31 6 -50 10 -61 13 -295 35 -303
28z"/>
<path d="M5790 7856 c0 -2 9 -6 20 -9 11 -3 18 -1 14 4 -5 9 -34 13 -34 5z"/>
<path d="M6092 7655 c-18 -8 -40 -21 -48 -30 -9 -8 -19 -15 -24 -15 -12 0
-198 -185 -266 -265 -32 -38 -61 -72 -64 -75 -5 -4 -123 -151 -153 -190 -7 -9
-32 -42 -57 -75 -24 -33 -48 -64 -53 -70 -4 -5 -32 -44 -62 -85 -30 -41 -61
-84 -70 -95 -8 -11 -38 -51 -65 -90 -27 -38 -53 -75 -57 -80 -4 -6 -30 -44
-58 -85 -27 -41 -52 -77 -55 -80 -10 -10 -190 -279 -190 -285 0 -2 -7 -13 -15
-22 -14 -17 -148 -221 -249 -380 -27 -43 -70 -109 -94 -148 -25 -38 -55 -86
-67 -105 -12 -19 -35 -55 -51 -80 -16 -25 -31 -49 -34 -55 -3 -5 -39 -65 -80
-133 -41 -67 -85 -139 -97 -160 -12 -20 -25 -42 -30 -48 -12 -15 -29 -44 -54
-89 -11 -22 -34 -59 -50 -83 -16 -24 -29 -45 -29 -47 0 -2 -22 -40 -50 -85
-27 -45 -50 -83 -50 -85 0 -2 -25 -45 -55 -96 -30 -50 -55 -94 -55 -96 0 -3
-8 -17 -19 -31 -10 -15 -36 -58 -57 -97 -21 -38 -50 -90 -66 -114 -15 -25 -28
-50 -28 -57 0 -7 -4 -14 -8 -16 -4 -1 -62 -100 -127 -218 -66 -118 -122 -217
-125 -220 -3 -3 -17 -27 -31 -55 -53 -105 -83 -160 -88 -165 -4 -3 -20 -32
-37 -65 -17 -33 -47 -89 -66 -125 -74 -137 -332 -632 -347 -665 -5 -11 -65
-135 -134 -275 -126 -258 -181 -375 -305 -650 -11 -25 -38 -90 -61 -145 -23
-55 -50 -120 -61 -145 -56 -133 -148 -392 -170 -480 -6 -25 -14 -52 -17 -60
-3 -8 -7 -19 -7 -25 -1 -5 -6 -35 -10 -65 -5 -30 -10 -73 -11 -95 -2 -43 18
-94 38 -97 36 -4 43 -3 55 5 6 5 12 7 12 3 0 -30 267 217 360 333 19 24 45 54
58 67 12 13 22 27 22 33 0 5 4 11 9 13 27 10 446 577 626 848 17 25 34 50 38
55 27 34 300 453 304 468 3 9 9 17 13 17 5 0 12 9 15 20 3 11 12 26 18 32 15
16 156 240 323 513 68 110 128 205 133 212 6 7 11 14 11 17 0 3 32 57 70 121
39 64 79 130 89 148 24 42 169 288 181 307 5 8 53 92 107 185 54 94 106 184
116 200 9 17 20 38 23 48 4 9 11 17 16 17 5 0 7 4 3 9 -3 5 2 16 10 24 8 9 15
18 15 20 0 3 39 74 86 159 48 84 100 178 116 208 53 100 89 164 109 197 12 18
17 33 12 33 -4 0 -3 4 3 8 6 4 17 21 26 37 8 17 43 82 77 145 34 63 74 140 89
170 14 30 29 57 32 60 3 3 48 91 100 195 52 105 99 193 103 196 5 3 8 9 7 13
0 4 31 70 69 148 39 77 71 147 71 154 0 7 3 14 8 16 7 3 46 75 48 87 0 3 26
59 57 125 31 65 57 120 57 122 0 1 15 35 34 76 31 69 61 134 91 203 18 40 79
189 81 195 1 7 13 37 34 85 54 123 158 442 177 541 4 21 8 74 8 117 0 66 -3
81 -19 93 -24 17 -42 17 -84 -1z"/>
<path d="M6230 7626 c0 -3 13 -19 30 -37 16 -18 39 -53 52 -78 13 -25 26 -48
29 -51 10 -9 51 -135 65 -199 3 -14 7 -27 9 -31 2 -4 7 -29 11 -56 3 -27 8
-58 10 -69 5 -23 14 -103 19 -172 13 -152 1 -546 -21 -718 -4 -27 -8 -63 -9
-80 -2 -30 -13 -109 -21 -155 -4 -26 -12 -82 -19 -135 -2 -16 -5 -30 -6 -30
-1 0 -3 -9 -5 -20 -1 -11 -5 -33 -8 -50 -3 -16 -8 -43 -11 -60 -3 -16 -8 -41
-11 -55 -3 -14 -6 -34 -8 -45 -2 -11 -6 -29 -9 -40 -3 -11 -8 -31 -11 -45 -13
-73 -71 -310 -98 -404 -11 -38 -22 -77 -24 -87 -2 -11 -6 -27 -8 -36 -6 -27
-102 -324 -116 -358 -6 -16 -12 -32 -12 -35 0 -3 -4 -15 -9 -28 -5 -13 -9 -29
-9 -35 0 -7 -6 -23 -13 -37 -7 -14 -26 -63 -43 -110 -16 -47 -33 -88 -39 -92
-5 -4 -6 -8 -2 -8 4 0 2 -10 -5 -22 -6 -13 -13 -28 -14 -34 -1 -6 -9 -27 -17
-45 -9 -19 -28 -63 -42 -99 -35 -86 -88 -204 -95 -210 -3 -3 -6 -12 -8 -20 -4
-17 -174 -363 -183 -370 -3 -3 -23 -39 -45 -80 -21 -41 -43 -79 -47 -85 -4 -5
-41 -64 -82 -130 -42 -66 -81 -129 -88 -140 -6 -10 -30 -45 -52 -76 -22 -31
-47 -67 -55 -79 -8 -12 -21 -28 -27 -36 -7 -7 -13 -15 -13 -18 0 -3 -24 -37
-52 -75 -29 -38 -62 -81 -72 -95 -11 -15 -30 -38 -43 -52 -12 -14 -23 -28 -23
-32 0 -4 -12 -20 -28 -37 -15 -16 -47 -55 -72 -85 -25 -30 -49 -60 -55 -66 -5
-6 -30 -35 -55 -64 -105 -122 -278 -307 -431 -460 -117 -117 -176 -172 -364
-345 -62 -56 -257 -220 -274 -229 -9 -5 -27 -19 -41 -32 -14 -13 -61 -51 -105
-84 -44 -33 -84 -63 -90 -68 -57 -46 -352 -242 -365 -242 -5 0 -10 -4 -10 -9
0 -5 -10 -13 -22 -17 -13 -3 -30 -12 -38 -19 -8 -7 -51 -31 -95 -55 -44 -23
-84 -47 -90 -51 -5 -5 -17 -9 -26 -9 -10 0 -19 -4 -21 -8 -6 -16 -282 -125
-344 -137 -10 -2 -19 -4 -19 -5 0 -2 -13 -4 -75 -14 -52 -9 -149 -10 -200 -2
l-45 6 60 -25 c33 -14 68 -30 77 -35 10 -6 25 -10 33 -10 9 0 14 -3 12 -7 -3
-5 5 -8 16 -9 21 -1 72 -11 72 -14 0 -1 9 -4 20 -6 19 -4 36 -7 108 -20 17 -3
64 -7 102 -9 39 -2 70 -5 70 -5 0 -2 99 -2 105 -1 3 1 43 4 89 6 46 2 91 7
100 9 15 5 88 17 121 20 9 1 21 5 28 10 6 4 12 5 12 3 0 -3 33 4 73 14 39 11
79 21 87 23 29 8 175 56 195 65 11 5 47 19 80 32 33 12 75 31 93 41 17 10 32
15 32 13 0 -6 280 137 337 171 17 10 56 33 86 51 67 39 344 224 373 249 12 11
57 45 100 77 44 31 95 70 114 87 19 16 40 33 45 37 15 11 147 124 167 143 9 8
44 40 79 70 82 73 333 324 435 436 177 193 409 486 520 654 27 41 57 84 67 94
9 11 17 26 17 33 0 7 5 13 10 13 6 0 10 4 10 10 0 5 17 36 37 67 44 68 41 62
132 228 62 111 221 428 221 440 0 2 16 37 35 78 19 41 35 80 35 86 0 6 5 19
10 29 19 33 79 182 73 182 -3 0 -1 6 4 13 6 6 27 62 48 122 20 61 41 119 45
130 12 28 78 248 96 320 1 6 14 55 29 109 14 55 23 106 21 113 -3 8 -2 12 3 9
8 -5 27 77 23 97 -1 4 3 7 9 7 5 0 8 4 5 8 -3 5 1 36 9 70 8 34 17 79 20 99 2
21 7 49 10 63 2 13 7 42 10 65 4 22 9 56 12 75 3 19 6 45 7 58 0 12 2 22 6 22
3 0 5 19 6 43 0 23 4 69 7 102 26 237 27 608 2 815 -9 73 -15 116 -20 140 -3
14 -8 44 -11 68 -5 36 -65 284 -77 317 -2 6 -7 24 -12 40 -4 17 -11 35 -14 40
-4 6 -13 28 -20 50 -8 22 -27 68 -42 103 -16 34 -29 65 -30 70 -1 4 -10 19
-20 34 -10 14 -19 29 -19 33 0 12 -91 148 -144 215 -57 73 -128 147 -198 208
-26 22 -44 44 -40 48 4 5 3 6 -2 2 -5 -5 -23 3 -40 15 -39 30 -56 39 -56 33z"/>
<path d="M6541 7423 c7 -11 22 -26 35 -34 75 -46 311 -279 421 -416 73 -91
186 -246 205 -283 7 -14 16 -27 19 -30 29 -22 270 -510 252 -510 -3 0 -1 -6 4
-12 17 -22 92 -251 119 -360 2 -10 6 -26 8 -35 7 -25 37 -164 42 -190 2 -13 6
-35 9 -50 3 -16 8 -48 11 -73 3 -25 7 -58 10 -75 3 -16 7 -48 10 -70 2 -22 7
-67 10 -100 10 -87 10 -553 1 -665 -17 -192 -46 -412 -66 -489 -6 -20 -12 -52
-15 -72 -3 -20 -8 -42 -10 -50 -3 -8 -7 -25 -10 -39 -5 -31 -25 -110 -33 -130
-3 -8 -7 -22 -8 -30 -1 -8 -14 -58 -29 -110 -16 -52 -29 -99 -31 -105 -1 -5
-5 -17 -8 -25 -3 -8 -13 -37 -22 -65 -36 -110 -90 -250 -100 -257 -5 -4 -7 -8
-3 -8 4 0 -4 -26 -18 -57 -14 -32 -27 -62 -28 -68 -10 -39 -172 -369 -237
-482 -26 -46 -44 -83 -41 -83 4 0 2 -4 -4 -8 -6 -4 -28 -36 -48 -72 -40 -69
-157 -252 -166 -260 -3 -3 -18 -25 -35 -50 -33 -50 -202 -278 -219 -296 -6 -6
-24 -28 -41 -49 -16 -21 -34 -43 -40 -49 -5 -6 -41 -47 -79 -91 -80 -92 -349
-361 -420 -420 -27 -22 -60 -51 -75 -65 -21 -20 -112 -93 -219 -175 -7 -5 -22
-18 -33 -27 -10 -10 -19 -15 -19 -10 0 4 -4 2 -8 -3 -9 -12 -158 -115 -167
-115 -3 0 -11 -5 -18 -10 -20 -17 -86 -59 -120 -76 -17 -9 -34 -20 -37 -23
-26 -32 -562 -281 -636 -295 -11 -2 -37 -11 -59 -19 -198 -75 -525 -143 -785
-164 -170 -14 -584 -3 -630 17 -3 1 -8 2 -12 1 -17 -2 -348 64 -378 76 -8 4
-19 5 -24 4 -4 -1 -14 4 -22 10 -8 6 -14 9 -14 5 0 -3 -17 0 -37 8 -37 14 -66
24 -81 27 -4 1 -45 17 -91 35 -47 19 -86 32 -88 30 -11 -11 397 -164 538 -201
35 -9 71 -20 79 -23 8 -3 22 -7 30 -8 8 -2 40 -10 70 -18 30 -8 66 -17 80 -20
28 -6 162 -33 200 -41 14 -2 45 -7 70 -11 25 -3 54 -7 65 -8 11 -2 49 -7 85
-11 36 -4 73 -9 82 -10 73 -14 436 -20 613 -10 170 10 200 12 315 30 19 3 51
7 70 10 38 4 175 28 275 49 29 6 268 66 280 70 6 2 13 4 17 5 4 1 65 23 135
47 71 25 133 46 138 48 6 1 19 7 30 13 11 6 23 11 28 12 4 0 23 8 43 16 20 8
38 15 39 15 2 0 39 16 82 36 295 134 541 279 793 468 52 39 97 73 100 76 3 3
46 39 95 80 225 186 558 554 705 779 8 13 27 41 43 62 15 21 27 43 27 48 0 5
4 11 8 13 29 12 247 420 337 633 88 206 214 615 240 775 3 19 8 46 10 60 14
67 14 69 31 205 3 22 7 54 10 70 32 228 36 817 5 848 -6 6 -6 19 -1 32 5 13 6
25 4 28 -3 3 -7 25 -9 48 -2 24 -6 58 -9 74 -3 17 -7 48 -11 70 -3 23 -8 52
-10 65 -3 14 -8 40 -11 59 -5 32 -7 42 -19 94 -3 12 -7 33 -10 47 -3 14 -9 40
-14 58 -5 17 -8 32 -6 32 2 0 -3 16 -11 35 -8 19 -13 36 -12 37 3 4 -33 140
-43 163 -4 11 -21 61 -38 110 -16 50 -34 104 -41 120 -7 17 -16 39 -20 50 -98
252 -248 543 -393 760 -57 85 -155 224 -167 235 -3 3 -25 32 -50 65 -25 33
-52 67 -60 75 -8 8 -40 44 -70 80 -111 130 -353 361 -503 480 -11 8 -24 20
-31 25 -43 40 -135 104 -125 88z"/>
</g>
</svg>
| modernweb-dev/web/docs/_assets/_static/icons/safari-pinned-tab.svg/0 | {
"file_path": "modernweb-dev/web/docs/_assets/_static/icons/safari-pinned-tab.svg",
"repo_id": "modernweb-dev",
"token_count": 6160
} | 168 |
---
title: 'Introducing: Modern Web'
pageTitle: 'Introducing: Modern Web'
published: true
canonical_url: https://modern-web.dev/blog/introducing-modern-web/
description: 'Our goal is to provide developers with the guides and tools they need to build for the modern web. We aim to work closely with the browser, and avoid complex abstractions'
tags: [javascript, opensource, modernweb]
cover_image: https://github.com/modernweb-dev/web/raw/master/docs/blog/introducing-modern-web/introducing-modern-web-blog-header.jpg
socialMediaImage: /blog/introducing-modern-web/introducing-modern-web-blog-social-media-image.jpg
---
We are excited to finally introduce our brand new project: Modern Web.
## What is Modern Web?
A few years ago we started the [Open Web Components](https://open-wc.org/) project. Our goal was to help people develop web components, and we created guides and tools to help people do this. While working on this project, we realized that a lot of the things we were making were not necessarily specific to web components.
To maintain focus within the Open Web Components project, and to share our work with the larger developer community, we decided to split up the project and create Modern Web. Don't worry, Open Web Components is not going away! It will gain a renewed focus for web component specific topics, while in Modern Web we will work on generic tools and guides for web development.
## The goal for Modern Web
> Our goal is to provide developers with the guides and tools they need to build for the modern web. We aim to work closely with the browser and avoid complex abstractions.
Modern browsers are a powerful platform for building websites and applications. We try to work with what's available in the browser first before reaching for custom solutions.
When you're working _with_ the browser rather than against it, code, skills, and knowledge remain relevant for a longer time. Development becomes faster and debugging is easier because there are fewer layers of abstraction involved.
At the same time, we are aware of the fact that not all problems can be solved elegantly by the browser today. We support developers making informed decisions about introducing tools and customizations to their projects, in such a way that developers can upgrade later as browser support improves.
## Our plan for the future
This announcement marks the official release of Modern Web. Our website is live at [modern-web.dev](https://modern-web.dev), and our packages are available on NPM under the [@web](https://www.npmjs.com/org/web) namespace. Our code is open-source and publicly available at [github.com/modernweb-dev/web](https://github.com/modernweb-dev/web).
For updates, you can follow us on [Twitter](https://twitter.com/modern_web_dev), and if you like what you see please consider sponsoring the project on [Open Collective](https://opencollective.com/modern-web).
We have been working on a lot of different projects in the last couple of years. In this post, we will walk you through some of our projects and how we are planning to fit them into the Modern Web project.
## Guides
On our all-new [website](https://modern-web.dev), we have a dedicated [Guides](../../guides/index.md) section. It is meant to help you become confident in building for the modern web. It features step by step guides to work with our tools, and we document common issues developers run into when doing buildless development.
This section is a work in progress, we're looking to add more over time and would love your feedback and improvements. Feel free to hit "Edit this page on GitHub!", [open issues](https://github.com/modernweb-dev/web/issues/new) or [join the discussions](https://github.com/modernweb-dev/web/discussions).
## Web Test Runner
We are very excited to announce [web test runner](../../docs/test-runner/overview.md), one of the major projects we have been working on for the past months.
There are already a lot of testing solutions out there today. Unfortunately, all of them either run tests in Node.js and mock browser APIs using something like JSDom, or they don't support native es modules out of the box.
We think that making browser code compatible for testing in node is unnecessarily complex. Running tests in real browsers give greater confidence in (cross-browser) compatibility and makes writing and debugging tests more approachable.
That's why we created web test runner.
### Highlights
Some of the highlights of our test runner:
- Headless testing using [Puppeteer](../../docs/test-runner/browser-launchers/puppeteer.md), [Playwright](../../docs/test-runner/browser-launchers/playwright.md), or [Selenium](../../docs/test-runner/browser-launchers/selenium.md). <br>
- Reports logs, 404s, and errors from the browser.
- Debug opens a real browser window with devtools.
- Mock ES modules via [Import Maps](../../docs/test-runner/writing-tests/mocking.md).
- Exposes browser properties like viewport size and dark mode.
- Runs tests in parallel and isolation.
- Interactive watch mode.
- Fast development by rerunning only changed tests.
- Powered by [esbuild](../../docs/dev-server/plugins/esbuild.md) and [rollup plugins](../../docs/dev-server/plugins/rollup.md).
### Getting started
There is a beta version of the test runner available today on NPM as `@web/test-runner`. It is almost feature-complete, we will have a v1 release soon!
If you want get started now take a look at our Web Test Runner [Getting Started Guide](../../guides/test-runner/getting-started.md).
## Web Dev Server
`es-dev-server` is the most popular package at Open Web Components, but it is not specific to web components alone. That's why we're working on its spiritual successor in the modern web project. We will call it web dev server, and it will be published as `@web/dev-server`.
If you're doing buildless development, you can use any web server for development. Our dev server helps out by providing developer productivity features and making your code compatible with older browsers.
### Highlights
- Acts like a real web server, without any flags it serves code untransformed to the browser.
- Efficient caching of unchanged files between reloads.
- Resolve bare module imports using `--node-resolve`.
- Auto reload on file changes with `--watch`.
- Compatibility with older browsers using `--esbuild-target`.
- Extensive [plugin system](../../docs/dev-server/plugins/overview.md).
- Integration with [esbuild](../../docs/dev-server/plugins/esbuild.md) for fast transformation of JS, TS and JSX.
- Reuse most [rollup plugins](../../docs/dev-server/plugins/rollup.md) in the dev server.
- Plugin for polyfilling [Import maps](../../docs/dev-server/plugins/import-maps.md) during development.
Our web dev server is not quite finished _yet_, but we've already built the basic parts to power our web test runner. This means that many of the listed features and plugins apply to our test runner as well.
We are working hard on finalizing the open tasks on web dev server so stay tuned for further updates.
## Building for production
While we try to avoid complex builds during development, they are still a requirement for production optimizations. Here too things can get pretty complex. Through plugins and guides, we will make it easier to integrate production builds with buildless development workflows.
A good example here is [@open-wc/rollup-plugin-html](https://www.npmjs.com/package/@open-wc/rollup-plugin-html) which we will move into the `@web` namespace. This plugin enables running rollup on an existing HTML page. Rollup will bundle and optimize any modules scripts found in the HTML. It works with single pages, but also with multiple pages, code-splitting and sharing common code between pages.
We plan to expand on this plugin further, adding support for optimizing assets such as images and CSS.
## Progressive web apps
When we talk about modern web apps, we also talk about _progressive_ web apps (PWA). PWAs are a great way to provide an engaging and user-friendly experience for your user, by allowing your app to work offline, and being able to install your web app on the user's home screen, among many other benefits.
Unfortunately, service workers are close to rocket science, and implementing PWA features isn't always as straightforward as it could be. That's why we'll provide technical guides and tools to make your life as a developer easier.
Not only do we ship [rollup-plugin-workbox](https://www.npmjs.com/search?q=rollup-plugin-workbox) to help you generate your service worker at build time, in the future, we will also have a set of zero dependency pwa-helpers as web components and vanilla javascript functions, as well as codelabs to help you get started building your modern, progressive web apps.
## Documentation (rocket)
In the past years, we've used different frameworks and tools to build our websites. Recently we've become big fans of [11ty](https://www.11ty.dev/). It's simple to use, works with markdown, and generates _just_ plain HTML. There is no runtime javascript involved to display page content, making it super fast.
To add interactivity to our page we started using web components and applied rollup with our plugins for [HTML](https://www.npmjs.com/package/@open-wc/rollup-plugin-html) and [workbox](https://www.npmjs.com/search?q=rollup-plugin-workbox).
This way our javascript is optimized and common code is shared between pages. Workbox adds a service worker, making our website available offline and precaches pages resulting is super fast navigation.
For a great content authoring experience, we integrated 11ty with our dev server. This adds features like resolving bare imports, and reloading the browser when files change.
By combining existing tools in this way, we think we've made something very powerful that will be useful for other people as well. That's why we started a child project in the modern web family, which we codenamed Rocket.
It's still in its early stages, but we're already using a prototype for our own [website](https://modern-web.dev). We're still missing some features, but we'll continue to evolve it, and an announcement will follow as soon as it's finished. So keep an eye out for it!
## Modern Web Family
Welp, that was a lot of information for a first announcement post — we realize, but many of these projects have been years in the making, and are finally finding their right home. As we mentioned before, Modern Web is all about making the life of developers easier, reducing the complexity of tools, and staying close to the browser.
While we have now spread out over multiple repositories like Open Web Components, Modern Web, and Rocket, we'd like to assure you that all of these projects fall under the same Modern Web Family, and aim to help make your life as developers easier.
## Thanks for reading
We are incredibly proud of what we have achieved so far and the direction we are heading and we invite you to join us on our path forward.
There is much, much more to come so follow us on [Twitter](https://twitter.com/modern_web_dev) and if you like what you see please consider sponsoring the project on [Open Collective](https://opencollective.com/modern-web).
Written with ♥️ by the Modern Web Core Team
---
<span>Photo by <a href="https://unsplash.com/@lemonvlad">Vladislav Klapin</a> on <a href="https://unsplash.com/s/photos/hello">Unsplash</a></span>
| modernweb-dev/web/docs/blog/introducing-modern-web/index.md/0 | {
"file_path": "modernweb-dev/web/docs/blog/introducing-modern-web/index.md",
"repo_id": "modernweb-dev",
"token_count": 2793
} | 169 |
# Dev Server >> Middleware ||5
You can add your own middleware to the dev server using the `middleware` property. The middleware should be a standard koa middleware. [Read more about koa here.](https://koajs.com/)
You can use middleware to modify responses to any request from the browser, for example, to rewrite a URL or proxy to another server. For serving or manipulating files it's recommended to use plugins.
## Proxying requests
<details>
<summary>Read more</summary>
```javascript
import proxy from 'koa-proxies';
export default {
port: 9000,
middleware: [
proxy('/api', {
target: 'http://localhost:9001',
}),
],
};
```
</details>
## Enabling range requests
You can add the capability to handle range request using [koa-range](https://github.com/koajs/koa-range). This is often needed to seek audio or video media.
<details>
<summary>Read more</summary>
Install with `npm install --save-dev koa-range`.
```javascript
import range from 'koa-range';
export default {
...
middleware: [
range
]
};
```
</details>
## Rewriting request urls
You can rewrite certain file requests using a middleware. This can be useful for example to serve your `index.html` from a different file location or to alias a module.
<details>
<summary>Read more</summary>
Serve `/index.html` from `/src/index.html`:
```javascript
export default {
middleware: [
function rewriteIndex(context, next) {
if (context.url === '/' || context.url === '/index.html') {
context.url = '/src/index.html';
}
return next();
},
],
};
```
</details>
## Reusing express middleware
It's possible to reuse middleware written in express using an adapter such as [express-to-koa](https://www.npmjs.com/package/express-to-koa).
| modernweb-dev/web/docs/docs/dev-server/middleware.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/dev-server/middleware.md",
"repo_id": "modernweb-dev",
"token_count": 575
} | 170 |
---
eleventyNavigation:
key: Docs
order: 20
---
# Documentation
Our documentation is hand crafted and optimized to serve as a dictionary to look up details once the need arises.
For a more guided learning experience please visit our [Guides](../guides/index.md).
Documentation for the following packages is available:
- [Web Test Runner](./test-runner/overview.md)
- [Web Dev Server](./dev-server/overview.md)
| modernweb-dev/web/docs/docs/index.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/index.md",
"repo_id": "modernweb-dev",
"token_count": 118
} | 171 |
# Test Runner >> CLI and Configuration ||2
The test runner can be configured using CLI flags, or with a configuration file.
## CLI flags
| name | type | description |
| ------------------- | ----------------- | --------------------------------------------------------------------------------------------------------------------- |
| files | string\|string\[] | test files glob patterns. |
| root-dir | string | Root directory to serve files from. |
| watch | boolean | runs in watch mode |
| coverage | boolean | whether to analyze code coverage |
| concurrent-browsers | number | amount of browsers to run concurrently. defaults to 2 |
| concurrency | number | amount of test files to run concurrently. default to CPU cores divided by 2 |
| config | string | where to read the config from |
| static-logging | boolean | Disables rendering a progress bar dynamically to the terminal. |
| manual | boolean | Starts test runner in manual testing mode. Ignores browsers option and prints manual testing URL. |
| open | boolean | Opens browser for manual testing. Requires the manual option to be set. |
| port | number | Port to bind the server on. |
| groups | string | pattern of where to read test group config files from |
| group | string | runs tests only for the test group with this name |
| preserve-symlinks | boolean | preserve symlinks when resolving imports |
| puppeteer | boolean | whether to run tests with @web/test-runner-puppeteer |
| playwright | boolean | whether to run tests with @web/test-runner-playwright |
| browsers | string array | if playwright is set, specifies which browsers to run tests on. chromium, firefox or webkit |
| node-resolve | boolean | Resolve bare module imports using node resolution. |
| update-snapshots | boolean | updates snapshots stored on disk |
| esbuild-target | string array | JS language target to compile down to using esbuild. Recommended value is "auto", which compiles based on user-agent. |
| debug | boolean | whether to print debug messages |
| help | boolean | Print help commands. |
Examples:
web-test-runner test/**/*.test.js --node-resolve
web-test-runner test/**/*.test.js --node-resolve --watch
web-test-runner test/**/*.test.js --node-resolve --coverage
web-test-runner test/**/*.test.js --node-resolve --playwright --browsers chromium firefox webkit
web-test-runner test/**/*.test.js --node-resolve --esbuild-target auto
You can also use the shorthand `wtr` command:
wtr test/**/*.test.js --node-resolve --esbuild-target auto
## esbuild target
The `--esbuild-target` flag uses the [@web/dev-server-esbuild plugin](https://modern-web.dev/docs/dev-server/plugins/esbuild/) to compile JS to a compatible language version. Depending on what language features you are using and the browsers you are testing on, you may not need this flag.
If you need this flag, we recommend setting this to `auto`. This will compile based on user-agent, and skip work on modern browsers. [Check the docs](https://modern-web.dev/docs/dev-server/plugins/esbuild/) for all other possible options.
## Configuration file
Web test runner looks for a configuration file in the current working directory called `web-test-runner.config`.
The file extension can be `.js`, `.cjs` or `.mjs`. A `.js` file will be loaded as an es module or common js module based on your version of node, and the package type of your project.
We recommend writing the configuration using [node js es module](https://nodejs.org/api/esm.html) syntax and using the `.mjs` file extension to make sure your config is always loaded correctly. All the examples in our documentation use es module syntax.
A config written as es module `web-test-runner.config.mjs`:
```js
export default {
concurrency: 10,
nodeResolve: true,
watch: true,
// in a monorepo you need to set set the root dir to resolve modules
rootDir: '../../',
};
```
A config written as commonjs `web-test-runner.config.js`:
```js
module.exports = {
concurrency: 10,
nodeResolve: true,
watch: true,
// in a monorepo you need to set set the root dir to resolve modules
rootDir: '../../',
};
```
A configuration file accepts most of the command line args camel-cased, with some extra options. These are the full type definitions:
```ts
import { Plugin, Middleware } from '@web/dev-server';
import { ReportType } from 'istanbul-reports';
interface TestFramework {
path: string;
config?: unknown;
}
interface CoverageThresholdConfig {
statements: number;
branches: number;
functions: number;
lines: number;
}
interface CoverageConfig {
include?: string[];
exclude?: string[];
threshold?: CoverageThresholdConfig;
report: boolean;
reportDir: string;
reporters?: ReportType[];
}
type MimeTypeMappings = Record<string, string>;
interface TestRunnerGroupConfig {
// the name of the test group, this is used for reporting and to run only
// a specific group using the --group flag
name: string;
// globs of files to test in this group, if unset it will be inherited from the main config
files?: string | string[];
// browsers to test in this group, if unset it will be inherited from the main config
browsers?: BrowserLauncher[];
// HTML used for running HTML tests for this group
testRunnerHtml?: (
testRunnerImport: string,
config: TestRunnerCoreConfig,
group: TestRunnerGroupConfig,
) => string;
}
interface TestRunnerConfig {
// globs of files to test
files: string | string[];
// test group configs, can be an array of configs or a string or string array of glob patterns
// which specify where to find the configs
groups?: string | string[] | TestRunnerGroupConfig[];
// amount of browsers to run in parallel
concurrentBrowsers?: number;
// amount of test files to run in parallel
concurrency?: number;
// run in watch mode, reloading when files change
watch?: boolean;
// resolve bare module imports
nodeResolve?: boolean | RollupNodeResolveOptions;
// preserve symlinks when resolving bare module imports
preserveSymlinks?: boolean;
// JS language target to compile down to using esbuild. Recommended value is "auto", which compiles based on user agent.
esbuildTarget?: string | string[];
// preserve symlinks when resolve imports, instead of following
// symlinks to their original files
preserveSymlinks?: boolean;
// the root directory to serve files from. this is useful in a monorepo
// when executing commands from a package
rootDir?: string;
// the test framework to run tests in the browser
testFramework?: TestFramework;
// HTML used for running HTML tests
testRunnerHtml?: (testRunnerImport: string, config: TestRunnerCoreConfig) => string;
// browsers to run tests in
browsers?: BrowserLauncher | BrowserLauncher[];
// server which serves files and responds to browser requests
server?: Server;
// reporters for posting results and progress to the terminal and/or file system
reporters?: Reporter[];
// files to serve with a different mime type
mimeTypes?: MimeTypeMappings;
// middleware used by the server to modify requests/responses, for example to proxy
// requests or rewrite urls
middleware?: Middleware[];
// plugins used by the server to serve or transform files
plugins?: Plugin[];
// configuration for the server
protocol?: string;
hostname?: string;
port?: number;
// whether to track browser logs and print them in the node terminal
// defaults to true
browserLogs?: boolean;
// function filter browser logs, receives the log type such as 'info', 'warn' or 'error'
// and the arguments passed to the console log function return true to include and false to exclude
filterBrowserLogs?: (log: { type: string; args: any[] }) => boolean;
// run code coverage
coverage?: boolean;
// configuration for code coverage
coverageConfig?: CoverageConfig;
/** Starts test runner in manual testing mode. Ignores browsers option and prints manual testing URL. */
manual?: boolean;
/** Opens browser for manual testing. Requires the manual option to be set. */
open?: boolean;
// how long a browser can take to start up before failing. defaults to 30000 (30 sec)
browserStartTimeout?: number;
// how long a test file can take to load. defaults to 20000 (20 sec)
testsStartTimeout?: number;
// how long a test file can take to finish. defaults to 120000 (2 min)
testsFinishTimeout?: number;
}
```
## Excluding files
Use a negated glob pattern to exclude test files
```js
export default {
files: [
'**/*.spec.ts', // include `.spec.ts` files
'!**/*.e2e.spec.ts', // exclude `.e2e.spec.ts` files
'!**/node_modules/**/*', // exclude any node modules
],
};
```
## Test runner HTML
The `testRunnerHtml` option allows configuring the HTML environment to run your tests in. It receives the import path of the test framework, this should be imported or loaded as a module script to load the test code.
For example to expose the global `process` variable:
```js
export default {
testRunnerHtml: testFramework =>
`<html>
<body>
<script>window.process = { env: { NODE_ENV: "development" } }</script>
<script type="module" src="${testFramework}"></script>
</body>
</html>`,
};
```
## Test groups
### In the main config
It's possible to create groups of tests with different configurations. A group can be created directly in the main config:
```js
export default {
files: 'test/**/*.test.js',
groups: [
{
name: 'package-a',
files: 'packages/a/test/**/*.test.js',
},
{
name: 'package-b',
files: 'packages/b/test/**/*.test.js',
},
],
};
```
A group will inherit all options from the parent config unless they are overwritten. Not all options can be overwritten, see the config types which options are available.
When running tests regularly, the tests from regular config and the groups will be run. You can run only the tests of a test group by using the `--group` flag. For example `web-test-runner --group package-a`.
### Default group
When the `files` option is specified on the top-level config, a default test group is created `default`. You can run only this group with the `--group default` flag.
Leave the top-level `files` option empty to avoid creating a default group.
### Using separate file
Test groups can also be created in separate files using a glob pattern:
Using the CLI:
`wtr --groups "test/**/*.config.mjs"`
Using a config:
```js
export default {
groups: 'test/**/*.config.mjs',
};
```
This test group config should have a default export with the configuration for that group.
## Examples
### Run only some tests on a specific browser
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
export default {
groups: [
{
name: 'chromium-webkit',
files: 'test/all/**/*.test.js',
browsers: [
playwrightLauncher({ product: 'chromium' }),
playwrightLauncher({ product: 'webkit' }),
],
},
{
name: 'firefox-only',
files: 'test/firefox-only/**/*.test.js',
browsers: [playwrightLauncher({ product: 'firefox' })],
},
],
};
```
### Customize HTML environment per test group
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
export default {
files: 'test/**/*.test.js',
browsers: [
playwrightLauncher({ product: 'chromium' }),
playwrightLauncher({ product: 'webkit' }),
playwrightLauncher({ product: 'firefox' }),
],
groups: [
{
name: 'polyfills-a',
testRunnerHtml: testFramework =>
`<html>
<body>
<script src="./polyfills-a.js"></script>
<script type="module" src="${testFramework}"></script>
</body>
</html>`,
},
{
name: 'polyfills-b',
testRunnerHtml: testFramework =>
`<html>
<body>
<script src="./polyfills-b.js"></script>
<script type="module" src="${testFramework}"></script>
</body>
</html>`,
},
],
};
```
### Group per package
Group tests by package, so that you can easily run tests only for a single package using the `--group` flag.
```js
import fs from 'fs';
const packages = fs
.readdirSync('packages')
.filter(dir => fs.statSync(`packages/${dir}`).isDirectory());
export default {
groups: packages.map(pkg => ({
name: pkg,
files: `packages/${pkg}/test/**/*.test.js`,
})),
};
```
| modernweb-dev/web/docs/docs/test-runner/cli-and-configuration.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/test-runner/cli-and-configuration.md",
"repo_id": "modernweb-dev",
"token_count": 5732
} | 172 |
# Test Runner >> Writing Tests >> Helper Libraries ||30
Not all helper libraries ship es modules which are usable in the browser. On this page we collect libraries which are available as es modules. If need to use a library with another module format, you can follow the instructions at the bottom of the [es modules page](../../../guides/going-buildless/es-modules.md)
## General libraries
[@open-wc/testing](https://github.com/open-wc/open-wc/tree/master/packages/testing) is a general-purpose library, including assertions via chai, HTML test fixtures, a11y tests, and test helpers. It is an opinionated implementation that brings together multiple libraries.
## Assertions
[chai](https://www.npmjs.com/package/chai) is a popular assertion library. It doesn't ship an es module, but you can use [@esm-bundle/chai](https://www.npmjs.com/package/@esm-bundle/chai) for that.
```js
import { expect } from '@esm-bundle/chai';
expect(undefined).to.not.be.a('function');
```
## Chai plugins
- [@open-wc/chai-dom-equals](https://www.npmjs.com/package/@open-wc/chai-dom-equals) for diffing HTML
- [chai-a11y-axe](https://www.npmjs.com/package/chai-a11y-axe) for testing accessibility
## Testing helpers
[@open-wc/testing-helpers](https://www.npmjs.com/package/@open-wc/testing-helpers) contains useful helper functions for setting up snippets of HTML test fixtures, and testing async behavior
## Mocking
For stubbing and mocking, we recommend [sinon](https://www.npmjs.com/package/sinon). Check the [mocking page](./mocking.md) for more.
| modernweb-dev/web/docs/docs/test-runner/writing-tests/helper-libraries.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/test-runner/writing-tests/helper-libraries.md",
"repo_id": "modernweb-dev",
"token_count": 483
} | 173 |
# Going Buildless >> ES Modules ||60
All modern browsers support standard es modules. These are javascript files using `import` and `export` statements:
```js
import foo from './foo.js';
export function doBar() {
return foo + 'bar';
}
```
In contrast to classic scripts, variables declared inside modules are scoped to the file itself. This makes them especially useful for writing modular code, explicitly declaring the API surface using exports.
## Loading modules
### Module scripts
You can load javascript modules using scripts with `type="module"`. You can reference the module file using `src`, or write the module directly inline.
```html
<html>
<body>
<script type="module" src="./app.js"></script>
<script type="module">
import './app.js';
console.log('hello world from my module');
</script>
</body>
</html>
```
### Static imports
A module can import other modules using static imports. These imports are executed eagerly, the browser will download the statically imported modules before running the code in your module.
```js
import { foo } from './foo.js';
```
### Dynamic imports
You can also import other modules using dynamic [`import()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#dynamic_imports) function. This import is executed lazily, the browser will download the file only when the function is executed.
```js
function loadComponent() {
return import('./components/my-component.js');
}
```
Because of the nature of dynamic imports, the above function returns a promise, so you need to use the `await` keyword:
```js
const component = await loadComponent();
component.doSomething();
```
## File extensions
You will often see es modules using the `.mjs` file extension. For node js the `.mjs` file extension is an indication to execute the file as an es module. Node js will treat a file as an es module if it has a `.mjs` file extension, or if it has `.js` file extension and the `package.json` has `type="module"` set.
For the browser, the file extension doesn't matter, it only looks at the content-type header that was sent by the server. Web servers infer the content-type from the file extension, and not all web servers support the `.mjs` file extension.
## Import paths
In the browser import paths should be the full path to the module you want to import, either absolute or relative to your module. It should include the file extension as well.
For example:
```js
import foo from '../node_modules/foo/index.js';
```
In NodeJS there is logic to resolve modules imports so that you can use bare module imports or imports without file extensions:
```js
import foo from 'foo';
import bar from './bar';
```
This doesn't work in the browser because it doesn't have direct access to the file system to resolve the paths.
Both [@web/test-runner](../../docs/test-runner/overview.md) and [@web/dev-server](../../docs/dev-server/overview.md) support the `--node-resolve` flag to resolve these kinds of imports server-side before serving them to the browser.
## Referencing Reusable Assets with `import.meta.url`
When publishing reusable [modules](./es-modules.md), you may want to include assets like images and CSS. Consider the following structure:
```
root
├── modules
│ ├── module.js
│ └── asset.webp
└── index.html
```
```js
const imgSrc = './asset.webp';
const image = document.createElement('img');
image.src = imgSrc;
document.body.appendChild(image);
```
if `index.html` loaded `modules/module.js`, the image could not display, because the browser would request `/asset.webp` instead of `/modules/asset.webp`, as the author intended.
As of this writing, the es-module standard does not yet have a way of [importing non-javascript assets](https://github.com/tc39/proposal-import-assertions). If you tried to load assets using relative URLs, they would load relative to the _document_ rather than the _module_ path.
However, you can still publish modules that load bundled resources at runtime by using [`import.meta`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import.meta), a special object provided by the runtime which contains information about the current module.
```js
const imgSrc = new URL('./asset.webp', import.meta.url);
const image = document.createElement('img');
image.src = imgSrc.href;
document.body.appendChild(image);
```
This works by using the optional `base` parameter to the `URL` constructor, which in this case functions similarly to nodejs `path.resolve`.
## CommonJS modules
CommonJS is the original module system of node and predates standard es modules. You can recognize this type of module by the use of `require` and `module.exports`:
```js
const foo = require('./foo');
module.exports.doBar = function doBar() {
return foo + 'bar';
};
```
This doesn't work in the browser, as it doesn't know what to do with CommonJS modules. While node now supports es modules natively, a lot of code is still written as CommonJS modules. If you want to use a library written in CommonJS, there are a couple of options to look into.
### Look for an es module distribution
Many libraries are already shipping es module variants, but you need to do some digging to find out. For example, sometimes you need to import it from their `dist` or `lib` folder.
```js
import foo from 'foo/dist/foo.mjs';
```
Inspect your `node_modules` folder to see if you can find it, or check the docs if thas been documented.
### Ask the author to distribute an ESM distribution
Package authors need to know about user demand, so it's important to always create an issue asking for an ESM distribution. Sometimes authors are quick to pick it up and add a distribution.
### Look for a forked ESM distribution
There are a few projects where people set up forks of popular libraries, providing an es module distribution. These forks can get out of date, though some have set up automated version bumping.
Popular collections of forks are [@esm-bundle](https://github.com/esm-bundle/) and [@bundled-es-modules](https://github.com/bundled-es-modules).
### Create a UMD wrapper
UMD modules are "universal modules", meaning they support multiple module formats in a single file. It's quite an old standard, and it doesn't support standard es modules, so it's not quite "universal" anymore. However, many libraries ship a UMD version where the library and its dependencies are bundled into a single file. It's been the way to ship code for the browser for a long time.
You can actually import these libraries using a module import, but instead of exporting something, the UMD module will register itself to the window. You can set up a proxy file to reexport this variable from the window.
A good example of this is the chai library:
`test/chai.js`:
```js
// import the chai UMD file
import 'chai/chai.js';
// get a reference to chai on the window
const chai = window.chai;
const { expect, assert } = chai;
// reexport chai
export default chai;
// reexport names exports from chai
export { expect, assert };
```
`test/my-element.test.js`:
```js
import { expect } from './chai.js';
expect('foo').to.equal('bar');
```
This approach has the downside of polluting the global scope. And you can only use a single version of this library since different versions would overwrite each other. This makes it unsuitable for shared code, but this is a good option for applications and tests.
### Use the JSPM CDN
JSPM is a CDN which ships es module variants of the NPM registry, using a clever build system to transform CommonJS into es modules. You could import from your CDN directly in your code. This will always require an internet connection and is unsuitable for published code. But it is an interesting option.
```js
import chai from 'https://jspm.dev/chai';
const { expect } = chai;
expect('foo').to.equal('bar');
```
### Transform CommonJS to ESM
Transforming CommonJS to es modules is not straightforward, and often requires some debugging and fiddling to get it working. It also locks your project into requiring a specific build setup. However, it can be a good option if there is no other way around it.
#### CommonJS Plugin
For our dev server and test runner you can use [@rollup/plugin-commonjs](https://www.npmjs.com/package/@rollup/plugin-commonjs):
```js
const rollupCommonjs = require('@rollup/plugin-commonjs');
const { fromRollup } = require('@web/dev-server-rollup');
const commonjs = fromRollup(rollupCommonjs);
module.exports = {
plugins: [
commonjs({
include: ['./node_modules/foo/**/*', './node_modules/bar/**/*', './node_modules/baz/**/*'],
}),
],
};
```
It's highly recommended to always list out which packages you want to transform explicitly. The commonjs plugin slows down the server for each file it processes.
If you are using a monorepo, you need to use a pattern like this:
```js
'../../**/node_modules/foo/**/*',
'../../**/node_modules/bar/**/*',
'../../**/node_modules/baz/**/*',
```
#### Importing CommonJS modules
After adding the plugin, you can import CommonJS modules as if they are es modules using a default import:
```js
import foo from 'foo';
```
For some modules it's also possible to use named imports:
```js
import { doFoo, doBar } from 'foo';
```
However since CommonJS is a dynamic format, it's not always possible to detect all patterns. There is ongoing work to improve this detection behavior, you can follow [this issue](https://github.com/rollup/plugins/issues/481) for more information.
| modernweb-dev/web/docs/guides/going-buildless/es-modules.md/0 | {
"file_path": "modernweb-dev/web/docs/guides/going-buildless/es-modules.md",
"repo_id": "modernweb-dev",
"token_count": 2640
} | 174 |
---
title: Modern Web
layout: layout-home-background
slogan: Guides, tools and libraries for modern web development.
callToActionItems:
[{ text: 'Follow Guides', href: '/guides/' }, { text: 'Browse Docs', href: '/docs/' }]
reasonHeader: Why Modern Web?
reasons:
[
{
header: Built on web standards,
text: "Work with and extend what's available in modern browsers, while learning skills and writing code with the longevity of the standards themselves.",
},
{
header: Lightweight,
text: 'Simple solutions that are lightweight and have a low barrier to entry, with extension points for power users.',
},
{
header: Low complexity,
text: 'Write code that is close to what actually runs in the browser, reducing abstractions and complexity.',
},
]
supportedByHeader: 'Modern Web is <a href="https://opencollective.com/modern-web">supported</a> by:'
supportedByItems:
- name: Divriots
width: 300
href: https://divriots.com/
image: /_merged_assets/supporters/divriots-light.svg
imageDark: /_merged_assets/supporters/divriots-dark.svg
tier: Silver
- name: Chrome's Web Framework & Tools Performance Fund
width: 100
href: https://google.com/chrome
image: /_merged_assets/supporters/chrome.svg
imageDark: /_merged_assets/supporters/chrome.svg
tier: Gold
---
| modernweb-dev/web/docs/index.md/0 | {
"file_path": "modernweb-dev/web/docs/index.md",
"repo_id": "modernweb-dev",
"token_count": 447
} | 175 |
import { throwErrorB } from './fail-stack-trace-b.js';
export function throwErrorA() {
return throwErrorB();
}
| modernweb-dev/web/integration/test-runner/tests/test-failure/browser-tests/fail-stack-trace-a.js/0 | {
"file_path": "modernweb-dev/web/integration/test-runner/tests/test-failure/browser-tests/fail-stack-trace-a.js",
"repo_id": "modernweb-dev",
"token_count": 38
} | 176 |
import { ParseStackTraceOptions, parseStackTrace } from './parseStackTrace.js';
const KEY_WTR_TYPE = '__WTR_TYPE__';
const KEY_CONSTRUCTOR_NAME = '__WTR_CONSTRUCTOR_NAME__';
const ASYNC_DESERIALIZE_WRAPPER = Symbol('ASYNC_DESERIALIZE_WRAPPER');
const BOUND_NAME_FUNCTION_REGEX = /^bound\s+/;
function createReviver(promises: Promise<unknown>[], options?: DeserializeOptions) {
const undefinedPropsPerObject = new Map();
return function reviver(this: any, key: string, value: any) {
if (value == null || typeof value !== 'object') {
return value;
}
const undefinedKeysForObject = undefinedPropsPerObject.get(value);
if (undefinedKeysForObject) {
for (const undefinedKey of undefinedKeysForObject) {
value[undefinedKey] = undefined;
}
}
if (Array.isArray(value)) {
return value;
}
/**
* Revive special serialized values, such as functions and regexp
*/
if (hasOwnProperty.call(value, KEY_WTR_TYPE)) {
switch (value[KEY_WTR_TYPE]) {
case 'undefined':
{
let keys = undefinedPropsPerObject.get(this);
if (!keys) {
keys = [];
undefinedPropsPerObject.set(this, keys);
}
keys.push(key);
}
return;
case 'Function':
if (value.name.includes('-')) {
const { name } = value;
// eslint-disable-next-line
const placeholder = { [name]: () => {} };
return placeholder[name];
}
// Create a fake function with the same name. We don't log the function implementation.
return new Function(
`return function ${value.name.replace(
BOUND_NAME_FUNCTION_REGEX,
'',
)}() { /* implementation hidden */ }`,
)();
case 'RegExp':
// Create a new RegExp using the same parameters
return new RegExp(value.source, value.flags);
case 'Error': {
let errorMsg = `${value.name}: ${value.message}`;
if (value.stack) {
const parsePromise = parseStackTrace(value.message, value.stack, options)
.then(parsedStack => {
if (parsedStack) {
// set the async deserialized error msg
errorMsg = `${errorMsg}\n${parsedStack}`;
if (this[key][ASYNC_DESERIALIZE_WRAPPER]) {
// replace the returned wrapper with the async value
// this only works when the error appears somewhere in an object
// or array, ex. deserialize({ myError: new Error('...') }) not when the
// top level object is the error: deserialize(new Error('...')) this case
// is handled in the serialize function
this[key] = this[key].value();
}
}
})
.catch(error => {
console.error(error);
});
promises.push(parsePromise);
}
// deserializing an error is async, return a wrapper that is unpacked later
return { [ASYNC_DESERIALIZE_WRAPPER]: true, value: () => errorMsg };
}
case 'Promise':
// Create a fake new Promise. Just to show that its a Promise.
return `Promise { }`;
default:
throw new Error(`Unknown serialized type: ${value[KEY_WTR_TYPE]}`);
}
}
/**
* Objects in the browser are serialized to a simple object. We preserve the
* constructor name and assign a fake prototpe to it here so that the name
* appears in the logs.
*/
if (hasOwnProperty.call(value, KEY_CONSTRUCTOR_NAME)) {
const constructorName = value[KEY_CONSTRUCTOR_NAME];
const ConstructorFunction = new Function(`return function ${constructorName}(){}`)();
Object.setPrototypeOf(value, new ConstructorFunction());
delete value[KEY_CONSTRUCTOR_NAME];
return value;
}
return value;
};
}
const { hasOwnProperty } = Object.prototype;
interface DeserializeOptions extends ParseStackTraceOptions {}
export async function deserialize(value: string, options?: DeserializeOptions) {
try {
const promises: Promise<unknown>[] = [];
const parsed = JSON.parse(value, createReviver(promises, options));
// wait for any async work to finish
await Promise.all(promises);
if (parsed != null && parsed[ASYNC_DESERIALIZE_WRAPPER]) {
// if deserialization of the top level object was async,
// return the wrapped value which was provided async
return parsed.value();
}
return parsed;
} catch (error) {
console.error('Error while deserializing browser logs.');
console.error(error);
return null;
}
}
| modernweb-dev/web/packages/browser-logs/src/deserialize.ts/0 | {
"file_path": "modernweb-dev/web/packages/browser-logs/src/deserialize.ts",
"repo_id": "modernweb-dev",
"token_count": 2066
} | 177 |
const getPackageType = require('./getPackageType');
const path = require('path');
const requireConfig = require('./requireConfig');
/**
* @param {string} configPath
*/
function importConfig(configPath) {
// Conditionally requires importConfig function to avoid logging a warning on node v12
// when not using an es modules
const importConfigFunction = require('./importConfig');
return importConfigFunction(configPath);
}
/**
* @param {string} configPath
* @param {string} basedir
*/
async function importOrRequireConfig(configPath, basedir) {
const packageType = await getPackageType(basedir);
const ext = path.extname(configPath);
switch (ext) {
case '.mjs':
return importConfig(configPath);
case '.cjs':
return requireConfig(configPath);
default:
return packageType === 'module' ? importConfig(configPath) : requireConfig(configPath);
}
}
module.exports = importOrRequireConfig;
| modernweb-dev/web/packages/config-loader/src/importOrRequireConfig.js/0 | {
"file_path": "modernweb-dev/web/packages/config-loader/src/importOrRequireConfig.js",
"repo_id": "modernweb-dev",
"token_count": 279
} | 178 |
{
"type": "module"
}
| modernweb-dev/web/packages/config-loader/test/fixtures/package-mjs/package.json/0 | {
"file_path": "modernweb-dev/web/packages/config-loader/test/fixtures/package-mjs/package.json",
"repo_id": "modernweb-dev",
"token_count": 12
} | 179 |
const open = require('open');
const { DevServer } = require('../../dist/index');
const server = new DevServer(
{
port: 8080,
rootDir: process.cwd(),
http2: true,
plugins: [],
},
{
log: console.log,
debug: () => {
// no debug
},
error: console.error,
warn: console.warn,
logSyntaxError(error) {
console.error(error.message);
},
},
);
server.start();
open('https://localhost:8080/demo/event-stream/');
| modernweb-dev/web/packages/dev-server-core/demo/http2/start-server.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/demo/http2/start-server.js",
"repo_id": "modernweb-dev",
"token_count": 192
} | 180 |
export interface ErrorWithLocation {
name: string;
message: string;
filePath: string;
code: string;
line: number;
column: number;
}
export interface Logger {
log(...messages: unknown[]): void;
debug(...messages: unknown[]): void;
error(...messages: unknown[]): void;
warn(...messages: unknown[]): void;
group(): void;
groupEnd(): void;
logSyntaxError(error: ErrorWithLocation): void;
}
| modernweb-dev/web/packages/dev-server-core/src/logger/Logger.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/src/logger/Logger.ts",
"repo_id": "modernweb-dev",
"token_count": 135
} | 181 |
/* eslint-disable @typescript-eslint/ban-ts-comment */
import path from 'path';
import { Context } from 'koa';
// @ts-ignore
import { parse, ParsedImport } from 'es-module-lexer';
import { queryAll, predicates, getTextContent, setTextContent } from '../dom5/index.js';
import { parse as parseHtml, serialize as serializeHtml } from 'parse5';
import { Plugin } from './Plugin.js';
import { PluginSyntaxError } from '../logger/PluginSyntaxError.js';
import { toFilePath } from '../utils.js';
import { Logger } from '../logger/Logger.js';
import { parseDynamicImport } from './parseDynamicImport.js';
export type ResolveImport = (
source: string,
code: string,
line: number,
column: number,
) => string | undefined | Promise<string | undefined>;
interface ParsedImport {
s: number;
e: number;
ss: number;
se: number;
d: number;
n?: string;
}
const CONCAT_NO_PACKAGE_ERROR =
'Dynamic import with a concatenated string should start with a valid full package name.';
/**
* Resolves an import which is a concatenated string (for ex. import('my-package/files/${filename}'))
*
* Resolving is done by taking the package name and resolving that, then prefixing the resolves package
* to the import. This requires the full package name to be present in the string.
*/
async function resolveConcatenatedImport(
importSpecifier: string,
resolveImport: ResolveImport,
code: string,
line: number,
column: number,
): Promise<string> {
let pathToResolve = importSpecifier;
let pathToAppend = '';
if (['/', '../', './'].some(p => pathToResolve.startsWith(p))) {
// don't handle non-bare imports
return pathToResolve;
}
const parts = importSpecifier.split('/');
if (importSpecifier.startsWith('@')) {
if (parts.length < 2) {
throw new Error(CONCAT_NO_PACKAGE_ERROR);
}
pathToResolve = `${parts[0]}/${parts[1]}`;
pathToAppend = parts.slice(2, parts.length).join('/');
} else {
if (parts.length < 1) {
throw new Error(CONCAT_NO_PACKAGE_ERROR);
}
[pathToResolve] = parts;
pathToAppend = parts.slice(1, parts.length).join('/');
}
// TODO: instead of package, we could resolve the bare import and take the first one or two segments
// this will make it less hardcoded to node resolution
const packagePath = `${pathToResolve}/package.json`;
const resolvedPackage = await resolveImport(packagePath, code, line, column);
if (!resolvedPackage) {
throw new Error(`Could not resolve conatenated dynamic import, could not find ${packagePath}`);
}
const packageDir = resolvedPackage.substring(0, resolvedPackage.length - 'package.json'.length);
return `${packageDir}${pathToAppend}`;
}
async function maybeResolveImport(
importSpecifier: string,
concatenatedString: boolean,
resolveImport: ResolveImport,
code: string,
line: number,
column: number,
) {
let resolvedImportFilePath;
if (concatenatedString) {
// if this dynamic import is a concatenated string, try our best to resolve. Otherwise leave it untouched and resolve it at runtime.
try {
resolvedImportFilePath =
(await resolveConcatenatedImport(importSpecifier, resolveImport, code, line, column)) ??
importSpecifier;
} catch (error) {
return importSpecifier;
}
} else {
resolvedImportFilePath =
(await resolveImport(importSpecifier, code, line, column)) ?? importSpecifier;
}
return resolvedImportFilePath;
}
export async function transformImports(
code: string,
filePath: string,
resolveImport: ResolveImport,
) {
let imports: ParsedImport[];
try {
const parseResult = await parse(code, filePath);
imports = parseResult[0] as any as ParsedImport[];
} catch (error) {
if (typeof (error as Error & { idx: number }).idx === 'number') {
const lexerError = error as Error & { idx: number };
throw new PluginSyntaxError(
'Syntax error',
filePath,
code,
code.slice(0, lexerError.idx).split('\n').length,
lexerError.idx - code.lastIndexOf('\n', lexerError.idx - 1),
);
}
throw error;
}
let resolvedSource = '';
let lastIndex = 0;
for (const imp of imports) {
const { s: start, e: end, d: dynamicImportIndex, n: unescaped } = imp;
if (dynamicImportIndex === -1) {
// static import
const importSpecifier = unescaped || code.substring(start, end);
const lines = code.slice(0, end).split('\n');
const line = lines.length;
const column = lines[lines.length - 1].indexOf(importSpecifier);
const resolvedImport = await maybeResolveImport(
importSpecifier,
false,
resolveImport,
code,
line,
column,
);
resolvedSource += `${code.substring(lastIndex, start)}${resolvedImport}`;
lastIndex = end;
} else if (dynamicImportIndex >= 0) {
// dynamic import
const {
importString,
importSpecifier,
stringLiteral,
concatenatedString,
dynamicStart,
dynamicEnd,
} = parseDynamicImport(code, start, end);
const lines = code.slice(0, dynamicStart).split('\n');
const line = lines.length;
const column = lines[lines.length - 1].indexOf('import(') || 0;
let rewrittenImport;
if (stringLiteral) {
const resolvedImport = await maybeResolveImport(
importSpecifier,
concatenatedString,
resolveImport,
code,
line,
column,
);
rewrittenImport = `${importString[0]}${resolvedImport}${
importString[importString.length - 1]
}`;
} else {
rewrittenImport = importString;
}
resolvedSource += `${code.substring(lastIndex, dynamicStart)}${rewrittenImport}`;
lastIndex = dynamicEnd;
}
}
if (lastIndex < code.length - 1) {
resolvedSource += `${code.substring(lastIndex, code.length)}`;
}
return resolvedSource;
}
async function transformModuleImportsWithPlugins(
logger: Logger,
context: Context,
jsCode: string,
rootDir: string,
resolvePlugins: Plugin[],
) {
const filePath = path.join(rootDir, toFilePath(context.path));
async function resolveImport(source: string, code: string, column: number, line: number) {
for (const plugin of resolvePlugins) {
const resolved = await plugin.resolveImport?.({ source, context, code, column, line });
if (typeof resolved === 'string') {
logger.debug(
`Plugin ${plugin.name} resolved import ${source} in ${context.path} to ${resolved}.`,
);
return resolved;
}
if (typeof resolved === 'object') {
logger.debug(
`Plugin ${plugin.name} resolved import ${source} in ${context.path} to ${resolved.id}.`,
);
return resolved.id;
}
}
}
async function transformImport(source: string, code: string, column: number, line: number) {
let resolvedImport = (await resolveImport(source, code, column, line)) ?? source;
for (const plugin of resolvePlugins) {
const resolved = await plugin.transformImport?.({
source: resolvedImport,
context,
column,
line,
});
if (typeof resolved === 'string') {
logger.debug(
`Plugin ${plugin.name} transformed import ${resolvedImport} in ${context.path} to ${resolved}.`,
);
resolvedImport = resolved;
}
if (typeof resolved === 'object' && typeof resolved.id === 'string') {
logger.debug(
`Plugin ${plugin.name} transformed import ${resolvedImport} in ${context.path} to ${resolved.id}.`,
);
resolvedImport = resolved.id;
}
}
return resolvedImport;
}
return transformImports(jsCode, filePath, transformImport);
}
export function transformModuleImportsPlugin(
logger: Logger,
plugins: Plugin[],
rootDir: string,
): Plugin {
const importPlugins = plugins.filter(pl => !!pl.resolveImport || !!pl.transformImport);
return {
name: 'resolve-module-imports',
async transform(context) {
if (importPlugins.length === 0) {
return;
}
// resolve served js code
if (context.response.is('js')) {
const bodyWithResolvedImports = await transformModuleImportsWithPlugins(
logger,
context,
context.body as string,
rootDir,
importPlugins,
);
return { body: bodyWithResolvedImports };
}
// resolve inline scripts
if (context.response.is('html') && typeof context.body === 'string') {
const documentAst = parseHtml(context.body);
const inlineModuleNodes = queryAll(
documentAst,
predicates.AND(
predicates.hasTagName('script'),
predicates.hasAttrValue('type', 'module'),
predicates.NOT(predicates.hasAttr('src')),
),
);
let transformed = false;
for (const node of inlineModuleNodes) {
const code = getTextContent(node);
const resolvedCode = await transformModuleImportsWithPlugins(
logger,
context,
code,
rootDir,
importPlugins,
);
if (code !== resolvedCode) {
setTextContent(node, resolvedCode);
transformed = true;
}
}
if (transformed) {
return { body: serializeHtml(documentAst) };
}
}
},
};
}
| modernweb-dev/web/packages/dev-server-core/src/plugins/transformModuleImportsPlugin.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/src/plugins/transformModuleImportsPlugin.ts",
"repo_id": "modernweb-dev",
"token_count": 3649
} | 182 |
<html>
<head>
<title>My app</title>
</head>
<body>
<p>Hello world</p>
<script type="module">
import { message } from 'my-module';
import './src/local-module.js';
console.log(message);
</script>
</body>
</html>
| modernweb-dev/web/packages/dev-server-core/test/fixtures/basic/index.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/test/fixtures/basic/index.html",
"repo_id": "modernweb-dev",
"token_count": 114
} | 183 |
import { expect } from 'chai';
import { createTestServer } from '../helpers.js';
describe('mimeTypesPLugin', () => {
it('can configure mime types for files', async () => {
const { server, host } = await createTestServer({
mimeTypes: {
'**/*.css': 'js',
},
plugins: [
{
name: 'test',
serve(context) {
if (context.path === '/foo.css') {
return '';
}
},
},
],
});
try {
const response = await fetch(`${host}/foo.css`);
expect(response.status).to.equal(200);
expect(response.headers.get('content-type')).to.equal(
'application/javascript; charset=utf-8',
);
} finally {
server.stop();
}
});
it('can resolve literal paths', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
mimeTypes: {
'foo.css': 'js',
},
plugins: [
{
name: 'test',
serve(context) {
if (context.path.endsWith('.css')) {
return '';
}
},
},
],
});
try {
const responseA = await fetch(`${host}/foo.css`);
expect(responseA.status).to.equal(200);
expect(responseA.headers.get('content-type')).to.equal(
'application/javascript; charset=utf-8',
);
const responseB = await fetch(`${host}/x/foo.css`);
expect(responseB.status).to.equal(200);
expect(responseB.headers.get('content-type')).not.to.equal(
'application/javascript; charset=utf-8',
);
} finally {
server.stop();
}
});
});
| modernweb-dev/web/packages/dev-server-core/test/plugins/mimeTypesPlugin.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/test/plugins/mimeTypesPlugin.test.ts",
"repo_id": "modernweb-dev",
"token_count": 798
} | 184 |
{
"compilerOptions": {
"experimentalDecorators": true
}
}
| modernweb-dev/web/packages/dev-server-esbuild/demo/ts/tsconfig.json/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-esbuild/demo/ts/tsconfig.json",
"repo_id": "modernweb-dev",
"token_count": 27
} | 185 |
import 'some-lib/some-file.js';
import '../../x.js';
import '../y.js';
import './z.js';
import '../../1.js';
import '../2.js';
import './3.js';
import '../../non-existing-a.js';
import '../non-existing-b.js';
import './non-existing-c.js';
| modernweb-dev/web/packages/dev-server-esbuild/test/fixture/a/b/bar.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-esbuild/test/fixture/a/b/bar.js",
"repo_id": "modernweb-dev",
"token_count": 102
} | 186 |
<html>
<body>
<todo-list></todo-list>
<script type="module" src="./hot-elements/patch-custom-element.js"></script>
<script type="module" src="./src/todo-list.js"></script>
</body>
</html>
| modernweb-dev/web/packages/dev-server-hmr/demo/lit-html/index.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-hmr/demo/lit-html/index.html",
"repo_id": "modernweb-dev",
"token_count": 87
} | 187 |
import { expect } from 'chai';
import { stubMethod, restore as restoreStubs } from 'hanbi';
import { createTestServer, fetchText, expectIncludes } from '@web/dev-server-core/test-helpers';
import { posix as pathUtil } from 'path';
import { hmrPlugin } from '../src/index.js';
import { NAME_HMR_CLIENT_IMPORT } from '../src/HmrPlugin.js';
import { mockFile, mockFiles } from './utils.js';
describe('HmrPlugin', () => {
afterEach(async () => {
restoreStubs();
});
it('should emit update for tracked files', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`
import.meta.hot.accept(() => {});
`,
),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/foo.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('should bubble updates for changed dependencies', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`import '/bar.js'; import.meta.hot.accept(() => {}); export const a = 1;`,
),
mockFile('/bar.js', `export const b = 2;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
await fetch(`${host}/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/bar.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('should not reload if dependent handles change', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile('/foo.js', `import '/bar.js'; import.meta.hot.accept();`),
mockFile('/bar.js', `export const s = 808;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
await fetch(`${host}/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/bar.js'));
expect(stub.callCount).to.equal(1);
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('should reload if dependents do not handle change', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile('/foo.js', `import '/bar.js';`),
mockFile('/bar.js', `export const s = 808;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
await fetch(`${host}/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/bar.js'));
expect(stub.callCount).to.equal(1);
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:reload',
}),
);
} finally {
await server.stop();
}
});
it('handles dependencies referenced relatively', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/root/foo.js',
`import './bar.js'; import.meta.hot.accept(() => {}); export const a = 1;`,
),
mockFile('/root/bar.js', `export const b = 2;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/root/foo.js`);
await fetch(`${host}/root/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/root/bar.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/root/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('should bubble updates for changed dynamic import dependencies', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`import('/bar.js'); import.meta.hot.accept(() => {}); export const a = 1;`,
),
mockFile('/bar.js', `export const b = 2;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
await fetch(`${host}/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/bar.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('imports changed dependencies with a unique URL', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFiles({
'/a.js': "import '/b.js'; import '/c.js'; import.meta.hot.accept();",
'/b.js': '// nothing',
'/c.js': '// nothing',
}),
hmrPlugin(),
],
});
const { fileWatcher } = server;
try {
await fetchText(`${host}/a.js`);
await fetchText(`${host}/b.js`);
await fetchText(`${host}/c.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/b.js'));
const updatedA = await fetchText(`${host}/a.js?m=1234567890123`);
await fetchText(`${host}/b.js?m=1234567890123`);
expect(/import '\/b\.js\?m=\d{13}';/.test(updatedA)).to.equal(true);
expectIncludes(updatedA, "import '/c.js';");
} finally {
await server.stop();
}
});
it('imports deeply changed dependencies with a unique URL', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFiles({
'/a.js': "import '/b.js'; import.meta.hot.accept();",
'/b.js': "import '/c.js';",
'/c.js': '// nothing',
}),
hmrPlugin(),
],
});
const { fileWatcher } = server;
try {
await fetchText(`${host}/a.js`);
await fetchText(`${host}/b.js`);
await fetchText(`${host}/c.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/c.js'));
const updatedA = await fetchText(`${host}/a.js?m=1234567890123`);
const updatedB = await fetchText(`${host}/b.js?m=1234567890123`);
await fetchText(`${host}/c.js?m=1234567890123`);
expect(/import '\/b\.js\?m=\d{13}';/.test(updatedA)).to.equal(true);
expect(/import '\/c\.js\?m=\d{13}';/.test(updatedB)).to.equal(true);
} finally {
await server.stop();
}
});
it('multiple dependents will import deep dependency changes with a unique URL', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFiles({
'/a1.js': "import '/b.js'; import.meta.hot.accept(); // a1",
'/a2.js': "import '/b.js'; import.meta.hot.accept(); // a2",
'/b.js': "import '/c.js';",
'/c.js': '// nothing',
}),
hmrPlugin(),
],
});
const { fileWatcher } = server;
try {
await fetchText(`${host}/a1.js`);
await fetchText(`${host}/a2.js`);
await fetchText(`${host}/b.js`);
await fetchText(`${host}/c.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/c.js'));
const updatedA1 = await fetchText(`${host}/a1.js?m=1234567890123`);
const updatedA2 = await fetchText(`${host}/a2.js?m=1234567890123`);
await fetchText(`${host}/b.js?m=1234567890123`);
await fetchText(`${host}/c.js?m=1234567890123`);
expect(/import '\/b\.js\?m=\d{13}';/.test(updatedA1)).to.equal(true);
expect(/import '\/b\.js\?m=\d{13}';/.test(updatedA2)).to.equal(true);
} finally {
await server.stop();
}
});
it('does not get confused by dynamic imports with non string literals', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`import '/bar.js'; import.meta.hot.accept(() => {}); export const a = 1; import('./a' + '.js'); import(\`./b/\${x}.js\`);`,
),
mockFile('/bar.js', `export const b = 2;`),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
await fetch(`${host}/bar.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/bar.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:update',
url: '/foo.js',
}),
);
} finally {
await server.stop();
}
});
it('should emit reload for tracked files', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`
export const foo = 5;
`,
),
hmrPlugin(),
],
});
const { fileWatcher, webSockets } = server;
const stub = stubMethod(webSockets!, 'send');
try {
await fetch(`${host}/foo.js`);
fileWatcher.emit('change', pathUtil.join(__dirname, '/foo.js'));
expect(stub.firstCall!.args[0]).to.equal(
JSON.stringify({
type: 'hmr:reload',
}),
);
} finally {
await server.stop();
}
});
it('serves a hmr client', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [hmrPlugin()],
});
try {
const response = await fetch(`${host}${NAME_HMR_CLIENT_IMPORT}`);
const body = await response.text();
expect(body.includes('class HotModule')).to.equal(true);
} finally {
await server.stop();
}
});
it('transforms hmr-capable js files', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
mockFile(
'/foo.js',
`
import.meta.hot.accept(() => {});
`,
),
hmrPlugin(),
],
});
try {
const response = await fetch(`${host}/foo.js`);
const body = await response.text();
expect(body.includes('__WDS_HMR__')).to.equal(true);
} finally {
await server.stop();
}
});
it('does not transform non-hmr js files', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [mockFile('/foo.js', `export const foo = 5;`), hmrPlugin()],
});
try {
const response = await fetch(`${host}/foo.js`);
const body = await response.text();
expect(body.includes('__WDS_HMR__')).to.equal(false);
} finally {
await server.stop();
}
});
});
| modernweb-dev/web/packages/dev-server-hmr/test/HmrPlugin.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-hmr/test/HmrPlugin.test.ts",
"repo_id": "modernweb-dev",
"token_count": 5297
} | 188 |
<html>
<body>
<script type="module">
import { runTests } from '@web/test-runner-mocha';
import { expect } from '@esm-bundle/chai';
import { postData, __importMeta } from '../src/postData.js';
runTests(() => {
describe('sendMessage()', () => {
it('serves a mocked module', () => {
expect(new URL(__importMeta.url).pathname).to.equal(
'/packages/dev-server-import-maps/test-browser/src/postData.js',
);
});
});
});
</script>
</body>
</html>
| modernweb-dev/web/packages/dev-server-import-maps/test-browser/test/import-map-b.test.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-import-maps/test-browser/test/import-map-b.test.html",
"repo_id": "modernweb-dev",
"token_count": 263
} | 189 |
export const PARAM_TRANSFORM_SYSTEMJS = 'systemjs';
| modernweb-dev/web/packages/dev-server-legacy/src/constants.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-legacy/src/constants.ts",
"repo_id": "modernweb-dev",
"token_count": 18
} | 190 |
# @web/dev-server-rollup
## 0.6.1
### Patch Changes
- 1c0088de: Update Rollup to version 4.
## 0.6.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/dev-server-core@0.7.0
## 0.5.4
### Patch Changes
- 640ba85f: added types for main entry point
- Updated dependencies [640ba85f]
- @web/dev-server-core@0.6.2
## 0.5.3
### Patch Changes
- Updated dependencies [7f0f4315]
- @web/dev-server-core@0.6.0
## 0.5.2
### Patch Changes
- 6b359149: fix: await buildStart in serverStart
## 0.5.1
### Patch Changes
- 6ab3ee55: fix: ensure imports are resolved correctly in pages without extension
## 0.5.0
### Minor Changes
- febd9d9d: Set node 16 as the minimum version.
- b7d8ee66: Update mocha from version 8.2.0 to version 10.2.0
- 72c63bc5: Require Rollup@v3.x and update all Rollup related dependencies to latest.
### Patch Changes
- Updated dependencies [ca715faf]
- Updated dependencies [febd9d9d]
- @web/dev-server-core@0.5.0
## 0.4.1
### Patch Changes
- fa2c1779: Update @rollup/plugin-babel
- 1113fa09: Update `@rollup/pluginutils`
- 817d674b: Update `browserslist-useragent`
- bd12ff9b: Update `rollup/plugin-replace`
- 8128ca53: Update @rollup/plugin-replace
- Updated dependencies [c103f166]
- @web/dev-server-core@0.4.1
## 0.4.0
### Minor Changes
- acc0a84c: Expand support for Rollup plugins with child plugins, specifically the Node Resolve plugin.
### Patch Changes
- a2198172: fix rollup adapter resolution for virtual modules on Windows
- Updated dependencies [ac05ca5d]
- Updated dependencies [acc0a84c]
- Updated dependencies [81db401b]
- @web/dev-server-core@0.4.0
## 0.3.21
### Patch Changes
- bd06b8cd: revert change #2078
## 0.3.20
### Patch Changes
- ab27e502: fix rollup adapter virtual modules resolution for windows environments
## 0.3.19
### Patch Changes
- 00da4255: Update es-module-lexer to 1.0.0
- Updated dependencies [00da4255]
- @web/dev-server-core@0.3.19
## 0.3.18
### Patch Changes
- 78d610d1: Update Rollup, use moduleSideEffects flag
- Updated dependencies [39610b4c]
- @web/dev-server-core@0.3.18
## 0.3.17
### Patch Changes
- 7156b231: Fixed a bug causing packages with common root names to not resolve in monorepos as outside the root dir.
## 0.3.16
### Patch Changes
- e10b680d: Support node entry points (export map) containing stars.
## 0.3.15
### Patch Changes
- 156e0b66: Update rollup dependency to 2.66.1
## 0.3.14
### Patch Changes
- 73286ca6: Add missing exports to mjs entrypoints
## 0.3.13
### Patch Changes
- cbbd5fc8: Resolve missing peer dependency of @rollup/plugin-node-resolve by moving and exposing @rollup/plugin-node-resolve to @web/dev-server-rollup
## 0.3.12
### Patch Changes
- 2b226517: Update whatwg-url dependency to 10.0.0
- 8a1dfdc0: Update whatwg-url dependency to 11.0.0
## 0.3.11
### Patch Changes
- 96f656aa: Update Rollup to 2.58.0, use isEntry flag
## 0.3.10
### Patch Changes
- a09282b4: Replace chalk with nanocolors
- Updated dependencies [a09282b4]
- @web/dev-server-core@0.3.16
## 0.3.9
### Patch Changes
- 49dcb6bb: Update Rollup dependency to 2.56.2
## 0.3.8
### Patch Changes
- f5351987: Update dependency whatwg-url to v9
## 0.3.7
### Patch Changes
- 687d4750: Downgrade @rollup/plugin-node-resolve to v11
## 0.3.6
### Patch Changes
- 9c97ea53: update dependency @rollup/plugin-node-resolve to v13
## 0.3.5
### Patch Changes
- 6222d0b4: fix(dev-server): fixes #1536, correctly handle outside-root paths
## 0.3.4
### Patch Changes
- c41fba24: Support for subpath imports
👉 `my-pkg/package.json`
```json
{
"name": "my-pkg",
"imports": {
"#internal-a": "./path/to/internal-a.js"
}
}
```
👉 `my-pkg/src/file.js`
```js
import { private } from '#internal-a';
```
Subpath imports are not available to users of your package
👉 `other-pkg/src/file.js`
```js
// both will fail
import { private } from 'my-pkg#internal-a';
import { private } from 'my-pkg/path/to/internal-a.js';
```
## 0.3.3
### Patch Changes
- 0a05464b: do not resolve multiple times outside root files
## 0.3.2
### Patch Changes
- 5d36f239: allow resolving extensionless absolute file paths
## 0.3.1
### Patch Changes
- 375116ad: fix handling of paths resolved outside the root dir. we now correctly use the resolved path when resolving relative imports and when populating the transform cache
- 2f205878: handle null bytes in HTML
- Updated dependencies [375116ad]
- @web/dev-server-core@0.3.2
## 0.3.0
### Minor Changes
- 0f613e0e: handle modules resolved outside root dir
### Patch Changes
- Updated dependencies [0f613e0e]
- @web/dev-server-core@0.3.0
## 0.2.13
### Patch Changes
- 5ac055f: don't handle virtual files
## 0.2.12
### Patch Changes
- d6de058: don't throw on unresolved local imports
- 6950c7a: improve error message
## 0.2.11
### Patch Changes
- 4913db2: implement moduleParsed hook
- Updated dependencies [f0472df]
- @web/dev-server-core@0.2.17
## 0.2.10
### Patch Changes
- e2b93b6: Add error when a bare import cannot be resolved
## 0.2.9
### Patch Changes
- 6949d03: fix serving generated rollup chunks
## 0.2.8
### Patch Changes
- 3d6004b: added rollup bundle plugin
## 0.2.7
### Patch Changes
- b4c2fea: moved test runner dependencies to dev dependencies
## 0.2.6
### Patch Changes
- f22bd2f: add error messages
## 0.2.5
### Patch Changes
- e83ac30: also transform inline non-module scripts
- Updated dependencies [ee8c8d1]
- Updated dependencies [e3e6b22]
- @web/test-runner-core@0.7.6
## 0.2.4
### Patch Changes
- cd1213e: improved logging of resolving outside root dir
- Updated dependencies [cd1213e]
- @web/dev-server-core@0.2.6
- @web/test-runner-core@0.7.5
## 0.2.3
### Patch Changes
- ce2a2e6: align dependencies
- Updated dependencies [ce2a2e6]
- @web/test-runner-chrome@0.6.4
## 0.2.2
### Patch Changes
- e0ee85f: make sure absolute paths are always returned as-is
## 0.2.1
### Patch Changes
- aa65fd1: run build before publishing
- Updated dependencies [aa65fd1]
- @web/dev-server-core@0.2.1
- @web/test-runner-chrome@0.6.1
- @web/test-runner-core@0.7.1
## 0.2.0
### Minor Changes
- 9be1f95: Added native node es module entrypoints. This is a breaking change. Before, native node es module imports would import a CJS module as a default import and require destructuring afterwards:
```js
import playwrightModule from '@web/test-runner-playwright';
const { playwrightLauncher } = playwrightModule;
```
Now, the exports are only available directly as a named export:
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
```
### Patch Changes
- 62ff8b2: make tests work on windows
- Updated dependencies [96dd279]
- Updated dependencies [cdddf68]
- Updated dependencies [fdcf2e5]
- Updated dependencies [62ff8b2]
- Updated dependencies [9be1f95]
- @web/dev-server-core@0.2.0
- @web/test-runner-chrome@0.6.0
- @web/test-runner-core@0.7.0
## 0.1.9
### Patch Changes
- 8fb820b: add an easy way to change served mime types
- Updated dependencies [8fb820b]
- @web/dev-server-core@0.1.9
## 0.1.8
### Patch Changes
- c7c7cc9: fix(dev-server-rollup): add missing parse5 dependency
## 0.1.7
### Patch Changes
- fdbae14: only add root dir when necessary
## 0.1.6
### Patch Changes
- 556827f: add fromRollup function
- 9484e97: replace rollupAdapter with fromRollup
- 7741a51: don't skip absolute windows paths
## 0.1.5
### Patch Changes
- 6bc4381: handle windows paths in @web/dev-server-rolup
## 0.1.4
### Patch Changes
- 1c915d0: handle inline scripts
## 0.1.3
### Patch Changes
- f9dfcd3: improve rollup syntax error logging
- Updated dependencies [8596276]
- @web/dev-server-core@0.1.5
## 0.1.2
### Patch Changes
- afc3cc7: update dependencies
## 0.1.1
### Patch Changes
- 1580c82: add getModuleInfo stub
## 0.1.0
### Minor Changes
- c4cb321: Use web dev server in test runner. This contains multiple breaking changes:
- Browsers that don't support es modules are not supported for now. We will add this back later.
- Most es-dev-server config options are no longer available. The only options that are kept are `plugins`, `middleware`, `nodeResolve` and `preserveSymlinks`.
- Test runner config changes:
- Dev server options are not available on the root level of the configuration file.
- `nodeResolve` is no longer enabled by default. You can enable it with the `--node-resolve` flag or `nodeResolve` option.
- `middlewares` option is now called `middleware`.
- `testFrameworkImport` is now called `testFramework`.
- `address` is now split into `protocol` and `hostname`.
### Patch Changes
- Updated dependencies [c4cb321]
- @web/dev-server-core@0.1.0
## 0.0.2
### Patch Changes
- Updated dependencies [9302247]
- @web/dev-server-core@0.0.3
## 0.0.1
### Patch Changes
- c5da67f: first setup
- Updated dependencies [c5da67f]
- @web/dev-server-core@0.0.2
| modernweb-dev/web/packages/dev-server-rollup/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 3297
} | 191 |
<html>
<body>
<script type="module">
console.log("asd");
</script>
<script type="module">
console.log("bar");
</script>
</body>
</html>
| modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/basic/multiple-inline.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/basic/multiple-inline.html",
"repo_id": "modernweb-dev",
"token_count": 77
} | 192 |
// exports.__esModule = true;
const compiledEsmFoo = 'foo';
exports.compiledEsmFoo = compiledEsmFoo;
const compiledEsmBar = 'bar';
exports.compiledEsmBar = compiledEsmBar;
| modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/commonjs/modules/compiled-esm-named-exports.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/commonjs/modules/compiled-esm-named-exports.js",
"repo_id": "modernweb-dev",
"token_count": 65
} | 193 |
# @web/dev-server-storybook
## 2.0.1
### Patch Changes
- c796648c: fix: create a require for mdx stories
## 2.0.0
### Major Changes
- 1c0088de: Update Rollup to version 4.
### Patch Changes
- Updated dependencies [1c0088de]
- @web/rollup-plugin-polyfills-loader@2.1.1
- @web/rollup-plugin-html@2.1.2
## 1.1.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/rollup-plugin-polyfills-loader@2.1.0
- @web/rollup-plugin-html@2.1.0
- @web/dev-server-core@0.7.0
## 1.0.8
### Patch Changes
- 640ba85f: added types for main entry point
- Updated dependencies [640ba85f]
- @web/dev-server-core@0.6.2
## 1.0.7
### Patch Changes
- Updated dependencies [7f0f4315]
- @web/dev-server-core@0.6.0
## 1.0.6
### Patch Changes
- 7ae27f3c: fix: storybook import for windows
## 1.0.5
### Patch Changes
- e1fc9961: Fix mdx imports once more
## 1.0.4
### Patch Changes
- 4d67523f: Make sure to publish `@web/dev-server-storybook`
## 1.0.3
### Patch Changes
- f6ba53f0: Fix `build-storybook` bin
- Updated dependencies [f6ba53f0]
- @web/rollup-plugin-polyfills-loader@2.0.1
- @web/rollup-plugin-html@2.0.1
## 1.0.2
### Patch Changes
- 7102860c: Fixes the entrypoint of the package.
## 1.0.1
### Patch Changes
- 4841ad58: Fix output format of package.
## 1.0.0
### Major Changes
- 68d596ed: This packages is now a ES Module by default.
## 0.7.4
### Patch Changes
- f2362bbf: Trigger pipeline
## 0.7.3
### Patch Changes
- e9c77e06: Version Packages
## 0.7.2
### Patch Changes
- 85647c10: Update `lit-html`
- 5acaf838: Update `@typescript-eslint/parser`
- ab4720fa: fix: terser import
## 0.7.1
### Patch Changes
- dc1d5e84: Fix console logging due to source mapping issues.
- 1109ec37: Replace `rollup-plugin-terser` with `@rollup/plugin-terser`
## 0.7.0
### Minor Changes
- febd9d9d: Set node 16 as the minimum version.
- 72c63bc5: Require Rollup@v3.x and update all Rollup related dependencies to latest.
### Patch Changes
- Updated dependencies [ca715faf]
- Updated dependencies [febd9d9d]
- Updated dependencies [72c63bc5]
- @web/dev-server-core@0.5.0
- @web/rollup-plugin-html@2.0.0
- @web/rollup-plugin-polyfills-loader@2.0.0
## 0.6.2
### Patch Changes
- fa2c1779: Update @rollup/plugin-babel
- 8128ca53: Update @rollup/plugin-replace
- Updated dependencies [c103f166]
- Updated dependencies [18a16bb0]
- @web/dev-server-core@0.4.1
- @web/rollup-plugin-html@1.11.1
## 0.6.1
### Patch Changes
- Updated dependencies [ac05ca5d]
- Updated dependencies [acc0a84c]
- Updated dependencies [81db401b]
- @web/dev-server-core@0.4.0
## 0.6.0
### Minor Changes
- f7fe8eee: Load CommonJS configuration file if one exists
## 0.5.4
### Patch Changes
- 93b36337: Keep "Default" stories when building Storybook instance
## 0.5.3
### Patch Changes
- 53f74172: fix es-module-lexer logic
## 0.5.2
### Patch Changes
- 00da4255: Update es-module-lexer to 1.0.0
- Updated dependencies [00da4255]
- @web/dev-server-core@0.3.19
## 0.5.1
### Patch Changes
- 5ca835a2: Error message typo fixed in readStorybookConfig
## 0.5.0
### Minor Changes
- 11074fee: Allow custom logic for finding stories
## 0.4.3
### Patch Changes
- 35fe49d8: Use latest "storybook-addon-markdown-docs"
## 0.4.2
### Patch Changes
- 156e0b66: Update rollup dependency to 2.66.1
## 0.4.1
### Patch Changes
- 6ff9cebc: Fix MDX docs rendering by using Storybook compiler and converting more imports to @web/storybook-prebuilt
## 0.4.0
### Minor Changes
- 0357acf3: Update @web/storybook-prebuilt version
## 0.3.8
### Patch Changes
- e564c039: Use latest upstream dependencies
- 49d26637: Use the latest Storybook Prebuilt which uses the latest Storybook which allows for the use of pre and post `lit@2.0` versions of the Lit libraries.
## 0.3.7
### Patch Changes
- 687d4750: Downgrade @rollup/plugin-node-resolve to v11
## 0.3.6
### Patch Changes
- 9c97ea53: update dependency @rollup/plugin-node-resolve to v13
## 0.3.5
### Patch Changes
- d75676de: normalize paths received from globby
## 0.3.4
### Patch Changes
- f66aaa80: fix checking path on windows
## 0.3.3
### Patch Changes
- a8e5eb8e: configure stories after async setup, this makes some code blocks work on first load
- d5a433a9: fix styling of docs page
## 0.3.2
### Patch Changes
- 74315dbd: only reload preview in watch mode
## 0.3.1
### Patch Changes
- b51ab105: throw when trying to load official storybook addons
## 0.3.0
### Minor Changes
- 36f6ab39: update to node-resolve v11
### Patch Changes
- Updated dependencies [0f613e0e]
- @web/dev-server-core@0.3.0
## 0.2.0
### Minor Changes
- 9df3a31: support MDJS stories
## 0.1.3
### Patch Changes
- d56c172: add missing dependencies for build
- Updated dependencies [2006211]
- @web/rollup-plugin-polyfills-loader@1.0.3
## 0.1.2
### Patch Changes
- d955e42: include manager.js file
## 0.1.1
### Patch Changes
- cba758e: feat(dev-server-storybook): throw when no config is given
- c46774c: add support for manager/preview head/body partials
## 0.1.0
### Minor Changes
- 3d9bb3d: add support for MDX
### Patch Changes
- 1a211af: add build command
## 0.0.2
### Patch Changes
- 80edd17: fix loading multiple stories
- Updated dependencies [835d16f]
- @web/dev-server-core@0.2.14
## 0.0.1
### Patch Changes
- 2cdc3b1: first implementation
| modernweb-dev/web/packages/dev-server-storybook/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 2098
} | 194 |
import { Button } from '../src/Button.js';
export default {
title: 'Example/Button',
argTypes: {
backgroundColor: { control: 'color' },
onClick: { action: 'onClick' },
},
};
const Template = args => Button(args);
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Button',
};
export const Secondary = Template.bind({});
Secondary.args = {
label: 'Button',
};
export const Large = Template.bind({});
Large.args = {
size: 'large',
label: 'Button',
};
export const Small = Template.bind({});
Small.args = {
size: 'small',
label: 'Button',
};
| modernweb-dev/web/packages/dev-server-storybook/demo/wc/stories/Button.stories.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/demo/wc/stories/Button.stories.js",
"repo_id": "modernweb-dev",
"token_count": 204
} | 195 |
import { StorybookPluginConfig } from '../config/StorybookPluginConfig.js';
import { createError } from '../utils.js';
const types = ['preact', 'web-components'];
export function validatePluginConfig(pluginConfig: StorybookPluginConfig) {
if (!pluginConfig) {
throw createError('Missing plugin configuration.');
}
if (typeof pluginConfig.type !== 'string') {
throw createError('Missing project type in config.');
}
if (!types.includes(pluginConfig.type)) {
throw createError(`Invalid project type ${pluginConfig.type}, supported types: ${types}`);
}
}
| modernweb-dev/web/packages/dev-server-storybook/src/shared/config/validatePluginConfig.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/src/shared/config/validatePluginConfig.ts",
"repo_id": "modernweb-dev",
"token_count": 169
} | 196 |
import { fileURLToPath } from 'url';
import { resolve } from 'path';
export default {
rootDir: resolve(fileURLToPath(import.meta.url), '..', '..', '..'),
appIndex: '/demo/export-conditions/index.html',
nodeResolve: {
exportConditions: ['default']
},
};
| modernweb-dev/web/packages/dev-server/demo/export-conditions/config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/demo/export-conditions/config.mjs",
"repo_id": "modernweb-dev",
"token_count": 94
} | 197 |
<html>
<body>
<img width="100" src="../logo.png" />
<h1>Node resolve demo</h1>
<p>A demo which resolves bare module imports</p>
<div id="test"></div>
<script type="module">
// inline bare modules are resolved
import { render, html } from 'lit-html';
window.__inlineNodeResolve = !!render && !!html;
</script>
<script type="module">
import './module.js';
// can import without .js extension
import './no-extension';
// .mjs takes priority over .js
import './extension-priority';
window.__tests = {
inlineNodeResolve: window.__inlineNodeResolve || false,
nodeResolve: window.__nodeResolve || false,
noExtension: window.__noExtension || false,
extensionPriority: window.__extensionPriority || false,
// lit-html only adds this global in development mode
developmentExportCondition: window.litIssuedWarnings || false,
};
document.getElementById('test').innerHTML = `<pre>${JSON.stringify(
window.__tests,
null,
2,
)}</pre>`;
</script>
</body>
</html>
| modernweb-dev/web/packages/dev-server/demo/node-resolve/index.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/demo/node-resolve/index.html",
"repo_id": "modernweb-dev",
"token_count": 455
} | 198 |
class PrivateClassFields {
#foo = 'bar';
#bar() {
return this.#foo;
}
bar() {
return this.#bar();
}
}
| modernweb-dev/web/packages/dev-server/demo/syntax/stage-3-private-class-fields.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/demo/syntax/stage-3-private-class-fields.js",
"repo_id": "modernweb-dev",
"token_count": 52
} | 199 |
import openBrowserWindow from 'open';
import path from 'path';
import { DevServerConfig } from './config/DevServerConfig.js';
function isValidURL(str: string) {
try {
return !!new URL(str);
} catch (error) {
return false;
}
}
function getBasePath(basePath?: string) {
if (!basePath) {
return '';
}
if (basePath.endsWith('/')) {
return basePath.substring(0, basePath.length - 1);
}
return basePath;
}
export async function openBrowser(config: DevServerConfig) {
const basePath = getBasePath(config.basePath);
let openPath: string;
if (typeof config.open === 'string') {
// user-provided open path
openPath = (config.open as string) === '' ? '/' : config.open;
} else if (config.appIndex) {
const resolvedAppIndex = path.resolve(config.appIndex);
const relativeAppIndex = path.relative(config.rootDir, resolvedAppIndex);
const appIndexBrowserPath = `/${relativeAppIndex.split(path.sep).join('/')}`;
const appIndexDir = path.dirname(appIndexBrowserPath);
// if an appIndex was provided, use it's directory as open path
openPath = `${basePath}${appIndexDir.endsWith('/') ? appIndexDir : `${appIndexDir}/`}`;
} else {
openPath = `${basePath}/`;
}
if (!isValidURL(openPath)) {
// construct a full URL to open if the user didn't provide a full URL
openPath = new URL(
openPath,
`http${config.http2 ? 's' : ''}://${config.hostname}:${config.port}`,
).href;
}
await openBrowserWindow(openPath);
}
| modernweb-dev/web/packages/dev-server/src/openBrowser.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/src/openBrowser.ts",
"repo_id": "modernweb-dev",
"token_count": 532
} | 200 |
import { setupServer } from 'msw/node';
import { _registerMockRoutes } from './registerMockRoutes.js';
export const server = setupServer();
server.listen();
/**
* Mock the given mocked routes using a Service Worker.
*
* @param {import('./types.js').Mock[]} mocks
*/
export function registerMockRoutes(...mocks) {
_registerMockRoutes(server, false, ...mocks);
}
| modernweb-dev/web/packages/mocks/node.js/0 | {
"file_path": "modernweb-dev/web/packages/mocks/node.js",
"repo_id": "modernweb-dev",
"token_count": 125
} | 201 |
import { createRequire } from 'node:module';
import { readFileSync } from 'node:fs';
const require = createRequire(import.meta.url);
export function mockPlugin() {
return {
name: 'wds-plugin-msw',
/**
* @param {import('koa').Context} context
*/
serve(context) {
if (context.request.url === '/__msw_sw__.js') {
const serviceWorkerPath = require.resolve('msw/mockServiceWorker.js');
return readFileSync(serviceWorkerPath, 'utf8');
}
},
};
}
| modernweb-dev/web/packages/mocks/wds-plugin.js/0 | {
"file_path": "modernweb-dev/web/packages/mocks/wds-plugin.js",
"repo_id": "modernweb-dev",
"token_count": 199
} | 202 |
export { createPolyfillsData } from './createPolyfillsData.js';
export { createPolyfillsLoader } from './createPolyfillsLoader.js';
export { injectPolyfillsLoader } from './injectPolyfillsLoader.js';
export { hasFileOfType, fileTypes, getScriptFileType } from './utils.js';
export {
PolyfillsLoaderConfig,
PolyfillsConfig,
PolyfillConfig,
ModernEntrypoint,
LegacyEntrypoint,
FileType,
File,
GeneratedFile,
PolyfillFile,
PolyfillsLoader,
} from './types.js';
| modernweb-dev/web/packages/polyfills-loader/src/index.ts/0 | {
"file_path": "modernweb-dev/web/packages/polyfills-loader/src/index.ts",
"repo_id": "modernweb-dev",
"token_count": 157
} | 203 |
console.log('shared.js');
| modernweb-dev/web/packages/rollup-plugin-html/demo/mpa/pages/shared.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/demo/mpa/pages/shared.js",
"repo_id": "modernweb-dev",
"token_count": 9
} | 204 |
import { InputOptions } from 'rollup';
import { ScriptModuleTag } from '../RollupPluginHTMLOptions.js';
import { createError } from '../utils.js';
function fromEntries<V>(entries: [string, V][]) {
const obj: Record<string, V> = {};
for (const [k, v] of entries) {
obj[k] = v;
}
return obj;
}
export function addRollupInput(
inputOptions: InputOptions,
inputModuleIds: ScriptModuleTag[],
): InputOptions {
// Add input module ids to existing input option, whether it's a string, array or object
// this way you can use multiple html plugins all adding their own inputs
if (!inputOptions.input) {
return { ...inputOptions, input: inputModuleIds.map(mod => mod.importPath) };
}
if (typeof inputOptions.input === 'string') {
return {
...inputOptions,
input: [
...(inputOptions?.input?.endsWith('.html') ? [] : [inputOptions.input]),
...inputModuleIds.map(mod => mod.importPath),
],
};
}
if (Array.isArray(inputOptions.input)) {
return {
...inputOptions,
input: [...inputOptions.input, ...inputModuleIds.map(mod => mod.importPath)],
};
}
if (typeof inputOptions.input === 'object') {
return {
...inputOptions,
input: {
...inputOptions.input,
...fromEntries(
inputModuleIds
.map(mod => mod.importPath)
.map(i => [i.split('/').slice(-1)[0].split('.')[0], i]),
),
},
};
}
throw createError(`Unknown rollup input type. Supported inputs are string, array and object.`);
}
| modernweb-dev/web/packages/rollup-plugin-html/src/input/addRollupInput.ts/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/src/input/addRollupInput.ts",
"repo_id": "modernweb-dev",
"token_count": 593
} | 205 |
import { Plugin } from 'rollup';
import path from 'path';
import { addRollupInput } from './input/addRollupInput.js';
import { getInputData } from './input/getInputData.js';
import { InputData } from './input/InputData.js';
import { createHTMLOutput } from './output/createHTMLOutput.js';
import {
GeneratedBundle,
RollupPluginHTMLOptions,
ScriptModuleTag,
TransformHtmlFunction,
} from './RollupPluginHTMLOptions.js';
import { createError, NOOP_IMPORT } from './utils.js';
import { emitAssets } from './output/emitAssets.js';
export interface RollupPluginHtml extends Plugin {
api: {
getInputs(): InputData[];
addHtmlTransformer(transformHtmlFunction: TransformHtmlFunction): void;
disableDefaultInject(): void;
addOutput(name: string): Plugin;
};
}
export function rollupPluginHTML(pluginOptions: RollupPluginHTMLOptions = {}): RollupPluginHtml {
const multiOutputNames: string[] = [];
let inputs: InputData[] = [];
let generatedBundles: GeneratedBundle[] = [];
let externalTransformHtmlFns: TransformHtmlFunction[] = [];
let defaultInjectDisabled = false;
let serviceWorkerPath = '';
let injectServiceWorker = false;
let absolutePathPrefix: string;
let strictCSPInlineScripts = false;
function reset() {
inputs = [];
generatedBundles = [];
externalTransformHtmlFns = [];
}
return {
name: '@web/rollup-plugin-html',
options(inputOptions) {
reset();
inputs = getInputData(pluginOptions, inputOptions.input);
const moduleImports: ScriptModuleTag[] = [];
for (const input of inputs) {
moduleImports.push(...input.moduleImports);
}
if (moduleImports.length === 0) {
// if there are only pages with pure HTML we need to make sure there is at
// least some input for rollup
moduleImports.push(NOOP_IMPORT);
}
if (pluginOptions.serviceWorkerPath) {
serviceWorkerPath = pluginOptions.serviceWorkerPath;
}
if (pluginOptions.injectServiceWorker) {
injectServiceWorker = pluginOptions.injectServiceWorker;
}
if (pluginOptions.absolutePathPrefix) {
absolutePathPrefix = pluginOptions.absolutePathPrefix;
}
if (pluginOptions.strictCSPInlineScripts) {
strictCSPInlineScripts = pluginOptions.strictCSPInlineScripts;
}
pluginOptions.bundleAssetsFromCss = !!pluginOptions.bundleAssetsFromCss;
if (pluginOptions.input == null) {
// we are reading rollup input, so replace whatever was there
return { ...inputOptions, input: moduleImports.map(mod => mod.importPath) };
} else {
// we need to add modules to existing rollup input
return addRollupInput(inputOptions, moduleImports);
}
},
/** Watch input files when running in watch mode */
buildStart() {
// watch filesf
for (const input of inputs) {
if (input.filePath) {
this.addWatchFile(input.filePath);
}
for (const asset of input.assets) {
this.addWatchFile(asset.filePath);
}
}
},
/** Notifies rollup that we will be handling these modules */
resolveId(id) {
if (id === NOOP_IMPORT.importPath) {
return NOOP_IMPORT.importPath;
}
for (const input of inputs) {
if (input.inlineModules.find(mod => mod.importPath === id)) {
return id;
}
}
},
/** Provide code for modules we are handling */
load(id) {
if (id === NOOP_IMPORT.importPath) {
return 'export default "noop"';
}
for (const input of inputs) {
const foundMod = input.inlineModules.find(mod => mod.importPath === id);
if (foundMod) {
return foundMod.code;
}
}
},
/**
* Emits output html file if we are doing a single output build.
* @param {OutputOptions} options
* @param {OutputBundle} bundle
*/
async generateBundle(options, bundle) {
if (multiOutputNames.length !== 0) {
// we are generating multiple build outputs, which is handled by child plugins
return;
}
if (!options.dir) {
throw createError('Rollup output options must have a dir option set to emit an HTML file.');
}
generatedBundles.push({ name: 'default', options, bundle });
const emittedAssets = await emitAssets.call(this, inputs, pluginOptions);
const outputs = await createHTMLOutput({
outputDir: path.resolve(options.dir),
inputs,
emittedAssets,
generatedBundles,
externalTransformHtmlFns,
pluginOptions,
defaultInjectDisabled,
serviceWorkerPath,
injectServiceWorker,
absolutePathPrefix,
strictCSPInlineScripts,
});
for (const output of outputs) {
this.emitFile(output);
}
},
api: {
getInputs() {
return inputs;
},
addHtmlTransformer(transformHtmlFunction: TransformHtmlFunction) {
externalTransformHtmlFns.push(transformHtmlFunction);
},
disableDefaultInject() {
defaultInjectDisabled = true;
},
addOutput(name: string) {
if (!name || multiOutputNames.includes(name)) {
throw createError('Each output must have a unique name');
}
multiOutputNames.push(name);
return {
name: `@web/rollup-plugin-html-multi-output-${multiOutputNames.length}`,
async generateBundle(options, bundle) {
if (!options.dir) {
throw createError(`Output ${name} must have a dir option set.`);
}
generatedBundles.push({ name, options, bundle });
if (generatedBundles.length === multiOutputNames.length) {
// this is the last build, emit the HTML files
const outputDirs = new Set(generatedBundles.map(b => b.options.dir));
if (outputDirs.size !== 1) {
throw createError(
'Unable to emit HTML output. Multiple rollup build outputs have a different output directory set.',
);
}
const emittedAssets = await emitAssets.call(this, inputs, pluginOptions);
const outputs = await createHTMLOutput({
outputDir: path.resolve(options.dir),
inputs,
emittedAssets,
generatedBundles,
externalTransformHtmlFns,
pluginOptions,
defaultInjectDisabled,
serviceWorkerPath,
injectServiceWorker,
absolutePathPrefix,
strictCSPInlineScripts,
});
for (const output of outputs) {
this.emitFile(output);
}
}
},
} as Plugin;
},
},
};
}
| modernweb-dev/web/packages/rollup-plugin-html/src/rollupPluginHTML.ts/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/src/rollupPluginHTML.ts",
"repo_id": "modernweb-dev",
"token_count": 2863
} | 206 |
<blink>I'm a partial!</blink>
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/exclude/assets/partial.html/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/exclude/assets/partial.html",
"repo_id": "modernweb-dev",
"token_count": 14
} | 207 |
export default 'page c';
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/pages/page-c.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/pages/page-c.js",
"repo_id": "modernweb-dev",
"token_count": 7
} | 208 |
# Rollup Plugin import-meta-assets
Rollup plugin that detects assets references relative to modules using patterns such as `new URL('./assets/my-img.png', import.meta.url)`.
The referenced assets are added to the rollup pipeline, allowing them to be transformed and hash the filenames.
## How it works
A common pattern is to import an asset to get the URL of it after bundling:
```js
import myImg from './assets/my-img.png';
```
This doesn't work in the browser without transformation. This plugin makes it possible to use an identical pattern using `import.meta.url` which does work in the browser:
```js
const myImg = new URL('./assets/my-img.png', import.meta.url);
```
### Dynamic variables
You can also use dynamic variables like so:
```js
const myImg = new URL(`./assets/${myImg}.png`, import.meta.url);
```
Please consult the [dynamic-import-vars plugin](https://github.com/rollup/plugins/blob/master/packages/dynamic-import-vars) documentation for options and limitations.
## Install
Using npm:
```
npm install @web/rollup-plugin-import-meta-assets --save-dev
```
## Usage
Create a rollup.config.js [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:
```js
import { importMetaAssets } from '@web/rollup-plugin-import-meta-assets';
export default {
input: 'src/index.js',
output: {
dir: 'output',
format: 'es',
},
plugins: [importMetaAssets()],
};
```
Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).
## Documentation
See [our website](https://modern-web.dev/docs/building/rollup-plugin-import-meta-assets/) for full documentation.
| modernweb-dev/web/packages/rollup-plugin-import-meta-assets/README.md/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-import-meta-assets/README.md",
"repo_id": "modernweb-dev",
"token_count": 552
} | 209 |
const justUrlObject = new URL(new URL('assets/one-ZInu4dBJ.svg', import.meta.url).href, import.meta.url);
const href = new URL(new URL('assets/two--yckvrYd.svg', import.meta.url).href, import.meta.url).href;
const pathname = new URL(new URL('assets/three-CDdgprDC.svg', import.meta.url).href, import.meta.url).pathname;
const searchParams = new URL(new URL('assets/four-lJVunLww.svg', import.meta.url).href, import.meta.url).searchParams;
const directories = [
new URL('./', import.meta.url),
new URL('./one', import.meta.url),
new URL('./one/', import.meta.url),
new URL('./one/two', import.meta.url),
new URL('./one/two/', import.meta.url),
];
console.log({
justUrlObject,
href,
pathname,
searchParams,
directories,
});
| modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/snapshots/directories-ignored.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/snapshots/directories-ignored.js",
"repo_id": "modernweb-dev",
"token_count": 284
} | 210 |
import './shared.js';
console.log('entrypoint-b.js');
| modernweb-dev/web/packages/rollup-plugin-polyfills-loader/test/fixtures/entrypoint-b.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-polyfills-loader/test/fixtures/entrypoint-b.js",
"repo_id": "modernweb-dev",
"token_count": 20
} | 211 |
import { expect } from 'chai';
import { createPolyfillsLoaderConfig } from '../../src/createPolyfillsLoaderConfig.js';
describe('createPolyfillsLoaderConfig()', () => {
it('creates a config for a single module build', () => {
const pluginConfig = {};
const bundle = {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, bundle);
expect(config).to.eql({
legacy: undefined,
modern: { files: [{ path: 'app.js', type: 'module', attributes: [] }] },
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('creates a config for multiple entrypoints', () => {
const pluginConfig = {};
const bundle = {
options: { format: 'es' },
entrypoints: [
{ importPath: 'app-1.js', attributes: [] },
{ importPath: 'app-2.js', attributes: [] },
],
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, bundle);
expect(config).to.eql({
legacy: undefined,
modern: {
files: [
{ path: 'app-1.js', type: 'module', attributes: [] },
{ path: 'app-2.js', type: 'module', attributes: [] },
],
},
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('creates a config for a single systemjs build', () => {
const pluginConfig = {};
const bundle = {
options: { format: 'system' },
entrypoints: [
// @ts-ignore
{ importPath: 'app.js', attributes: [] },
],
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, bundle);
expect(config).to.eql({
legacy: undefined,
modern: { files: [{ path: 'app.js', type: 'systemjs', attributes: [] }] },
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('creates a config for 2 build outputs', () => {
const pluginConfig = {
modernOutput: { name: 'modern' },
legacyOutput: { name: 'legacy', test: "!('noModule' in HTMScriptElement.prototype)" },
};
const bundles = {
modern: {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
},
legacy: {
options: { format: 'system' },
entrypoints: [{ importPath: 'legacy/app.js', attributes: [] }],
},
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, undefined, bundles);
expect(config).to.eql({
modern: { files: [{ path: 'app.js', type: 'module', attributes: [] }] },
legacy: [
{
files: [{ path: 'legacy/app.js', type: 'systemjs', attributes: [] }],
test: "!('noModule' in HTMScriptElement.prototype)",
},
],
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('creates a config for 3 build outputs', () => {
const pluginConfig = {
modernOutput: { name: 'modern' },
legacyOutput: [
{ name: 'super-legacy', test: 'window.bar' },
{ name: 'legacy', test: 'window.foo' },
],
};
const bundles = {
modern: {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
},
legacy: {
options: { format: 'system' },
entrypoints: [{ importPath: 'legacy/app.js', attributes: [] }],
},
'super-legacy': {
options: { format: 'system' },
entrypoints: [{ importPath: 'super-legacy/app.js', attributes: [] }],
},
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, undefined, bundles);
expect(config).to.eql({
modern: { files: [{ path: 'app.js', type: 'module', attributes: [] }] },
legacy: [
{
files: [{ path: 'super-legacy/app.js', type: 'systemjs', attributes: [] }],
test: 'window.bar',
},
{
files: [{ path: 'legacy/app.js', type: 'systemjs', attributes: [] }],
test: 'window.foo',
},
],
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('creates set the file type', () => {
const pluginConfig = {
modernOutput: { name: 'modern', type: 'script' },
legacyOutput: {
name: 'legacy',
type: 'script',
test: "!('noModule' in HTMScriptElement.prototype)",
},
};
const bundles = {
modern: {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
},
legacy: {
options: { format: 'system' },
entrypoints: [{ importPath: 'legacy/app.js', attributes: [] }],
},
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, undefined, bundles);
expect(config).to.eql({
modern: { files: [{ path: 'app.js', type: 'script', attributes: [] }] },
legacy: [
{
files: [{ path: 'legacy/app.js', type: 'script', attributes: [] }],
test: "!('noModule' in HTMScriptElement.prototype)",
},
],
polyfills: undefined,
externalLoaderScript: undefined,
});
});
it('can set polyfills to load', () => {
const pluginConfig = {
polyfills: { fetch: true, webcomponents: true },
};
const bundle = {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
};
// @ts-ignore
const config = createPolyfillsLoaderConfig(pluginConfig, bundle);
expect(config).to.eql({
legacy: undefined,
modern: { files: [{ path: 'app.js', type: 'module', attributes: [] }] },
polyfills: { fetch: true, webcomponents: true },
externalLoaderScript: undefined,
});
});
it('throws when a single build is output while multiple builds are configured', () => {
const pluginConfig = {
modernOutput: 'modern',
legacyOutput: 'legacy',
};
const bundle = {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
};
// @ts-ignore
const action = () => createPolyfillsLoaderConfig(pluginConfig, bundle);
expect(action).to.throw();
});
it('throws when a multiple builds are output while no builds are configured', () => {
const pluginConfig = {};
const bundles = {
modern: {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
},
legacy: {
options: { format: 'system' },
entrypoints: [{ importPath: 'legacy/app.js', attributes: [] }],
},
};
// @ts-ignore
const action = () => createPolyfillsLoaderConfig(pluginConfig, undefined, bundles);
expect(action).to.throw();
});
it('throws when the modern build could not be found', () => {
const pluginConfig = {
modernOutput: 'not-modern',
legacyOutput: { name: 'legacy', test: 'window.foo' },
};
const bundles = {
modern: {
options: { format: 'es' },
entrypoints: [{ importPath: 'app.js', attributes: [] }],
},
legacy: {
options: { format: 'system' },
entrypoints: [{ importPath: 'legacy/app.js', attributes: [] }],
},
};
// @ts-ignore
const action = () => createPolyfillsLoaderConfig(pluginConfig, undefined, bundles);
expect(action).to.throw();
});
});
| modernweb-dev/web/packages/rollup-plugin-polyfills-loader/test/src/createPolyfillsLoaderConfig.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-polyfills-loader/test/src/createPolyfillsLoaderConfig.test.ts",
"repo_id": "modernweb-dev",
"token_count": 3049
} | 212 |
# @web/storybook-builder
## 0.1.10
### Patch Changes
- 1ef0c676: support @storybook/addon-a11y
## 0.1.9
### Patch Changes
- f29dbce3: bundle preview assets
## 0.1.8
### Patch Changes
- 331e6215: fix tocbot default import by @storybook/blocks
## 0.1.7
### Patch Changes
- cbcc56f2: fix tocbot exports for addon-docs
- 5a428555: prebundle required CommonJS modules for addon-docs
- 916da5f0: resolve @storybook/react-dom-shim for addon-docs
## 0.1.6
### Patch Changes
- 010eed69: fix: import both globals and globalsNameReferenceMap from @storybook/preview/globals and use the one that is set. This fixes issue https://github.com/modernweb-dev/web/issues/2619
## 0.1.5
### Patch Changes
- 1c0088de: Update Rollup to version 4.
- Updated dependencies [1c0088de]
- @web/rollup-plugin-html@2.1.2
- @web/dev-server-rollup@0.6.1
## 0.1.4
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/rollup-plugin-html@2.1.0
- @web/dev-server-rollup@0.6.0
- @web/dev-server-core@0.7.0
- @web/dev-server@0.4.0
## 0.1.3
### Patch Changes
- afe4df6c: improve prebundling to target only really necessary packages
## 0.1.2
### Patch Changes
- 95715f9b: Pass Storybook server into middleware mode to enable live refresh
- Updated dependencies [95715f9b]
- @web/dev-server-core@0.6.1
## 0.1.1
### Patch Changes
- Updated dependencies [7f0f4315]
- @web/dev-server-core@0.6.0
- @web/dev-server@0.3.4
- @web/dev-server-rollup@0.5.3
## 0.1.0
### Minor Changes
- 659ed7e2: initial release of @web/storybook-builder
| modernweb-dev/web/packages/storybook-builder/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/storybook-builder/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 621
} | 213 |
import type { Options } from '@storybook/types';
import type { Plugin } from 'rollup';
import { generateAppScript } from './generate-app-script.js';
import { generateSetupAddonsScript } from './generate-setup-addons-script.js';
import { generateStoriesScript } from './generate-stories-script.js';
import { injectExportsOrder } from './inject-exports-order.js';
import { listStories } from './list-stories.js';
import {
virtualAppFilename,
virtualSetupAddonsFilename,
virtualStoriesFilename,
} from './virtual-file-names.js';
export function rollupPluginStorybookBuilder(storybookOptions: Options): Plugin {
let storyFilePaths: string[];
return {
name: 'rollup-plugin-storybook-builder',
async buildStart() {
storyFilePaths = await listStories(storybookOptions);
},
async resolveId(source) {
if (source === virtualAppFilename) {
return './' + source;
}
if (source === virtualSetupAddonsFilename) {
return './' + source;
}
if (source === virtualStoriesFilename) {
return './' + source;
}
},
async load(id) {
if (id.endsWith(virtualAppFilename)) {
return generateAppScript(storybookOptions);
}
if (id.endsWith(virtualSetupAddonsFilename)) {
return generateSetupAddonsScript();
}
if (id.endsWith(virtualStoriesFilename)) {
return generateStoriesScript(storybookOptions);
}
},
async transform(code, id) {
if (storyFilePaths.includes(id)) {
// inject story order
return injectExportsOrder(code, id);
}
},
};
}
| modernweb-dev/web/packages/storybook-builder/src/rollup-plugin-storybook-builder.ts/0 | {
"file_path": "modernweb-dev/web/packages/storybook-builder/src/rollup-plugin-storybook-builder.ts",
"repo_id": "modernweb-dev",
"token_count": 596
} | 214 |
export * from './types.js';
| modernweb-dev/web/packages/storybook-framework-web-components/src/index.ts/0 | {
"file_path": "modernweb-dev/web/packages/storybook-framework-web-components/src/index.ts",
"repo_id": "modernweb-dev",
"token_count": 10
} | 215 |
# @web/test-runner-browserstack
## 0.7.1
### Patch Changes
- e657791f: Vulnerability fix in `ip` package.
For more info, see:
- https://github.com/advisories/GHSA-78xj-cgh5-2h22
- https://github.com/indutny/node-ip/issues/136#issuecomment-1952083593
## 0.7.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/test-runner-webdriver@0.8.0
## 0.6.2
### Patch Changes
- 640ba85f: added types for main entry point
- Updated dependencies [640ba85f]
- @web/test-runner-webdriver@0.7.1
## 0.6.1
### Patch Changes
- Updated dependencies [812400a3]
- @web/test-runner-webdriver@0.7.0
## 0.6.0
### Minor Changes
- febd9d9d: Set node 16 as the minimum version.
### Patch Changes
- Updated dependencies [febd9d9d]
- @web/test-runner-webdriver@0.6.0
## 0.5.1
### Patch Changes
- b25d3fd3: Update `@web/test-runner-webdriver` dependency to `^0.5.1`.
## 0.5.0
### Minor Changes
- 9a2580a8: Migrates `BrowserstackLauncher` to extend from `WebdriverLauncher` instead of `SeleniumLauncher`. This allows the visual regression plugin to work with said launcher.
## 0.4.4
### Patch Changes
- 1066c0b1: Update selenium-webdriver dependency to 4.0.0
- Updated dependencies [1066c0b1]
- @web/test-runner-selenium@0.5.3
## 0.4.3
### Patch Changes
- d4f92e25: Replace uuid dependency with nanoid
## 0.4.2
### Patch Changes
- 8861ded8: feat(dev-server-core): share websocket instances with iframe parent
## 0.4.1
### Patch Changes
- 967f12d9: Fix intermittent testsStartTimeout on Safari on Sauce
## 0.4.0
### Minor Changes
- a7d74fdc: drop support for node v10 and v11
- 1dd7cd0e: version bump after breaking change in @web/test-runner-core
### Patch Changes
- Updated dependencies [a7d74fdc]
- Updated dependencies [1dd7cd0e]
- @web/test-runner-selenium@0.5.0
## 0.3.3
### Patch Changes
- 69b2d13d: use about:blank to kill stale browser pages, this makes tests that rely on browser focus work with puppeteer
- Updated dependencies [69b2d13d]
- @web/test-runner-selenium@0.4.1
## 0.3.2
### Patch Changes
- 75fba3d0: lazily create webdriver connection
## 0.3.1
### Patch Changes
- 5b117da4: add heartbeat to webdriver launcher
## 0.3.0
### Minor Changes
- 6e313c18: merged @web/test-runner-cli package into @web/test-runner
### Patch Changes
- Updated dependencies [6e313c18]
- @web/test-runner-selenium@0.4.0
## 0.2.3
### Patch Changes
- b6e703a: clear heartbeat interval properly
- Updated dependencies [b6e703a]
- @web/test-runner-selenium@0.3.3
## 0.2.2
### Patch Changes
- 9cf02b9: add heartbeat interval to keep connection alive
- Updated dependencies [9cf02b9]
- @web/test-runner-selenium@0.3.2
## 0.2.1
### Patch Changes
- 416c0d2: Update dependencies
- Updated dependencies [416c0d2]
- @web/test-runner-selenium@0.3.1
## 0.2.0
### Minor Changes
- 2291ca1: replaced HTTP with websocket for server-browser communication
this improves test speed, especially when a test file makes a lot of concurrent requests
it lets us us catch more errors during test execution, and makes us catch them faster
### Patch Changes
- Updated dependencies [2291ca1]
- @web/test-runner-selenium@0.3.0
## 0.1.6
### Patch Changes
- bd27fff: improve browser and proxy close logic
## 0.1.5
### Patch Changes
- 38d8f03: turn on selenium iframe mode by default
- Updated dependencies [38d8f03]
- @web/test-runner-selenium@0.2.9
## 0.1.4
### Patch Changes
- 88cc7ac: Reworked concurrent scheduling logic
When running tests in multiple browsers, the browsers are no longer all started in parallel. Instead a new `concurrentBrowsers` property controls how many browsers are run concurrently. This helps improve speed and stability.
- Updated dependencies [88cc7ac]
- @web/test-runner-selenium@0.2.7
## 0.1.3
### Patch Changes
- dbbb6db: run tests in parallel
- Updated dependencies [dbbb6db]
- @web/test-runner-selenium@0.2.3
## 0.1.2
### Patch Changes
- ce2a2e6: align dependencies
- Updated dependencies [ce2a2e6]
- @web/dev-server-legacy@0.1.2
- @web/test-runner-selenium@0.2.2
## 0.1.1
### Patch Changes
- aa65fd1: run build before publishing
- Updated dependencies [aa65fd1]
- @web/dev-server-legacy@0.1.1
- @web/test-runner-selenium@0.2.1
## 0.1.0
### Minor Changes
- fdcf2e5: Merged test runner server into core, and made it no longer possible configure a different server.
The test runner relies on the server for many things, merging it into core makes the code more maintainable. The server is composable, you can proxy requests to other servers and we can look into adding more composition APIs later.
- 9be1f95: Added native node es module entrypoints. This is a breaking change. Before, native node es module imports would import a CJS module as a default import and require destructuring afterwards:
```js
import playwrightModule from '@web/test-runner-playwright';
const { playwrightLauncher } = playwrightModule;
```
Now, the exports are only available directly as a named export:
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
```
### Patch Changes
- Updated dependencies [cdddf68]
- Updated dependencies [fdcf2e5]
- Updated dependencies [9be1f95]
- @web/test-runner-selenium@0.2.0
- @web/dev-server-legacy@0.1.0
## 0.0.12
### Patch Changes
- d77093b: allow code coverage instrumentation through JS
- Updated dependencies [d77093b]
- @web/test-runner-selenium@0.1.8
## 0.0.11
### Patch Changes
- 02a3926: expose browser name from BrowserLauncher
- Updated dependencies [02a3926]
- Updated dependencies [74cc129]
- @web/test-runner-selenium@0.1.7
## 0.0.10
### Patch Changes
- 432f090: expose browser name from BrowserLauncher
- 5b36825: prevent debug sessions from interferring with regular test sessions
- Updated dependencies [432f090]
- Updated dependencies [5b36825]
- @web/test-runner-selenium@0.1.6
## 0.0.9
### Patch Changes
- 736d101: improve scheduling logic and error handling
- Updated dependencies [736d101]
- @web/test-runner-selenium@0.1.5
## 0.0.8
### Patch Changes
- 5fada4a: improve logging and error reporting
- Updated dependencies [5fada4a]
- @web/dev-server-legacy@0.0.3
- @web/test-runner-selenium@0.1.4
## 0.0.7
### Patch Changes
- 04a2cda: make test-runner-browserstack work with dev-server-core
- Updated dependencies [04a2cda]
- @web/test-runner-selenium@0.1.3
## 0.0.6
### Patch Changes
- db5baff: cleanup and sort dependencies
## 0.0.5
### Patch Changes
- 1d6d498: allow changing viewport in tests
- Updated dependencies [1d6d498]
- @web/test-runner-selenium@0.1.1
## 0.0.4
### Patch Changes
- Updated dependencies [c4cb321]
- @web/test-runner-selenium@0.1.0
## 0.0.3
### Patch Changes
- 14b7fae: handle errors in mocha hooks
- Updated dependencies [14b7fae]
- @web/test-runner-selenium@0.0.4
## 0.0.2
### Patch Changes
- f2bf9ae: first setup of browserstack
- Updated dependencies [fbc1eba]
- @web/test-runner-selenium@0.0.3
| modernweb-dev/web/packages/test-runner-browserstack/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-browserstack/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 2503
} | 216 |
import { Launcher as ChromeLauncher } from 'chrome-launcher';
export function findExecutablePath(): string {
const path = ChromeLauncher.getFirstInstallation();
if (!path) {
throw new Error(
'Could not automatically find any installation of Chrome using chrome-launcher. ' +
'Set the CHROME_PATH to help chrome-launcher find it, or use ' +
'@web/test-runner-puppeteer or @web/test-runner-playwright for a bundled browser.',
);
}
return path;
}
| modernweb-dev/web/packages/test-runner-chrome/src/findExecutablePath.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-chrome/src/findExecutablePath.ts",
"repo_id": "modernweb-dev",
"token_count": 157
} | 217 |
import {
Media,
Viewport,
SendKeysPayload,
A11ySnapshotPayload,
WriteFilePayload,
ReadFilePayload,
RemoveFilePayload,
SnapshotPluginConfig,
SaveSnapshotPayload,
SelectOptionPayload,
SendMousePayload,
} from '../dist/index.js';
/**
* Executes a command on the server. If this is a custom command, you need to implement a plugin
* to execute this command.
*/
export function executeServerCommand<R, P>(command: string, payload?: P): Promise<R>;
/**
* Sets the viewport of the browser.
*/
export function setViewport(viewport: Viewport): Promise<void>;
/**
* Emulates browser media, such as screen/print or color scheme, to be used in
* CSS media queries.
*
* The `forcedColors` property is Playwright-only API that does not work in WebKit.
*
* @example
* ```ts
* await emulateMedia({
* colorScheme: 'dark',
* reducedMotion: 'reduce',
* });
* ```
*
* @example
* ```ts
* await emulateMedia({
* media: 'print',
* });
* ```
*
* @example
* ```ts
* await emulateMedia({
* forcedColors: 'active',
* });
* ```
*/
export function emulateMedia(media: Media): Promise<void>;
/**
* Sets the user agent of the browser. This is a puppeteer-only API.
*/
export function setUserAgent(userAgent: string): Promise<void>;
/**
* Sends a string of keys for the browser to press (all at once, as with single keys
* or shortcuts; e.g. `{press: 'Tab'}` or `{press: 'Shift+a'}` or
* `{press: 'Option+ArrowUp}`) or type (in sequence, e.g. `{type: 'Your name'}`) natively.
*
* For specific documentation of the strings to leverage here, see the Playwright documentation,
* here:
*
* - `press`: https://playwright.dev/docs/api/class-keyboard#keyboardpresskey-options
* - `type`: https://playwright.dev/docs/api/class-keyboard#keyboardtypetext-options
*
* Or, the Puppeter documentation, here:
*
* - `press`: https://pptr.dev/#?product=Puppeteer&show=api-keyboardpresskey-options
* - `type`: https://pptr.dev/#?product=Puppeteer&show=api-keyboardtypetext-options
*
* Or, the Webdriver documentation, here:
*
* https://webdriver.io/docs/api/browser/keys/
*
* @param payload An object including a `press` or `type` property an the associated string
* for the browser runner to apply via that input method.
*
* @example
* ```ts
* await sendKeys({
* press: 'Tab',
* });
* ```
*
* @example
* ```ts
* await sendKeys({
* type: 'Your address',
* });
* ```
*
**/
export function sendKeys(payload: SendKeysPayload): Promise<void>;
/**
* Sends an action for the mouse to move it to a specific position or click a mouse button (left, middle, or right).
*
* WARNING: When moving the mouse or holding down a mouse button, the mouse stays in this state as long as
* you do not explicitly move it to another position or release the button. For this reason, it is recommended
* to reset the mouse state with the `resetMouse` command after each test case manipulating the mouse to avoid
* unexpected side effects.
*
* @param payload An object representing a mouse action specified by the `type` property (move, click, down, up)
* and including some properties to configure this action.
*
* @example
* ```ts
* await sendMouse({
* type: 'move',
* position: [100, 100]
* });
* ```
*
* @example
* ```ts
* await sendMouse({
* type: 'click',
* position: [100, 100],
* button: 'right'
* });
* ```
*
* @example
* ```ts
* await sendMouse({
* type: 'down'
* });
* ```
*
**/
export function sendMouse(payload: SendMousePayload): Promise<void>;
/**
* Selects an option in a <select> element by value or label
*
* @example
* ```
* it('natively selects an option by value', async () => {
* const valueToSelect = 'first';
* const select = document.querySelector('#testSelect');
*
* await selectOption({ selector: '#testSelect', value: valueToSelect });
*
* expect(select.value).to.equal(valueToSelect);
*});
*```
*/
export function selectOption(payload: SelectOptionPayload): Promise<void>;
/**
* Resets the mouse position to (0, 0) and releases mouse buttons.
*
* Use this command to reset the mouse state after mouse manipulations by the `sendMouse` command.
*
* @example
* ```
* it('does something with the mouse', () => {
* await sendMouse({ type: 'move', position: [150, 150] });
* await sendMouse({ type: 'down', button: 'middle' });
* });
*
* afterEach(() => {
* await resetMouse();
* });
* ```
*/
export function resetMouse(): Promise<void>;
/**
* Request a snapshot of the Accessibility Tree of the entire page or starting from
* the element that is obtained via the `selector` property of the `payload` argument.
*
* Learn more about the tree that is returned from Playwright here:
* - https://playwright.dev/docs/api/class-accessibility/
*
* Learn more about the tree that is returned from Puppeteer here:
* - https://pptr.dev/#?product=Puppeteer&show=api-class-accessibility
*
* @param payload An object including a `selector` property pointing to the root of the
* a11y tree you'd like returned.
*
* @example
* ```ts
* await a11ySnapshot();
* ```
*
* @example
* ```ts
* await a11ySnapshot({
* selector: 'main'
* });
* ```
*/
export function a11ySnapshot(payload: A11ySnapshotPayload): Promise<void>;
/**
* Walk the provided accessibility tree that starts on `node` and test each
* node in the tree until one is found that meast the `test` provided.
*
* Learn more about the tree that is returned from Playwright here:
* - https://playwright.dev/docs/api/class-accessibility/
*
* Learn more about the tree that is returned from Puppeteer here:
* - https://pptr.dev/#?product=Puppeteer&show=api-class-accessibility
*
* @param node
* @param test
*
* @example
* // return whether a node in the `snapshot` has `name: 'Label Text Value Text'`
* ```ts
* findAccessibilityNode<{ name: string }>(
* snapshot,
* (node) => node.name === 'Label Text Value Text'
* )
* ```
*/
export function findAccessibilityNode<TNode>(
node: TNode & { children: TNode[] },
test: (node: TNode) => boolean,
): TNode | null;
/**
* Writes a file to disk.
*
* @param payload.filePath the path of the file to save. This is a path relative to the test file
* being executed. It cannot be an absolute path.
* @param payload.content the file content to save as a string.
* @param payload.encoding optional encoding to use when saving the file.
*
* @example
* ```ts
* await writeFile({ path: 'hello-world.txt', content: 'Hello world!' });
* ```
*/
export function writeFile(payload: WriteFilePayload): Promise<void>;
/**
* Reads a file from disk.
*
* @param payload.filePath the path of the file to read. This is a path relative to the test file
* being executed. It cannot be an absolute path.
* @param payload.encoding optional encoding to use when reading the file.
*
* @example
* ```ts
* const content = await readFile({ path: 'hello-world.txt' });
* ```
*/
export function readFile(payload: ReadFilePayload): Promise<string | undefined>;
/**
* Removes a file from disk.
*
* @param payload.filePath the path of the file to remove. This is a path relative to the test file
* being executed. It cannot be an absolute path.
*
* @example
* ```ts
* await removeFile({ path: 'hello-world.txt' });
* ```
*/
export function removeFile(payload: RemoveFilePayload): Promise<void>;
/**
* Gets configuration for snapshot testing.
*
* @param payload.updateSnapshots whether to updated snapshots that are not the same
*/
export function getSnapshotConfig(): Promise<SnapshotPluginConfig>;
/**
* Gets the snapshots stored for this test file.
*/
export function getSnapshots(): Promise<Record<string, string>>;
/**
* Saves a snapshot for this test file.
*
* @param payload.name the name of the snapshot
*/
export function getSnapshot(options: { name: string }): Promise<string | undefined>;
/**
* Saves a snapshot for this test file.
*
* @param payload.name the name of the snapshot
* @param payload.content the content of the snapshot as a string
*/
export function saveSnapshot(options: SaveSnapshotPayload): Promise<void>;
/**
* Removes stored snapshots for this test file.
*
* @param payload.name the name of the snapshot
*
*/
export function removeSnapshot(options: { name: string }): Promise<void>;
/**
* If no snapshot exists on disk or if update-snapshots is set to true server-side,
* the passed snapshot is saved. Otherwise the snapshot is compared with what's stored
* on disk. If the snapshots are not equal, an error is thrown.
*
* @param options
*/
export function compareSnapshot(options: { name: string; content: string }): Promise<void>;
export { Media, Viewport, SendKeysPayload, WriteFilePayload, ReadFilePayload, RemoveFilePayload };
| modernweb-dev/web/packages/test-runner-commands/browser/commands.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/browser/commands.d.ts",
"repo_id": "modernweb-dev",
"token_count": 2820
} | 218 |
/* eslint-disable @typescript-eslint/no-empty-function */
import { TestRunnerPlugin } from '@web/test-runner-core';
import { ServerStartParams } from '@web/dev-server-core';
import path from 'path';
import fs from 'fs';
import { promisify } from 'util';
import mkdirp from 'mkdirp';
const readFile = promisify(fs.readFile);
const writeFile = promisify(fs.writeFile);
const unlink = promisify(fs.unlink);
const access = promisify(fs.access);
async function fileExists(filePath: string) {
try {
await access(filePath);
return true;
} catch {
return false;
}
}
function isObject(payload: unknown): payload is Record<string, unknown> {
return payload != null && typeof payload === 'object';
}
export interface SaveSnapshotPayload {
name: string;
content: string;
}
function isSaveSnapshotPayload(payload: unknown): payload is SaveSnapshotPayload {
if (!isObject(payload)) throw new Error('You must provide a payload object');
if (typeof payload.name !== 'string') throw new Error('You must provide a path option');
if (payload.content !== undefined && typeof payload.content !== 'string')
throw new Error('You must provide a content option');
return true;
}
function getSnapshotPath(testFile: string) {
const testDir = path.dirname(testFile);
const testFileName = path.basename(testFile);
const ext = path.extname(testFileName);
const fileWithoutExt = testFileName.substring(0, testFileName.length - ext.length);
return path.join(testDir, '__snapshots__', `${fileWithoutExt}.snap.js`);
}
class SnapshotStore {
private snapshots = new Map<string, string>();
private sessionToSnapshotPath = new Map<string, string>();
private readOperations = new Map<string, { promise: Promise<void>; resolve: () => void }>();
async get(testFilePath: string): Promise<string> {
const snapshotPath = getSnapshotPath(testFilePath);
if (this.readOperations.has(snapshotPath)) {
// something else is already reading, wait for it
await this.readOperations.get(snapshotPath)?.promise;
}
const cachedContent = this.snapshots.get(snapshotPath);
if (cachedContent) {
// return from cache
return cachedContent;
}
const promiseObj = { resolve: () => {}, promise: Promise.resolve() };
promiseObj.promise = new Promise<void>(resolve => {
promiseObj.resolve = resolve;
});
this.readOperations.set(testFilePath, promiseObj);
// store in cache
const content = (await fileExists(snapshotPath))
? await readFile(snapshotPath, 'utf-8')
: '/* @web/test-runner snapshot v1 */\nexport const snapshots = {};\n\n';
this.snapshots.set(snapshotPath, content);
// resolve read promise to let others who are waiting continue
this.readOperations.get(snapshotPath)?.resolve();
this.readOperations.delete(snapshotPath);
return content;
}
async saveSnapshot(
sessionId: string,
testFilePath: string,
name: string,
updatedSnapshot: string,
) {
const snapshotPath = getSnapshotPath(testFilePath);
const nameStr = JSON.stringify(name);
const startMarker = `snapshots[${nameStr}]`;
const endMarker = `/* end snapshot ${name} */\n\n`;
const replacement = updatedSnapshot
? `${startMarker} = \n\`${updatedSnapshot}\`;\n${endMarker}`
: '';
const content = await this.get(testFilePath);
let updatedContent: string;
const startIndex = content.indexOf(startMarker);
if (startIndex !== -1) {
// replace existing snapshot
const endIndex = content.indexOf(endMarker);
if (endIndex === -1) {
throw new Error('Missing snapshot end marker');
}
const beforeReplace = content.substring(0, startIndex);
const afterReplace = content.substring(endIndex + endMarker.length);
updatedContent = `${beforeReplace}${replacement}${afterReplace}`;
} else {
// add new snapshot
updatedContent = `${content}${replacement}`;
}
if (updatedContent === content) {
// snapshot did not actually change, avoid marking snapshot as dirty
return;
}
this.sessionToSnapshotPath.set(sessionId, snapshotPath);
this.snapshots.set(snapshotPath, updatedContent);
}
getSnapshotPathForSession(sessionId: string) {
return this.sessionToSnapshotPath.get(sessionId);
}
async writeSnapshot(snapshotPath: string) {
const updatedContent = this.snapshots.get(snapshotPath);
if (!updatedContent) {
throw new Error('Unexpected error while writing snapshots, could not find snapshot content.');
}
if (updatedContent.includes('/* end snapshot')) {
// update or create snapshot
const fileDir = path.dirname(snapshotPath);
await mkdirp(fileDir);
await writeFile(snapshotPath, updatedContent);
} else {
// snapshot file is empty, remove it
if (await fileExists(snapshotPath)) {
await unlink(snapshotPath);
}
}
}
}
export interface SnapshotPluginConfig {
updateSnapshots?: boolean;
}
export function snapshotPlugin(config?: SnapshotPluginConfig): TestRunnerPlugin {
const updateSnapshots = config && config.updateSnapshots;
const snapshots = new SnapshotStore();
const writePromises = new Set<Promise<void>>();
return {
name: 'file-commands',
serverStart({ webSockets }: ServerStartParams) {
webSockets!.on('message', async ({ data }) => {
const { type, sessionId } = data;
if (type === 'wtr-session-finished') {
if (typeof sessionId !== 'string') {
throw new Error('Missing session id in wtr-session-finished event');
}
const snapshotPath = snapshots.getSnapshotPathForSession(sessionId);
if (!snapshotPath) {
return;
}
const writePromise = snapshots.writeSnapshot(snapshotPath);
writePromises.add(writePromise);
await writePromise;
writePromises.delete(writePromise);
}
});
},
async serverStop() {
// ensure all write operations are finished
await Promise.all([...writePromises]);
},
async executeCommand({ command, payload, session }) {
if (command === 'get-snapshot-config') {
return { updateSnapshots };
}
if (command === 'get-snapshots') {
const content = await snapshots.get(session.testFile);
return { content };
}
if (command === 'save-snapshot') {
if (!isSaveSnapshotPayload(payload)) {
throw new Error('Invalid save snapshot payload');
}
await snapshots.saveSnapshot(session.id, session.testFile, payload.name, payload.content);
return true;
}
},
};
}
| modernweb-dev/web/packages/test-runner-commands/src/snapshotPlugin.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/src/snapshotPlugin.ts",
"repo_id": "modernweb-dev",
"token_count": 2378
} | 219 |
import selenium from 'selenium-standalone';
export async function startSeleniumServer(drivers: { [browser: string]: selenium.DriverOptions }) {
let server: selenium.ChildProcess;
try {
await selenium.install({ drivers });
} catch (err) {
console.error('Error occurred when installing selenium.');
throw err;
}
try {
server = await selenium.start({ drivers });
} catch (err) {
console.error('Error occurred when starting selenium.');
throw err;
}
return server;
}
| modernweb-dev/web/packages/test-runner-commands/test/selenium-server.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/test/selenium-server.ts",
"repo_id": "modernweb-dev",
"token_count": 164
} | 220 |
# Web Test Runner Core
Core package for Web Test Runner. Manages running the tests. Has a modular architecture, delegating most of the work to the separate parts and implementations. You will likely not use this package directly.
See [our website](https://modern-web.dev/docs/test-runner/overview/) for full documentation.
| modernweb-dev/web/packages/test-runner-core/README.md/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/README.md",
"repo_id": "modernweb-dev",
"token_count": 76
} | 221 |
import { Middleware } from '@web/dev-server-core';
import { BrowserLauncher } from '../browser-launcher/BrowserLauncher.js';
import { TestFramework } from '../test-framework/TestFramework.js';
import { TestSession } from '../test-session/TestSession.js';
import { Reporter } from '../reporter/Reporter.js';
import { Logger } from '../logger/Logger.js';
import { TestRunnerPlugin } from '../server/TestRunnerPlugin.js';
import { ReportType } from 'istanbul-reports';
export interface CoverageThresholdConfig {
statements: number;
branches: number;
functions: number;
lines: number;
}
export interface CoverageConfig {
include?: string[];
exclude?: string[];
nativeInstrumentation?: boolean;
threshold?: CoverageThresholdConfig;
report?: boolean;
reportDir?: string;
reporters?: ReportType[];
}
export interface TestRunnerCoreConfig {
rootDir: string;
files?: string | string[];
concurrentBrowsers: number;
concurrency: number;
protocol: string;
hostname: string;
port: number;
http2?: boolean;
sslKey?: string;
sslCert?: string;
browsers: BrowserLauncher[];
testFramework?: TestFramework;
logger: Logger;
reporters: Reporter[];
testRunnerHtml?: (testRunnerImport: string, config: TestRunnerCoreConfig) => string;
watch: boolean;
browserLogs?: boolean;
filterBrowserLogs?: (
log: { type: string; args: any[] },
session?: Partial<TestSession>,
) => boolean;
coverage?: boolean;
coverageConfig: CoverageConfig;
browserStartTimeout: number;
testsStartTimeout: number;
testsFinishTimeout: number;
staticLogging?: boolean;
/** Ignores browsers option and prints manual testing URL. */
manual?: boolean;
/** Opens browser for manual testing. Requires the manual option to be set. */
open?: boolean;
debug?: boolean;
mimeTypes?: Record<string, string>;
plugins?: TestRunnerPlugin[];
middleware?: Middleware[];
}
| modernweb-dev/web/packages/test-runner-core/src/config/TestRunnerCoreConfig.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/config/TestRunnerCoreConfig.ts",
"repo_id": "modernweb-dev",
"token_count": 562
} | 222 |
import { Middleware, Context } from '@web/dev-server-core';
import { DepGraph } from 'dependency-graph';
import debounce from 'debounce';
import path from 'path';
import { FSWatcher } from 'chokidar';
import { TestSessionManager } from '../../test-session/TestSessionManager.js';
import { constants } from '../../index.js';
import { TestSession } from '../../test-session/TestSession.js';
const IGNORED_404s = ['favicon.ico'];
const { PARAM_SESSION_ID } = constants;
export type RunSessions = (sessions: Iterable<TestSession>) => void;
export interface DependencyGraphMiddlewareArgs {
sessions: TestSessionManager;
rootDir: string;
fileWatcher: FSWatcher;
testFrameworkImport?: string;
runSessions: RunSessions;
}
function onRerunSessions(
runSessions: RunSessions,
sessions: TestSessionManager,
sessionIds?: string[],
) {
const sessionsToRerun = sessionIds
? (sessionIds
.map(id => {
const session = sessions.get(id);
if (!session && !sessions.getDebug(id)) {
throw new Error(`Could not find session ${id}`);
}
return session;
})
.filter(s => s) as TestSession[])
: sessions.all();
runSessions(sessionsToRerun);
}
function onRequest404(sessions: TestSessionManager, sessionId: string, url: string) {
if (sessions.getDebug(sessionId)) {
return;
}
const session = sessions.get(sessionId);
if (!session) {
throw new Error(`Could not find session ${sessionId}`);
}
const { request404s } = session;
if (!request404s.includes(url) && !IGNORED_404s.some(i => url.endsWith(i))) {
sessions.update({ ...session, request404s: [...request404s, url] });
}
}
function toFilePath(browserPath: string) {
return browserPath.replace(new RegExp('/', 'g'), path.sep);
}
export function watchFilesMiddleware({
rootDir,
fileWatcher,
sessions,
runSessions,
testFrameworkImport,
}: DependencyGraphMiddlewareArgs): Middleware {
const fileGraph = new DepGraph({ circular: true });
const urlGraph = new DepGraph({ circular: true });
let pendingChangedFiles = new Set<string>();
function getSessionIdsForPath(path: string) {
const ids = new Set<string>();
if (urlGraph.hasNode(path)) {
for (const dependant of urlGraph.dependantsOf(path)) {
if (dependant.startsWith('\0')) {
const url = new URL(dependant.substring(1));
const id = url.searchParams.get(PARAM_SESSION_ID);
if (!id) {
throw new Error('Missing session id parameter');
}
ids.add(id);
}
}
}
return ids;
}
function getSessionIdsForFile(file: string) {
const ids = new Set<string>();
if (fileGraph.hasNode(file)) {
for (const dependant of fileGraph.dependantsOf(file)) {
if (dependant.startsWith('\0')) {
const url = new URL(dependant.substring(1));
const id = url.searchParams.get(PARAM_SESSION_ID);
if (!id) {
throw new Error('Missing session id parameter');
}
ids.add(id);
}
}
}
return ids;
}
function syncRerunSessions() {
const sessionsToRerun = new Set<string>();
// search dependants of changed files for test HTML files, and reload only those
for (const file of pendingChangedFiles) {
for (const id of getSessionIdsForFile(file)) {
sessionsToRerun.add(id);
}
}
if (sessionsToRerun.size > 0) {
// re run specified sessions
onRerunSessions(runSessions, sessions, Array.from(sessionsToRerun));
} else {
// re run alll sessions
onRerunSessions(runSessions, sessions);
}
pendingChangedFiles = new Set<string>();
}
const rerunSessions = debounce(syncRerunSessions, 300);
function onFileChanged(filePath: string) {
pendingChangedFiles.add(filePath);
rerunSessions();
}
fileWatcher.addListener('change', onFileChanged);
fileWatcher.addListener('unlink', onFileChanged);
function addDependencyMapping(ctx: Context, testFrameworkImport?: string) {
if ((testFrameworkImport && ctx.path === testFrameworkImport) || ctx.path.endsWith('/')) {
// the test framework or test runner HTML don't need to be tracked
// we specifcally don't want to track the test framework, because it
// requests all test files which would mess up the dependancy graph
return;
}
// who is requesting this dependency
let dependantUrl: URL;
if (ctx.URL.searchParams.has(PARAM_SESSION_ID)) {
// if the requested file itself has a session id in the URL, use that as the dependant
// this way when this file changes, we know session it belongs to
dependantUrl = ctx.URL;
} else if (ctx.headers.referer) {
// most requests contain a referer, the file which requested this file
dependantUrl = new URL(ctx.headers.referer as string);
} else {
// certain files like source maps are fetched without a referer, we skip those
return;
}
const dependencyPath = ctx.path;
const dependencyUrl = ctx.url;
const dependantFilePath = dependantUrl.searchParams.has(PARAM_SESSION_ID)
? // the dependant is the test file itself,
// we remember the full href and mark it with a null byte so that
// later we can extract the session id
`\0${dependantUrl.href}`
: // the dependant is a "regular" file, we resolve it to the file path
path.join(rootDir, toFilePath(dependantUrl.pathname));
const dependencyFilePath = path.join(rootDir, toFilePath(dependencyPath));
const dependantPath = dependantUrl.searchParams.has(PARAM_SESSION_ID)
? dependantFilePath
: dependantUrl.pathname;
fileGraph.addNode(dependantFilePath);
fileGraph.addNode(dependencyFilePath);
fileGraph.addDependency(dependantFilePath, dependencyFilePath);
urlGraph.addNode(dependantPath);
urlGraph.addNode(dependencyUrl);
urlGraph.addDependency(dependantPath, dependencyUrl);
}
return async (ctx, next) => {
addDependencyMapping(ctx, testFrameworkImport);
await next();
if (ctx.status === 404) {
for (const sessionId of getSessionIdsForPath(ctx.url)) {
onRequest404(sessions, sessionId, ctx.url.substring(1));
}
}
};
}
| modernweb-dev/web/packages/test-runner-core/src/server/middleware/watchFilesMiddleware.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/server/middleware/watchFilesMiddleware.ts",
"repo_id": "modernweb-dev",
"token_count": 2342
} | 223 |
import { TestSession } from './TestSession.js';
import { TestSessionStatus } from './TestSessionStatus.js';
import { EventEmitter } from '../utils/EventEmitter.js';
import { DebugTestSession } from './DebugTestSession.js';
import { TestSessionGroup } from './TestSessionGroup.js';
import { BrowserLauncher } from '../browser-launcher/BrowserLauncher.js';
interface EventMap {
'session-status-updated': TestSession;
'session-updated': void;
}
function* filtered<T>(it: Iterator<T>, filter: (value: T) => unknown) {
while (true) {
const { value, done } = it.next();
if (done) return;
if (filter(value)) yield value as T;
}
}
export class TestSessionManager extends EventEmitter<EventMap> {
private _groups: TestSessionGroup[];
private sessionsMap = new Map<string, TestSession>();
private debugSessions = new Map<string, DebugTestSession>();
constructor(groups: TestSessionGroup[], sessions: TestSession[]) {
super();
this._groups = groups;
for (const session of sessions) {
this.sessionsMap.set(session.id, session);
}
}
addDebug(...sessions: DebugTestSession[]) {
for (const session of sessions) {
this.debugSessions.set(session.id, session);
}
}
updateStatus(session: TestSession, status: TestSessionStatus) {
const updatedSession: TestSession = { ...session, status };
this.update(updatedSession);
this.emit('session-status-updated', updatedSession);
}
update(session: TestSession) {
if (!this.sessionsMap.has(session.id)) {
throw new Error(`Unknown session: ${session.id}`);
}
this.sessionsMap.set(session.id, session);
this.emit('session-updated', undefined);
}
groups() {
return this._groups;
}
get(id: string) {
return this.sessionsMap.get(id);
}
all() {
return this.sessionsMap.values();
}
filtered(filter: (s: TestSession) => unknown) {
return filtered(this.all(), filter);
}
forStatus(...statuses: TestSessionStatus[]) {
return this.filtered(s => statuses.includes(s.status));
}
forStatusAndTestFile(testFile?: string, ...statuses: TestSessionStatus[]) {
return this.filtered(
s => statuses.includes(s.status) && (!testFile || s.testFile === testFile),
);
}
forTestFile(...testFiles: string[]) {
return this.filtered(s => testFiles.includes(s.testFile));
}
forBrowser(browser: BrowserLauncher) {
return this.filtered(s => s.browser === browser);
}
forGroup(groupName: string) {
return this.filtered(s => s.group.name === groupName);
}
forBrowserName(browserName: string) {
return this.filtered(s => s.browser.name === browserName);
}
forBrowserNames(browserNames: string[]) {
return this.filtered(s => browserNames.includes(s.browser.name));
}
passed() {
return this.filtered(s => s.passed);
}
failed() {
return this.filtered(s => !s.passed);
}
getDebug(id: string) {
return this.debugSessions.get(id);
}
getAllDebug() {
return this.debugSessions.values();
}
setDebug(debugSession: DebugTestSession) {
this.debugSessions.set(debugSession.id, debugSession);
}
removeDebug(id: string) {
this.debugSessions.delete(id);
}
}
| modernweb-dev/web/packages/test-runner-core/src/test-session/TestSessionManager.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/test-session/TestSessionManager.ts",
"repo_id": "modernweb-dev",
"token_count": 1109
} | 224 |
{
"name": "@web/test-runner-mocha",
"version": "0.9.0",
"publishConfig": {
"access": "public"
},
"description": "Mocha test framework for Web Test Runner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/test-runner-mocha"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/test-runner-mocha",
"main": "dist/standalone.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"build:production": "rimraf dist && rollup -c ./rollup.config.mjs",
"test": "mocha test/**/*.test.js --reporter dot",
"test:watch": "mocha test/**/*.test.js --watch --watch-files src,test"
},
"files": [
"dist"
],
"keywords": [
"web",
"test",
"runner",
"testrunner",
"mocha",
"framework"
],
"dependencies": {
"@web/test-runner-core": "^0.13.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"deepmerge": "^4.2.2",
"mocha": "^10.2.0"
}
}
| modernweb-dev/web/packages/test-runner-mocha/package.json/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-mocha/package.json",
"repo_id": "modernweb-dev",
"token_count": 489
} | 225 |
/**
* Import a mockable version of a module to change its implementation.
* @param {string} moduleSpecifier The specifier of the module. Bare module specifiers and server relative specifiers are supported. Regular relative paths are not supported
* @returns {Promise<Record<string, func> | void >} Object with reassignable properties that match every export of the specified module.
* If the specified module contains a default export, the export will be available from the `default` property. Only function expressions are supported when rewiring default exports.
*/
export async function importMockable(moduleSpecifier) {
if (moduleSpecifier.includes('./')) {
throw new Error(
`Parameter \`moduleName\` ('${moduleSpecifier}') contains a relative reference. This is not supported. Convert \`moduleName\` first to a server relative path. (eg. \`new URL(import.meta.resolve(moduleName)).pathname\`)`,
);
}
let module;
try {
module = await import(`/__intercept-module__?${moduleSpecifier}`);
} catch (e) {
throw new Error(
`Module interception is not active. Make sure the \`moduleMockingPlugin\` of \`@web/test-runner-module-mocking\` is added to the Test Runner config.`,
);
}
if (module.__wtr_error__) {
throw new Error(module.__wtr_error__);
}
return module.__wtr_intercepted_module__;
}
| modernweb-dev/web/packages/test-runner-module-mocking/browser/index.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-module-mocking/browser/index.js",
"repo_id": "modernweb-dev",
"token_count": 396
} | 226 |
export function getCurrentHour() {
return 2;
}
| modernweb-dev/web/packages/test-runner-module-mocking/test/fixtures/server-relative/fixture/time-library.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-module-mocking/test/fixtures/server-relative/fixture/time-library.js",
"repo_id": "modernweb-dev",
"token_count": 15
} | 227 |
export function foo(a) {
if (a) {
return 1;
}
return 2;
}
| modernweb-dev/web/packages/test-runner/demo/coverage-babel/src/foo.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/coverage-babel/src/foo.js",
"repo_id": "modernweb-dev",
"token_count": 32
} | 228 |
export function b() {
throw new Error('error thrown in b.js')
} | modernweb-dev/web/packages/test-runner/demo/source-maps/bundled/src/b.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/source-maps/bundled/src/b.js",
"repo_id": "modernweb-dev",
"token_count": 20
} | 229 |
{
"version": 3,
"file": "MyClass.js",
"sourceRoot": "",
"sources": [
"./MyClass.ts"
],
"names": [],
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;IAAA;IAQA,CAAC;IAPO,uBAAK,GAAX,UAAY,GAAW,EAAE,GAAW;;;;4BAClC,qBAAM,OAAO,CAAC,OAAO,EAAE,EAAA;;wBAAvB,SAAuB,CAAC;wBACvB,GAAW,CAAC,WAAW,EAAE,CAAC;wBAC3B,sBAAO,IAAI,OAAO,CAAC,UAAA,OAAO;gCACxB,OAAO,EAAE,CAAC;4BACZ,CAAC,CAAC,EAAC;;;;KACJ;IACH,cAAC;AAAD,CAAC,AARD,IAQC;;AAED,MAAM,UAAU,KAAK,CAAC,GAAW,EAAE,GAAW;IAC5C,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;AAC7C,CAAC",
"sourcesContent": [
"export class MyClass {\n async doFoo(foo: string, bar: number): Promise<string> {\n await Promise.resolve();\n (foo as any).nonExisting();\n return new Promise(resolve => {\n resolve();\n });\n }\n}\n\nexport function doBar(bar: string, foo: number) {\n throw new Error('undefined is a function');\n}\n"
]
}
| modernweb-dev/web/packages/test-runner/demo/source-maps/virtual/virtual-files/MyClass.js.map/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/source-maps/virtual/virtual-files/MyClass.js.map",
"repo_id": "modernweb-dev",
"token_count": 459
} | 230 |
// window.location.href = '/foo/';
window.location.href = 'https://www.example.org/';
it('x', async () => {
await new Promise(r => setTimeout(r, 1000));
});
| modernweb-dev/web/packages/test-runner/demo/test/fail-location-href.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/fail-location-href.test.js",
"repo_id": "modernweb-dev",
"token_count": 56
} | 231 |
import { compareSnapshot, removeSnapshot } from '@web/test-runner-commands';
it('can test snapshot A', async () => {
await compareSnapshot({ name: 'snapshot-a', content: 'some snapshot A1' });
});
it('can test snapshot B', async () => {
await compareSnapshot({ name: 'snapshot-b', content: 'some snapshot B1' });
});
it('can test snapshot C', async () => {
await compareSnapshot({ name: 'snapshot-c', content: 'some snapshot C1' });
});
| modernweb-dev/web/packages/test-runner/demo/test/pass-snapshot-1.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/pass-snapshot-1.test.js",
"repo_id": "modernweb-dev",
"token_count": 140
} | 232 |
import './shared-a.js';
import './shared-b.js';
| modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-13.test.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-13.test.d.ts",
"repo_id": "modernweb-dev",
"token_count": 20
} | 233 |
export declare function sharedA(): string;
export declare function throwError(): void;
| modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/shared-a.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/shared-a.d.ts",
"repo_id": "modernweb-dev",
"token_count": 18
} | 234 |
import { CoverageThresholdConfig, TestCoverage, CoverageConfig } from '@web/test-runner-core';
import path from 'path';
import { bold, green, red, underline } from 'nanocolors';
const coverageTypes: (keyof CoverageThresholdConfig)[] = [
'lines',
'statements',
'branches',
'functions',
];
export function getCodeCoverage(
testCoverage: TestCoverage,
watch: boolean,
coverageConfig: CoverageConfig,
) {
const entries: string[] = [];
const coverageSum = coverageTypes.reduce((all, type) => all + testCoverage.summary[type].pct, 0);
const avgCoverage = Math.round((coverageSum * 100) / 4) / 100;
if (!Number.isNaN(avgCoverage)) {
const percent = `${avgCoverage} %`;
entries.push(`Code coverage: ${bold(testCoverage.passed ? green(percent) : red(percent))}`);
}
if (!testCoverage.passed && coverageConfig.threshold) {
coverageTypes.forEach(type => {
if (testCoverage.summary[type].pct < coverageConfig.threshold![type]) {
entries.push(
`Coverage for ${bold(type)} failed with ${bold(
red(`${testCoverage.summary[type].pct} %`),
)} compared to configured ${bold(`${coverageConfig.threshold![type]} %`)}`,
);
}
});
}
if (!watch && coverageConfig.report && coverageConfig.reporters?.includes('lcov')) {
entries.push(
`View full coverage report at ${underline(
path.join(coverageConfig.reportDir ?? '', 'lcov-report', 'index.html'),
)}`,
);
}
entries.push('');
return entries;
}
| modernweb-dev/web/packages/test-runner/src/reporter/getCodeCoverage.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/src/reporter/getCodeCoverage.ts",
"repo_id": "modernweb-dev",
"token_count": 561
} | 235 |
import { legacyPlugin } from '@web/dev-server-legacy';
export default {
rootDir: '../../',
preserveSymlinks: true,
nodeResolve: true,
plugins: [legacyPlugin()],
};
| modernweb-dev/web/packages/test-runner/web-test-runner.config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/web-test-runner.config.mjs",
"repo_id": "modernweb-dev",
"token_count": 60
} | 236 |
import { esbuildPlugin } from '@web/dev-server-esbuild';
export default {
nodeResolve: true,
plugins: [esbuildPlugin({ ts: true })],
};
| modernweb-dev/web/web-test-runner.config.mjs/0 | {
"file_path": "modernweb-dev/web/web-test-runner.config.mjs",
"repo_id": "modernweb-dev",
"token_count": 48
} | 237 |
files:
- source: /src/lang/en-US.json
translation: /src/lang/%locale%.json
| odota/web/crowdin.yaml/0 | {
"file_path": "odota/web/crowdin.yaml",
"repo_id": "odota",
"token_count": 34
} | 238 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-79.698 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(74.717) scale(.9375)">
<path fill="#fff" d="M-120 0h763.27v511.49H-120z"/>
<path d="M-118.31.617h760.88v216.09h-760.88z"/>
<path fill="#0061ff" d="M21.3 203.23h505.01v113.82H21.3z"/>
<path d="M642.75 1.753v510.25H262.03L642.75 1.753z" fill="#e20000"/>
<path d="M-118.69 1.753v510.25h380.72L-118.69 1.753z" fill="#e20000"/>
<path d="M440.37 203.34l-76.31-19.363L428.98 135l-79.726 11.39 41.003-69.475-70.616 41.003 12.53-80.867-47.837 63.783L264.97 26.8l-21.64 76.31-47.837-64.92 13.667 83.145-70.615-43.282 41.003 69.476-77.45-12.53 63.783 47.838-79.727 20.5h354.22z" fill="#ffd600"/>
</g>
</svg>
| odota/web/public/assets/images/flags/ag.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/ag.svg",
"repo_id": "odota",
"token_count": 470
} | 239 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M0 0h213.335v479.997H0z"/>
<path fill="#ffd90c" d="M213.335 0H426.67v479.997H213.335z"/>
<path fill="#f31830" d="M426.67 0h213.335v479.997H426.67z"/>
</g>
</svg>
| odota/web/public/assets/images/flags/be.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/be.svg",
"repo_id": "odota",
"token_count": 155
} | 240 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#399408" d="M2.426 0h637.557v480H2.426z"/>
<path d="M.167 0C-.67.073 619.765 241.48 619.765 241.48L-.005 479.77.166 0z" fill="#fff"/>
<path d="M.28 20.186c3.462 0 559.053 217.89 555.893 220.03L1.867 463.266.287 20.186z" fill="#ffde08"/>
<path d="M1.863.783c1.848 0 290.94 240.92 290.94 240.92L1.863 476.983V.783z"/>
<path d="M.28 33.902c1.658-14.986 260.9 208.4 260.9 208.4L.268 451.702V33.912z" fill="#de2110"/>
</g>
</svg>
| odota/web/public/assets/images/flags/gy.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/gy.svg",
"repo_id": "odota",
"token_count": 294
} | 241 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#fff" d="M0 0h640v479.997H0z"/>
<path fill="#009246" d="M0 0h213.331v479.997H0z"/>
<path fill="#ce2b37" d="M426.663 0h213.331v479.997H426.663z"/>
</g>
</svg>
| odota/web/public/assets/images/flags/it.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/it.svg",
"repo_id": "odota",
"token_count": 152
} | 242 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)">
<path fill="#e90012" d="M-40 0h720v480H-40z"/>
<path fill="#003dd2" d="M-40 119.26h720v241.48H-40z"/>
<path d="M423.42 239.998a103.419 103.419 0 1 1-206.838 0 103.419 103.419 0 1 1 206.837 0z" fill="#fff"/>
</g>
</svg>
| odota/web/public/assets/images/flags/la.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/la.svg",
"repo_id": "odota",
"token_count": 237
} | 243 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g stroke-width="1pt" fill-rule="evenodd">
<path fill="#ff3319" d="M213.33 0H640v240H213.33z"/>
<path fill="#00cc28" d="M213.33 240H640v240H213.33z"/>
<path fill="#fff" d="M0 0h213.33v480H0z"/>
</g>
</svg>
| odota/web/public/assets/images/flags/mg.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/mg.svg",
"repo_id": "odota",
"token_count": 148
} | 244 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.