text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="userAddEditTitle">
<div class="modal-dialog modal-dialog-scrollable modal-lg" role="document">
<form
class="modal-content"
#form
(ngSubmit)="submit()"
[appApiAction]="formPromise"
ngNativeValidate
>
<div class="modal-header">
<h2 class="modal-title" id="userAddEditTitle">
{{ title }}
<small class="text-muted" *ngIf="name">{{ 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="loading">
<i
class="bwi bwi-spinner bwi-spin text-muted"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "loading" | i18n }}</span>
</div>
<div class="modal-body" *ngIf="!loading">
<ng-container *ngIf="!editMode">
<p>{{ "inviteUserDesc" | i18n }}</p>
<div class="form-group mb-4">
<label for="emails">{{ "email" | i18n }}</label>
<input
id="emails"
class="form-control"
type="text"
name="Emails"
[(ngModel)]="emails"
required
appAutoFocus
/>
<small class="text-muted">{{ "inviteMultipleEmailDesc" | i18n: "20" }}</small>
</div>
</ng-container>
<h3>
{{ "userType" | i18n }}
<a
target="_blank"
rel="noopener"
appA11yTitle="{{ 'learnMore' | i18n }}"
href="https://bitwarden.com/help/user-types-access-control/"
>
<i class="bwi bwi-question-circle" aria-hidden="true"></i>
</a>
</h3>
<div class="form-check mt-2 form-check-block">
<input
class="form-check-input"
type="radio"
name="userType"
id="userTypeUser"
[value]="organizationUserType.User"
[(ngModel)]="type"
/>
<label class="form-check-label" for="userTypeUser">
{{ "user" | i18n }}
<small>{{ "userDesc" | i18n }}</small>
</label>
</div>
<div class="form-check mt-2 form-check-block">
<input
class="form-check-input"
type="radio"
name="userType"
id="userTypeManager"
[value]="organizationUserType.Manager"
[(ngModel)]="type"
/>
<label class="form-check-label" for="userTypeManager">
{{ "manager" | i18n }}
<small>{{ "managerDesc" | i18n }}</small>
</label>
</div>
<div class="form-check mt-2 form-check-block">
<input
class="form-check-input"
type="radio"
name="userType"
id="userTypeAdmin"
[value]="organizationUserType.Admin"
[(ngModel)]="type"
/>
<label class="form-check-label" for="userTypeAdmin">
{{ "admin" | i18n }}
<small>{{ "adminDesc" | i18n }}</small>
</label>
</div>
<div class="form-check mt-2 form-check-block">
<input
class="form-check-input"
type="radio"
name="userType"
id="userTypeOwner"
[value]="organizationUserType.Owner"
[(ngModel)]="type"
/>
<label class="form-check-label" for="userTypeOwner">
{{ "owner" | i18n }}
<small>{{ "ownerDesc" | i18n }}</small>
</label>
</div>
<div class="form-check mt-2 form-check-block">
<input
class="form-check-input"
type="radio"
name="userType"
id="userTypeCustom"
[value]="organizationUserType.Custom"
[(ngModel)]="type"
/>
<label class="form-check-label" for="userTypeCustom">
{{ "custom" | i18n }}
<small>{{ "customDesc" | i18n }}</small>
</label>
</div>
<ng-container *ngIf="customUserTypeSelected">
<h3 class="mt-4 d-flex">
{{ "permissions" | i18n }}
</h3>
<div class="row">
<div class="col-6">
<div class="mb-3">
<label class="font-weight-bold mb-0">Manager Permissions</label>
<hr class="my-0 mr-2" />
<app-nested-checkbox
parentId="manageAssignedCollections"
[checkboxes]="manageAssignedCollectionsCheckboxes"
>
</app-nested-checkbox>
</div>
</div>
<div class="col-6">
<div class="mb-3">
<label class="font-weight-bold mb-0">Admin Permissions</label>
<hr class="my-0 mr-2" />
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="accessEventLogs"
id="accessEventLogs"
[(ngModel)]="permissions.accessEventLogs"
/>
<label class="form-check-label font-weight-normal" for="accessEventLogs">
{{ "accessEventLogs" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="accessImportExport"
id="accessImportExport"
[(ngModel)]="permissions.accessImportExport"
/>
<label class="form-check-label font-weight-normal" for="accessImportExport">
{{ "accessImportExport" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="accessReports"
id="accessReports"
[(ngModel)]="permissions.accessReports"
/>
<label class="form-check-label font-weight-normal" for="accessReports">
{{ "accessReports" | i18n }}
</label>
</div>
</div>
<app-nested-checkbox
parentId="manageAllCollections"
[checkboxes]="manageAllCollectionsCheckboxes"
>
</app-nested-checkbox>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="manageGroups"
id="manageGroups"
[(ngModel)]="permissions.manageGroups"
/>
<label class="form-check-label font-weight-normal" for="manageGroups">
{{ "manageGroups" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="manageSso"
id="managePolicies"
[(ngModel)]="permissions.manageSso"
/>
<label class="form-check-label font-weight-normal" for="manageSso">
{{ "manageSso" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="managePolicies"
id="managePolicies"
[(ngModel)]="permissions.managePolicies"
/>
<label class="form-check-label font-weight-normal" for="managePolicies">
{{ "managePolicies" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="manageUsers"
id="manageUsers"
[(ngModel)]="permissions.manageUsers"
(change)="handleDependentPermissions()"
/>
<label class="form-check-label font-weight-normal" for="manageUsers">
{{ "manageUsers" | i18n }}
</label>
</div>
</div>
<div class="form-group mb-0">
<div class="form-check mt-1 form-check-block">
<input
class="form-check-input"
type="checkbox"
name="manageResetPassword"
id="manageResetPassword"
[(ngModel)]="permissions.manageResetPassword"
(change)="handleDependentPermissions()"
/>
<label class="form-check-label font-weight-normal" for="manageResetPassword">
{{ "manageResetPassword" | i18n }}
</label>
</div>
</div>
</div>
</div>
</div>
</ng-container>
<h3 class="mt-4 d-flex">
<div class="mb-3">
{{ "accessControl" | i18n }}
<a
target="_blank"
rel="noopener"
appA11yTitle="{{ 'learnMore' | i18n }}"
href="https://bitwarden.com/help/user-types-access-control/#access-control"
>
<i class="bwi bwi-question-circle" aria-hidden="true"></i>
</a>
</div>
<div class="ml-auto" *ngIf="access === 'selected' && 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>
</h3>
<div class="form-group" [ngClass]="{ 'mb-0': access !== 'selected' }">
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="access"
id="accessAll"
value="all"
[(ngModel)]="access"
/>
<label class="form-check-label" for="accessAll">
{{ "userAccessAllItems" | i18n }}
</label>
</div>
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="access"
id="accessSelected"
value="selected"
[(ngModel)]="access"
/>
<label class="form-check-label" for="accessSelected">
{{ "userAccessSelectedCollections" | i18n }}
</label>
</div>
</div>
<ng-container *ngIf="access === 'selected'">
<div *ngIf="!collections || !collections.length">
{{ "noCollectionsInList" | i18n }}
</div>
<table
class="table table-hover table-list mb-0"
*ngIf="collections && collections.length"
>
<thead>
<tr>
<th> </th>
<th>{{ "name" | i18n }}</th>
<th width="100" class="text-center">{{ "hidePasswords" | i18n }}</th>
<th width="100" class="text-center">{{ "readOnly" | i18n }}</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let c of collections; let i = index">
<td class="table-list-checkbox" (click)="check(c)">
<input
type="checkbox"
[(ngModel)]="c.checked"
name="Collection[{{ i }}].Checked"
appStopProp
/>
</td>
<td (click)="check(c)">
{{ c.name }}
</td>
<td class="text-center">
<input
type="checkbox"
[(ngModel)]="c.hidePasswords"
name="Collection[{{ i }}].HidePasswords"
[disabled]="!c.checked"
/>
</td>
<td class="text-center">
<input
type="checkbox"
[(ngModel)]="c.readOnly"
name="Collection[{{ i }}].ReadOnly"
[disabled]="!c.checked"
/>
</td>
</tr>
</tbody>
</table>
</ng-container>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "save" | i18n }}</span>
</button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">
{{ "cancel" | i18n }}
</button>
<div class="ml-auto">
<button
#deleteBtn
type="button"
(click)="delete()"
class="btn btn-outline-danger"
appA11yTitle="{{ 'delete' | i18n }}"
*ngIf="editMode"
[disabled]="deleteBtn.loading"
[appApiAction]="deletePromise"
>
<i
class="bwi bwi-trash bwi-lg bwi-fw"
[hidden]="deleteBtn.loading"
aria-hidden="true"
></i>
<i
class="bwi bwi-spinner bwi-spin bwi-lg bwi-fw"
[hidden]="!deleteBtn.loading"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
</button>
</div>
</div>
</form>
</div>
</div>
| bitwarden/web/src/app/organizations/manage/user-add-edit.component.html/0 | {
"file_path": "bitwarden/web/src/app/organizations/manage/user-add-edit.component.html",
"repo_id": "bitwarden",
"token_count": 9086
} | 138 |
<app-callout type="tip" title="{{ 'prerequisite' | i18n }}">
{{ "requireSsoPolicyReq" | i18n }}
</app-callout>
<app-callout type="warning">
{{ "requireSsoExemption" | i18n }}
</app-callout>
<div class="form-group">
<div class="form-check">
<input
class="form-check-input"
type="checkbox"
id="enabled"
[formControl]="enabled"
name="Enabled"
/>
<label class="form-check-label" for="enabled">{{ "enabled" | i18n }}</label>
</div>
</div>
| bitwarden/web/src/app/organizations/policies/require-sso.component.html/0 | {
"file_path": "bitwarden/web/src/app/organizations/policies/require-sso.component.html",
"repo_id": "bitwarden",
"token_count": 206
} | 139 |
import { Component } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { UserVerificationService } from "jslib-common/abstractions/userVerification.service";
import { OrganizationApiKeyType } from "jslib-common/enums/organizationApiKeyType";
import { OrganizationApiKeyRequest } from "jslib-common/models/request/organizationApiKeyRequest";
import { ApiKeyResponse } from "jslib-common/models/response/apiKeyResponse";
import { Verification } from "jslib-common/types/verification";
@Component({
selector: "app-billing-sync-api-key",
templateUrl: "billing-sync-api-key.component.html",
})
export class BillingSyncApiKeyComponent {
organizationId: string;
hasBillingToken: boolean;
showRotateScreen: boolean;
masterPassword: Verification;
formPromise: Promise<ApiKeyResponse>;
clientSecret?: string;
keyRevisionDate?: Date;
lastSyncDate?: Date = null;
constructor(
private userVerificationService: UserVerificationService,
private apiService: ApiService,
private platformUtilsService: PlatformUtilsService,
private i18nService: I18nService
) {}
copy() {
this.platformUtilsService.copyToClipboard(this.clientSecret);
}
async submit() {
if (this.showRotateScreen) {
this.formPromise = this.userVerificationService
.buildRequest(this.masterPassword, OrganizationApiKeyRequest)
.then((request) => {
request.type = OrganizationApiKeyType.BillingSync;
return this.apiService.postOrganizationRotateApiKey(this.organizationId, request);
});
const response = await this.formPromise;
await this.load(response);
this.showRotateScreen = false;
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t("billingSyncApiKeyRotated")
);
} else {
this.formPromise = this.userVerificationService
.buildRequest(this.masterPassword, OrganizationApiKeyRequest)
.then((request) => {
request.type = OrganizationApiKeyType.BillingSync;
return this.apiService.postOrganizationApiKey(this.organizationId, request);
});
const response = await this.formPromise;
await this.load(response);
}
}
async load(response: ApiKeyResponse) {
this.clientSecret = response.apiKey;
this.keyRevisionDate = response.revisionDate;
this.hasBillingToken = true;
const syncStatus = await this.apiService.getSponsorshipSyncStatus(this.organizationId);
this.lastSyncDate = syncStatus.lastSyncDate;
}
cancelRotate() {
this.showRotateScreen = false;
}
rotateToken() {
this.showRotateScreen = true;
}
private dayDiff(date1: Date, date2: Date): number {
const diffTime = Math.abs(date2.getTime() - date1.getTime());
return Math.round(diffTime / (1000 * 60 * 60 * 24));
}
get submitButtonText(): string {
if (this.showRotateScreen) {
return this.i18nService.t("rotateToken");
}
return this.i18nService.t(this.hasBillingToken ? "continue" : "generateToken");
}
get showLastSyncText(): boolean {
// If the keyRevisionDate is later than the lastSyncDate we need to show
// a warning that they need to put the billing sync key in their self hosted install
return this.lastSyncDate && this.lastSyncDate > this.keyRevisionDate;
}
get showAwaitingSyncText(): boolean {
return this.lastSyncDate && this.lastSyncDate <= this.keyRevisionDate;
}
get daysBetween(): number {
return this.dayDiff(this.keyRevisionDate, new Date());
}
}
| bitwarden/web/src/app/organizations/settings/billing-sync-api-key.component.ts/0 | {
"file_path": "bitwarden/web/src/app/organizations/settings/billing-sync-api-key.component.ts",
"repo_id": "bitwarden",
"token_count": 1300
} | 140 |
<div class="mt-5 d-flex justify-content-center" *ngIf="loading">
<div>
<img class="mb-4 logo logo-themed" alt="Bitwarden" />
<p class="text-center">
<i
class="bwi bwi-spinner bwi-spin bwi-2x text-muted"
title="{{ 'loading' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "loading" | i18n }}</span>
</p>
</div>
</div>
| bitwarden/web/src/app/organizations/sponsorships/accept-family-sponsorship.component.html/0 | {
"file_path": "bitwarden/web/src/app/organizations/sponsorships/accept-family-sponsorship.component.html",
"repo_id": "bitwarden",
"token_count": 189
} | 141 |
import { Component } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { CollectionService } from "jslib-common/abstractions/collection.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { LogService } from "jslib-common/abstractions/log.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { CipherData } from "jslib-common/models/data/cipherData";
import { Cipher } from "jslib-common/models/domain/cipher";
import { Organization } from "jslib-common/models/domain/organization";
import { CipherCollectionsRequest } from "jslib-common/models/request/cipherCollectionsRequest";
import { CollectionsComponent as BaseCollectionsComponent } from "../../vault/collections.component";
@Component({
selector: "app-org-vault-collections",
templateUrl: "../../vault/collections.component.html",
})
export class CollectionsComponent extends BaseCollectionsComponent {
organization: Organization;
constructor(
collectionService: CollectionService,
platformUtilsService: PlatformUtilsService,
i18nService: I18nService,
cipherService: CipherService,
private apiService: ApiService,
logService: LogService
) {
super(collectionService, platformUtilsService, i18nService, cipherService, logService);
this.allowSelectNone = true;
}
protected async loadCipher() {
if (!this.organization.canViewAllCollections) {
return await super.loadCipher();
}
const response = await this.apiService.getCipherAdmin(this.cipherId);
return new Cipher(new CipherData(response));
}
protected loadCipherCollections() {
if (!this.organization.canViewAllCollections) {
return super.loadCipherCollections();
}
return this.collectionIds;
}
protected loadCollections() {
if (!this.organization.canViewAllCollections) {
return super.loadCollections();
}
return Promise.resolve(this.collections);
}
protected saveCollections() {
if (this.organization.canEditAnyCollection) {
const request = new CipherCollectionsRequest(this.cipherDomain.collectionIds);
return this.apiService.putCipherCollectionsAdmin(this.cipherId, request);
} else {
return super.saveCollections();
}
}
}
| bitwarden/web/src/app/organizations/vault/collections.component.ts/0 | {
"file_path": "bitwarden/web/src/app/organizations/vault/collections.component.ts",
"repo_id": "bitwarden",
"token_count": 758
} | 142 |
import { Component } from "@angular/core";
import { ReportTypes } from "./report-card.component";
@Component({
selector: "app-report-list",
templateUrl: "report-list.component.html",
})
export class ReportListComponent {
reports = [
ReportTypes.exposedPasswords,
ReportTypes.reusedPasswords,
ReportTypes.weakPasswords,
ReportTypes.unsecuredWebsites,
ReportTypes.inactive2fa,
ReportTypes.dataBreach,
];
}
| bitwarden/web/src/app/reports/report-list.component.ts/0 | {
"file_path": "bitwarden/web/src/app/reports/report-list.component.ts",
"repo_id": "bitwarden",
"token_count": 148
} | 143 |
<div class="container page-content">
<app-callout type="warning" title="{{ 'sendDisabled' | i18n }}" *ngIf="disableSend">
<span>{{ "sendDisabledWarning" | i18n }}</span>
</app-callout>
<div class="row">
<div class="col-3 groupings">
<div class="card vault-filters">
<div class="card-header d-flex">
{{ "filters" | i18n }}
</div>
<div class="card-body">
<input
type="search"
placeholder="{{ searchPlaceholder || ('searchSends' | i18n) }}"
id="search"
class="form-control"
[(ngModel)]="searchText"
(input)="searchTextChanged()"
autocomplete="off"
appAutofocus
/>
<div class="filter">
<ul class="filter-options">
<li class="filter-option" [ngClass]="{ active: selectedAll }">
<span class="filter-buttons">
<button bitButton class="filter-button" appStopClick (click)="selectAll()">
<i class="bwi bwi-fw bwi-filter"></i>{{ "allSends" | i18n }}
</button>
</span>
</li>
</ul>
</div>
<div class="filter">
<div class="filter-heading">
<h3>{{ "types" | i18n }}</h3>
</div>
<ul class="filter-options">
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.Text }">
<span class="filter-buttons">
<button
bitButton
class="filter-button"
appStopClick
(click)="selectType(sendType.Text)"
>
<i class="bwi bwi-fw bwi-file-text"></i>{{ "sendTypeText" | i18n }}
</button>
</span>
</li>
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.File }">
<span class="filter-buttons">
<button
bitButton
class="filter-button"
appStopClick
(click)="selectType(sendType.File)"
>
<i class="bwi bwi-fw bwi-file"></i>{{ "sendTypeFile" | i18n }}
</button>
</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-9">
<div class="page-header d-flex">
<h1>
{{ "send" | i18n }}
<small #actionSpinner [appApiAction]="actionPromise">
<ng-container *ngIf="actionSpinner.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>
</small>
</h1>
<div class="ml-auto d-flex">
<button
type="button"
class="btn btn-outline-primary btn-sm"
(click)="addSend()"
[disabled]="disableSend"
>
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i>{{ "createSend" | i18n }}
</button>
</div>
</div>
<!--Listing Table-->
<table class="table table-hover table-list" *ngIf="filteredSends && filteredSends.length">
<tbody>
<tr *ngFor="let s of filteredSends">
<td class="table-list-icon">
<div class="icon" aria-hidden="true">
<i class="bwi bwi-fw bwi-lg bwi-file" *ngIf="s.type == sendType.File"></i>
<i class="bwi bwi-fw bwi-lg bwi-file-text" *ngIf="s.type == sendType.Text"></i>
</div>
</td>
<td class="reduced-lh wrap">
<a href="#" appStopClick appStopProp (click)="editSend(s)">{{ s.name }}</a>
<ng-container *ngIf="s.disabled">
<i
class="bwi bwi-exclamation-triangle"
appStopProp
title="{{ 'disabled' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "disabled" | i18n }}</span>
</ng-container>
<ng-container *ngIf="s.password">
<i
class="bwi bwi-key"
appStopProp
title="{{ 'password' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "password" | i18n }}</span>
</ng-container>
<ng-container *ngIf="s.maxAccessCountReached">
<i
class="bwi bwi-ban"
appStopProp
title="{{ 'maxAccessCountReached' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "maxAccessCountReached" | i18n }}</span>
</ng-container>
<ng-container *ngIf="s.expired">
<i
class="bwi bwi-clock"
appStopProp
title="{{ 'expired' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "expired" | i18n }}</span>
</ng-container>
<ng-container *ngIf="s.pendingDelete">
<i
class="bwi bwi-trash"
appStopProp
title="{{ 'pendingDeletion' | i18n }}"
aria-hidden="true"
></i>
<span class="sr-only">{{ "pendingDeletion" | i18n }}</span>
</ng-container>
<br />
<small appStopProp>{{ s.deletionDate | date: "medium" }}</small>
</td>
<td class="table-list-options">
<button
[bitMenuTriggerFor]="sendOptions"
class="tw-border-none tw-bg-transparent tw-text-main"
type="button"
appA11yTitle="{{ 'options' | i18n }}"
>
<i class="bwi bwi-ellipsis-v bwi-lg" aria-hidden="true"></i>
</button>
<bit-menu #sendOptions>
<button bitMenuItem (click)="copy(s)">
<i class="bwi bwi-fw bwi-clone" aria-hidden="true"></i>
{{ "copySendLink" | i18n }}
</button>
<button bitMenuItem (click)="removePassword(s)" *ngIf="s.password && !disableSend">
<i class="bwi bwi-fw bwi-close" aria-hidden="true"></i>
{{ "removePassword" | i18n }}
</button>
<button bitMenuItem (click)="delete(s)">
<span class="tw-text-danger">
<i class="bwi bwi-fw bwi-trash" aria-hidden="true"></i>
{{ "delete" | i18n }}
</span>
</button>
</bit-menu>
</td>
</tr>
</tbody>
</table>
<div class="no-items" *ngIf="filteredSends && !filteredSends.length">
<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>
<ng-container *ngIf="loaded">
<p>{{ "noSendsInList" | i18n }}</p>
<button (click)="addSend()" class="btn btn-outline-primary" [disabled]="disableSend">
<i class="bwi bwi-plus bwi-fw"></i>{{ "createSend" | i18n }}
</button>
</ng-container>
</div>
</div>
</div>
</div>
<ng-template #sendAddEdit></ng-template>
| bitwarden/web/src/app/send/send.component.html/0 | {
"file_path": "bitwarden/web/src/app/send/send.component.html",
"repo_id": "bitwarden",
"token_count": 4575
} | 144 |
<div class="modal fade" role="dialog" aria-modal="true" aria-labelledby="apiKeyTitle">
<div class="modal-dialog modal-dialog-scrollable" role="document">
<form
class="modal-content"
#form
(ngSubmit)="submit()"
[appApiAction]="formPromise"
ngNativeValidate
>
<div class="modal-header">
<h2 class="modal-title" id="apiKeyTitle">{{ apiKeyTitle | i18n }}</h2>
<button
type="button"
class="close"
data-dismiss="modal"
appA11yTitle="{{ 'close' | i18n }}"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>{{ apiKeyDescription | i18n }}</p>
<app-user-verification
[(ngModel)]="masterPassword"
ngDefaultControl
name="secret"
*ngIf="!clientSecret"
>
</app-user-verification>
<app-callout type="warning" *ngIf="clientSecret">{{ apiKeyWarning | i18n }}</app-callout>
<app-callout
type="info"
title="{{ 'oauth2ClientCredentials' | i18n }}"
icon="bwi bwi-key"
*ngIf="clientSecret"
>
<p class="mb-1">
<strong>client_id:</strong><br />
<code>{{ clientId }}</code>
</p>
<p class="mb-1">
<strong>client_secret:</strong><br />
<code>{{ clientSecret }}</code>
</p>
<p class="mb-1">
<strong>scope:</strong><br />
<code>{{ scope }}</code>
</p>
<p class="mb-0">
<strong>grant_type:</strong><br />
<code>{{ grantType }}</code>
</p>
</app-callout>
</div>
<div class="modal-footer">
<button
type="submit"
class="btn btn-primary btn-submit"
[disabled]="form.loading"
*ngIf="!clientSecret"
>
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ (isRotation ? "rotateApiKey" : "viewApiKey") | i18n }}</span>
</button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">
{{ "close" | i18n }}
</button>
</div>
</form>
</div>
</div>
| bitwarden/web/src/app/settings/api-key.component.html/0 | {
"file_path": "bitwarden/web/src/app/settings/api-key.component.html",
"repo_id": "bitwarden",
"token_count": 1223
} | 145 |
<div class="page-header">
<h1>{{ "domainRules" | i18n }}</h1>
</div>
<p>{{ "domainRulesDesc" | i18n }}</p>
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate>
<h2>{{ "customEqDomains" | i18n }}</h2>
<p *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>
</p>
<ng-container *ngIf="!loading">
<div class="form-group d-flex" *ngFor="let d of custom; let i = index; trackBy: indexTrackBy">
<div class="flex-fill">
<label for="customDomain_{{ i }}" class="sr-only">{{
"customDomainX" | i18n: i + 1
}}</label>
<textarea
class="form-control"
name="CustomDomain[{{ i }}]"
id="customDomain_{{ i }}"
[(ngModel)]="custom[i]"
placeholder="{{ 'ex' | i18n }} google.com, gmail.com"
required
></textarea>
</div>
<button
type="button"
class="btn btn-link text-danger ml-2"
(click)="remove(i)"
appA11yTitle="{{ 'remove' | i18n }}"
>
<i class="bwi bwi-minus-circle bwi-lg" aria-hidden="true"></i>
</button>
</div>
<button type="button" (click)="add()" class="btn btn-outline-secondary btn-sm mb-2">
<i class="bwi bwi-plus bwi-fw" aria-hidden="true"></i> {{ "newCustomDomain" | i18n }}
</button>
<small class="text-muted d-block mb-3">{{ "newCustomDomainDesc" | i18n }}</small>
</ng-container>
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "save" | i18n }}</span>
</button>
<h2 class="spaced-header">{{ "globalEqDomains" | i18n }}</h2>
<p *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>
</p>
<table class="table table-hover table-list" *ngIf="!loading && global.length > 0">
<tbody>
<tr *ngFor="let d of global">
<td [ngClass]="{ 'table-list-strike': d.excluded }">{{ d.domains }}</td>
<td class="table-list-options">
<div class="dropdown" appListDropdown>
<button
class="btn btn-outline-secondary dropdown-toggle"
type="button"
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">
<a
class="dropdown-item"
href="#"
appStopClick
(click)="toggleExcluded(d)"
*ngIf="!d.excluded"
>
<i class="bwi bwi-fw bwi-close" aria-hidden="true"></i>
{{ "exclude" | i18n }}
</a>
<a
class="dropdown-item"
href="#"
appStopClick
(click)="toggleExcluded(d)"
*ngIf="d.excluded"
>
<i class="bwi bwi-fw bwi-plus" aria-hidden="true"></i>
{{ "include" | i18n }}
</a>
<a class="dropdown-item" href="#" appStopClick (click)="customize(d)">
<i class="bwi bwi-fw bwi-cut" aria-hidden="true"></i>
{{ "customize" | i18n }}
</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
<span>{{ "save" | i18n }}</span>
</button>
</form>
| bitwarden/web/src/app/settings/domain-rules.component.html/0 | {
"file_path": "bitwarden/web/src/app/settings/domain-rules.component.html",
"repo_id": "bitwarden",
"token_count": 2093
} | 146 |
<div class="tabbed-header d-flex">
<h1>
{{ "paymentMethod" | i18n }}
</h1>
<button
bitButton
buttonType="secondary"
(click)="load()"
class="tw-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 bitButton buttonType="secondary" (click)="addCredit()" *ngIf="!showAddCredit">
{{ "addCredit" | i18n }}
</button>
<app-add-credit
(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">
<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 bitButton buttonType="secondary" (click)="changePayment()" *ngIf="!showAdjustPayment">
{{ (paymentSource ? "changePaymentMethod" : "addPaymentMethod") | i18n }}
</button>
<app-adjust-payment
[currentType]="paymentSource != null ? paymentSource.type : null"
(onAdjusted)="closePayment(true)"
(onCanceled)="closePayment(false)"
*ngIf="showAdjustPayment"
>
</app-adjust-payment>
</ng-container>
| bitwarden/web/src/app/settings/payment-method.component.html/0 | {
"file_path": "bitwarden/web/src/app/settings/payment-method.component.html",
"repo_id": "bitwarden",
"token_count": 1010
} | 147 |
import { Component } from "@angular/core";
import { KeyConnectorService } from "jslib-common/abstractions/keyConnector.service";
@Component({
selector: "app-security",
templateUrl: "security.component.html",
})
export class SecurityComponent {
showChangePassword = true;
constructor(private keyConnectorService: KeyConnectorService) {}
async ngOnInit() {
this.showChangePassword = !(await this.keyConnectorService.getUsesKeyConnector());
}
}
| bitwarden/web/src/app/settings/security.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/security.component.ts",
"repo_id": "bitwarden",
"token_count": 131
} | 148 |
import { Component } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { LogService } from "jslib-common/abstractions/log.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
import { UserVerificationService } from "jslib-common/abstractions/userVerification.service";
import { TwoFactorProviderType } from "jslib-common/enums/twoFactorProviderType";
import { UpdateTwoFactorDuoRequest } from "jslib-common/models/request/updateTwoFactorDuoRequest";
import { TwoFactorDuoResponse } from "jslib-common/models/response/twoFactorDuoResponse";
import { TwoFactorBaseComponent } from "./two-factor-base.component";
@Component({
selector: "app-two-factor-duo",
templateUrl: "two-factor-duo.component.html",
})
export class TwoFactorDuoComponent extends TwoFactorBaseComponent {
type = TwoFactorProviderType.Duo;
ikey: string;
skey: string;
host: string;
formPromise: Promise<any>;
constructor(
apiService: ApiService,
i18nService: I18nService,
platformUtilsService: PlatformUtilsService,
logService: LogService,
userVerificationService: UserVerificationService
) {
super(apiService, i18nService, platformUtilsService, logService, userVerificationService);
}
auth(authResponse: any) {
super.auth(authResponse);
this.processResponse(authResponse.response);
}
submit() {
if (this.enabled) {
return super.disable(this.formPromise);
} else {
return this.enable();
}
}
protected async enable() {
const request = await this.buildRequestModel(UpdateTwoFactorDuoRequest);
request.integrationKey = this.ikey;
request.secretKey = this.skey;
request.host = this.host;
return super.enable(async () => {
if (this.organizationId != null) {
this.formPromise = this.apiService.putTwoFactorOrganizationDuo(
this.organizationId,
request
);
} else {
this.formPromise = this.apiService.putTwoFactorDuo(request);
}
const response = await this.formPromise;
await this.processResponse(response);
});
}
private processResponse(response: TwoFactorDuoResponse) {
this.ikey = response.integrationKey;
this.skey = response.secretKey;
this.host = response.host;
this.enabled = response.enabled;
}
}
| bitwarden/web/src/app/settings/two-factor-duo.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/two-factor-duo.component.ts",
"repo_id": "bitwarden",
"token_count": 845
} | 149 |
import { Component, EventEmitter, Input, Output } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { LogService } from "jslib-common/abstractions/log.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
@Component({
selector: "app-update-license",
templateUrl: "update-license.component.html",
})
export class UpdateLicenseComponent {
@Input() organizationId: string;
@Output() onUpdated = new EventEmitter();
@Output() onCanceled = new EventEmitter();
formPromise: Promise<any>;
constructor(
private apiService: ApiService,
private i18nService: I18nService,
private platformUtilsService: PlatformUtilsService,
private logService: LogService
) {}
async submit() {
const fileEl = document.getElementById("file") as HTMLInputElement;
const files = fileEl.files;
if (files == null || files.length === 0) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("selectFile")
);
return;
}
try {
const fd = new FormData();
fd.append("license", files[0]);
let updatePromise: Promise<any> = null;
if (this.organizationId == null) {
updatePromise = this.apiService.postAccountLicense(fd);
} else {
updatePromise = this.apiService.postOrganizationLicenseUpdate(this.organizationId, fd);
}
this.formPromise = updatePromise.then(() => {
return this.apiService.refreshIdentityToken();
});
await this.formPromise;
this.platformUtilsService.showToast("success", null, this.i18nService.t("updatedLicense"));
this.onUpdated.emit();
} catch (e) {
this.logService.error(e);
}
}
cancel() {
this.onCanceled.emit();
}
}
| bitwarden/web/src/app/settings/update-license.component.ts/0 | {
"file_path": "bitwarden/web/src/app/settings/update-license.component.ts",
"repo_id": "bitwarden",
"token_count": 719
} | 150 |
import { Component } from "@angular/core";
import { PasswordGeneratorHistoryComponent as BasePasswordGeneratorHistoryComponent } from "jslib-angular/components/password-generator-history.component";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
@Component({
selector: "app-password-generator-history",
templateUrl: "password-generator-history.component.html",
})
export class PasswordGeneratorHistoryComponent extends BasePasswordGeneratorHistoryComponent {
constructor(
passwordGenerationService: PasswordGenerationService,
platformUtilsService: PlatformUtilsService,
i18nService: I18nService
) {
super(passwordGenerationService, platformUtilsService, i18nService, window);
}
}
| bitwarden/web/src/app/tools/password-generator-history.component.ts/0 | {
"file_path": "bitwarden/web/src/app/tools/password-generator-history.component.ts",
"repo_id": "bitwarden",
"token_count": 257
} | 151 |
import { Component, EventEmitter, Input, Output } from "@angular/core";
import { CipherService } from "jslib-common/abstractions/cipher.service";
import { I18nService } from "jslib-common/abstractions/i18n.service";
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
@Component({
selector: "app-vault-bulk-restore",
templateUrl: "bulk-restore.component.html",
})
export class BulkRestoreComponent {
@Input() cipherIds: string[] = [];
@Output() onRestored = new EventEmitter();
formPromise: Promise<any>;
constructor(
private cipherService: CipherService,
private platformUtilsService: PlatformUtilsService,
private i18nService: I18nService
) {}
async submit() {
this.formPromise = this.cipherService.restoreManyWithServer(this.cipherIds);
await this.formPromise;
this.onRestored.emit();
this.platformUtilsService.showToast("success", null, this.i18nService.t("restoredItems"));
}
}
| bitwarden/web/src/app/vault/bulk-restore.component.ts/0 | {
"file_path": "bitwarden/web/src/app/vault/bulk-restore.component.ts",
"repo_id": "bitwarden",
"token_count": 325
} | 152 |
body {
min-width: 0px !important;
padding: 0;
margin: 0;
background: transparent;
}
| bitwarden/web/src/connectors/captcha.scss/0 | {
"file_path": "bitwarden/web/src/connectors/captcha.scss",
"repo_id": "bitwarden",
"token_count": 34
} | 153 |
{
"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": "קוד האבטחה (CVV)"
},
"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": "דוקטור"
},
"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": "שם דומיין",
"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": "התחברויות"
},
"typeCardPlural": {
"message": "כרטיסים"
},
"typeIdentityPlural": {
"message": "זהויות"
},
"typeSecureNotePlural": {
"message": "פתקים מאובטחים"
},
"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": "מחובר כ $EMAIL$ באתר $HOSTNAME$.",
"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": "הכנס את קוד האימות בן 6 הספרות שנשלח ל-$EMAIL$.",
"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": "הכנס את ה-YubiKey אל כניסת ה-USB במחשבך, ואז גע בכפתור שלו."
},
"insertU2f": {
"message": "הכנס את מפתח האבטחה שלך אל כניסת ה-USB במחשבך. אם יש לו כפתור, לחץ עליו."
},
"loginUnavailable": {
"message": "פרטי כניסה לא זמינים"
},
"noTwoStepProviders": {
"message": "כניסה דו-שלבית פעילה בחשבון זה, אך אף אחד מספקי הכניסה הדו-שלבית לא נתמכים בדפדפן זה."
},
"noTwoStepProviders2": {
"message": "אנא השתמש בדפדפן נתמך (כמו לדוגמא Chrome) ו\\או הוסף ספק כניסה דו-שלבית הנתמך בדפדפן זה (כמו לדוגמא אפליקצית אימות)."
},
"twoStepOptions": {
"message": "אפשרויות כניסה דו שלבית"
},
"recoveryCodeDesc": {
"message": "איבדת גישה לכל ספקי האימות הדו-שלבי שלך? השתמש בקוד האימות כדי לבטל את הספקים הקיימים מתוך החשבון שלך."
},
"recoveryCodeTitle": {
"message": "קוד שחזור"
},
"authenticatorAppTitle": {
"message": "אפליקציית אימות"
},
"authenticatorAppDesc": {
"message": "השתמש באפליקצית אימות (כמו לדוגמא Authy או Google Authenticator) לייצור סיסמאות אימות מבוססות זמן.",
"description": "'Authy' and 'Google Authenticator' are product names and should not be translated."
},
"yubiKeyTitle": {
"message": "מפתח אבטחה OTP של YubiKey"
},
"yubiKeyDesc": {
"message": "השתמש בYubiKey עבור גישה לחשבון שלך. עובד עם YubiKey מסדרה 4, סדרה 5, ומכשירי NEO."
},
"duoDesc": {
"message": "בצע אימות מול Duo Security באמצעות אפליקצית Duo לפלאפון, SMS, שיחת טלפון, או מפתח אבטחה U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
"message": "בצע אימות מול Duo Security עבור הארגון שלך באמצעות אפליקצית Duo לפלאפון, SMS, שיחת טלפון, או מפתח אבטחה U2F.",
"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": "Use any WebAuthn enabled security key to access your account."
},
"webAuthnMigrated": {
"message": "(Migrated from FIDO)"
},
"emailTitle": {
"message": "אימייל"
},
"emailDesc": {
"message": "קודים לאימות יישלחו אליך באימייל."
},
"continue": {
"message": "המשך"
},
"organization": {
"message": "ארגון"
},
"organizations": {
"message": "ארגונים"
},
"moveToOrgDesc": {
"message": "Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved."
},
"moveManyToOrgDesc": {
"message": "Choose an organization that you wish to move these items to. Moving to an organization transfers ownership of the items to that organization. You will no longer be the direct owner of these items once they have been moved."
},
"collectionsDesc": {
"message": "ערוך את האוסף המשותף של פריט זה. רק משתמשים מורשים מתוך הארגון יוכלו לראות פריט זה."
},
"deleteSelectedItemsDesc": {
"message": "בחרת $COUNT$ פריט(ים) למחיקה. האם אתה בטוח שברצונך למחוק את כולם?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsDesc": {
"message": "בחר תיקיה שאליה תרצה להעביר את $COUNT$ הפריט(ים) שבחרת.",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsCountDesc": {
"message": "You have selected $COUNT$ item(s). $MOVEABLE_COUNT$ item(s) can be moved to an organization, $NONMOVEABLE_COUNT$ cannot.",
"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": "Confirm Vault Export"
},
"exportWarningDesc": {
"message": "הקובץ מכיל את פרטי הכספת שלך בפורמט לא מוצפן. מומלץ להעביר את הקובץ רק בדרכים מוצפנות, ומאוד לא מומלץ לשמור או לשלוח את הקובץ הזה בדרכים לא מוצפנות (כדוגמת סתם אימייל). מחק את הקובץ מיד לאחר שסיימת את השימוש בו."
},
"encExportKeyWarningDesc": {
"message": "This export encrypts your data using your account's encryption key. If you ever rotate your account's encryption key you should export again since you will not be able to decrypt this export file."
},
"encExportAccountWarningDesc": {
"message": "Account encryption keys are unique to each Bitwarden user account, so you can't import an encrypted export into a different account."
},
"export": {
"message": "Export"
},
"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": "בכדי להמשיך הסשן הנוכחי ינותק, ותדרש להזין את פרטי הכניסה החדשים. כל הסשנים הפעילים במכשירים אחרים ישארו פעילים עד שעה ממועד הכניסה החדשה."
},
"emailChanged": {
"message": "כתובת האימייל שונתה"
},
"logBackIn": {
"message": "אנא התחבר שוב."
},
"logBackInOthersToo": {
"message": "אנא התחבר שוב. אם אתה משתמש באפליקציות נוספות של Bitwarden, סגור את החיבור והתחבר שוב גם באפליקציות הללו."
},
"changeMasterPassword": {
"message": "החלף סיסמה ראשית"
},
"masterPasswordChanged": {
"message": "הסיסמה הראשית הוחלפה"
},
"currentMasterPass": {
"message": "סיסמה ראשית נוכחית"
},
"newMasterPass": {
"message": "סיסמה ראשית חדשה"
},
"confirmNewMasterPass": {
"message": "אמת סיסמה ראשית חדשה"
},
"encKeySettings": {
"message": "הגדרות מפתח הצפנה"
},
"kdfAlgorithm": {
"message": "אלגוריתם KDF"
},
"kdfIterations": {
"message": "איטרציות KDF"
},
"kdfIterationsDesc": {
"message": "קביעת ערך גבוה עבור מספר האיטרציות של KDF עוזרת בהגנה על הסיסמה הראשית שלך מפני תקיפת Brute force (תְּקִיפָה כּוֹחָנִית). אנו ממליצים להשתמש בערך $VALUE$ או ערך גבוה יותר.",
"placeholders": {
"value": {
"content": "$1",
"example": "100,000"
}
}
},
"kdfIterationsWarning": {
"message": "קביעת ערך גבוה מדי עבור מספר האיטרציות KDF עלול לגרום לבעיות ביצועים בזמן הכניסה (ובזמן ביטול הנעילה) לחשבון Bitwarden במכשירים בעלי מעבד חלש. אנו ממליצים שתעלה את הערך בקפיצות של $INCREMENT$ ובדוק את ההשפעה של הביצועים בכל המכשירים שלך.",
"placeholders": {
"increment": {
"content": "$1",
"example": "50,000"
}
}
},
"changeKdf": {
"message": "שנה KDF"
},
"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": "Import Error"
},
"importErrorDesc": {
"message": "There was a problem with the data you tried to import. Please resolve the errors listed below in your source file and try again."
},
"importSuccess": {
"message": "נתונים יובאו בהצלחה אל תוך הכספת שלך."
},
"importWarning": {
"message": "You are importing data to $ORGANIZATION$. Your data may be shared with members of this organization. Do you want to proceed?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"importFormatError": {
"message": "המידע לא מפורמט בצורה נכונה. אנא בדוק את הקובץ ונסה שוב."
},
"importNothingError": {
"message": "לא יובא דבר."
},
"importEncKeyError": {
"message": "Error decrypting the exported file. Your encryption key does not match the encryption key used export the data."
},
"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": "אפשר שימוש ב-Gravatar",
"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": "אם אתה משתמש באותם פרטי כניסה עבור אתרים שונים באותו דומיין, באפשרות לסמן את האתר כ\"שווה\". הערכים הרגילים שנוצרים על ידי Bitwarden מסומנים כדומיין \"גלובלי\"."
},
"globalEqDomains": {
"message": "דומיינים גלובליים שווים"
},
"customEqDomains": {
"message": "דומיינים שווים מותאמים אישית"
},
"exclude": {
"message": "אל תכלול"
},
"include": {
"message": "כלול"
},
"customize": {
"message": "התאם אישית"
},
"newCustomDomain": {
"message": "דומיין מותאם אישית חדש"
},
"newCustomDomainDesc": {
"message": "הזן שמות של דומיינים מופרדים בפסיק. יש להזין רק את \"שורש\" הדומיין. אין להוסיף לרשימה סאב-דומיינים. לדוגמא, הזן \"google.com\" במקום לכתוב \"www.google.com\". ניתן גם לכתוב שמות של packages באנדרואיד כמו לדוגמא \"androidapp://package.name\" וכך לשייך אפליקציית אנדרואיד מסויימת עם הדומיינים הקשורים אליה."
},
"customDomainX": {
"message": "דומיין מותאם אישית $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"domainsUpdated": {
"message": "הדומיינים עודכנו"
},
"twoStepLogin": {
"message": "התחברות בשני-שלבים"
},
"twoStepLoginDesc": {
"message": "שפר את אבטחת החשבון שלך על ידי דרישת צעד נוסף עבור כל נסיון חיבור."
},
"twoStepLoginOrganizationDesc": {
"message": "דרוש כניסה בשני-שלבים עבור משתמשי הארגון שלך בעזרת הגדרת ספקים הנתמכים ברמת הארגון."
},
"twoStepLoginRecoveryWarning": {
"message": "שים לב: שימוש לא נכון בכניסה דו-שלבית עשוי לגרום לך להנעל ללא גישה לחשבון Bitwarden שלך. מומלץ לשמור קוד שחזור לגישה לחשבון שלך למקרה שלא תוכל להשתמש בספק הכניסה הדו-שלבית (לדוגמא: איבדת את הפלאפון או את מפתח החומרה שלך). גם צוות התמיכה של Bitwarden לא יוכל לעזור לך במקרה שתאבד גישה לחשבון שלך. אנו ממליצים שתכתוב או תדפיס את קודי השחזור ותשמור אותם במקום בטוח."
},
"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": "סרוק את קוד הQR הזה בעזרת אפליקציית האימות שלך"
},
"key": {
"message": "מפתח"
},
"twoStepAuthenticatorEnterCode": {
"message": "הכנס את קוד האימות בן 6 הספרות מהאפליקציה"
},
"twoStepAuthenticatorReaddDesc": {
"message": "במקרה שאתה צריך את אפשרות הכניסה זמינה גם במכשיר אחר, כאן ניתן למצוא את קוד הQR (או המפתח) הנחוץ לאפליקציית האימות במכשיר הנוסף."
},
"twoStepDisableDesc": {
"message": "האם אתה בטוח שברצונך לבטל את הספק הזה עבור הכניסה הדו-שלבית?"
},
"twoStepDisabled": {
"message": "ספק עבור כניסה דו-שלבית מבוטל."
},
"twoFactorYubikeyAdd": {
"message": "הוסף מפתח YubiKey לחשבונך"
},
"twoFactorYubikeyPlugIn": {
"message": "חבר את הYubiKey לחיבור הUSB שבמחשב."
},
"twoFactorYubikeySelectKey": {
"message": "בחר את השדה הריק הראשון עבור YubiKey להלן."
},
"twoFactorYubikeyTouchButton": {
"message": "לחץ על הכפתור של YubiKey."
},
"twoFactorYubikeySaveForm": {
"message": "שמור את הטופס."
},
"twoFactorYubikeyWarning": {
"message": "עקב מגבלות פלטפורמה, לא ניתן להשתמש בYubiKey בכל האפליקציות של Bitwarden. עליך לאפשר ספק כניסה דו-שלבית נוסף למקרה שבו הYubiKey שלך לא זמין. פלטפורמות נתמכות:"
},
"twoFactorYubikeySupportUsb": {
"message": "כספת רשת, אפליקציית שולחן עבודה, שורת הפקודה, וכל התוספים לדפדפן על מכשיר עם חיבור USB עבור הYubiKey שלך."
},
"twoFactorYubikeySupportMobile": {
"message": "אפליקציות לפלאפון על מכשיר עם NFC או עם חיבור USB עבור YubiKey."
},
"yubikeyX": {
"message": "מפתח YubiKey $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"u2fkeyX": {
"message": "מפתח U2F $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"webAuthnkeyX": {
"message": "WebAuthn Key $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"nfcSupport": {
"message": "תמיכה ב-NFC"
},
"twoFactorYubikeySupportsNfc": {
"message": "אחד מהמפתחות שלי תומך ב-NFC."
},
"twoFactorYubikeySupportsNfcDesc": {
"message": "אם אחד ממפתחות הYubiKey שלך תומכים בNFC (לדוגמא - YubiKey NEO), תופיע לך הודעה במכשיר הנייד בכל פעם שהNFC מזהה את המפתח."
},
"yubikeysUpdated": {
"message": "מפתחות YubiKey עודכנו"
},
"disableAllKeys": {
"message": "בטל את כל המפתחות"
},
"twoFactorDuoDesc": {
"message": "הזן את פרטי אפליקציית Bitwarden מתוך עמוד הניהול של Duo."
},
"twoFactorDuoIntegrationKey": {
"message": "מפתח אינטגרציה"
},
"twoFactorDuoSecretKey": {
"message": "מפתח סודי"
},
"twoFactorDuoApiHostname": {
"message": "שם שרת הAPI"
},
"twoFactorEmailDesc": {
"message": "עקוב אחר הצעדים הבאים להגדרת כניסה דו-שלבית עם אימייל:"
},
"twoFactorEmailEnterEmail": {
"message": "כתוב את כתובת המייל שאליה ישלחו קודי האימות"
},
"twoFactorEmailEnterCode": {
"message": "הכנס את קוד האימות בן 6 הספרות מהאימייל"
},
"sendEmail": {
"message": "שלח דוא\"ל"
},
"twoFactorU2fAdd": {
"message": "הוסף מפתח אבטחה מסוג FIDO U2F לחשבון שלך"
},
"removeU2fConfirmation": {
"message": "האם אתה בטוח שברצונך למחוק מפתח אבטחה זה?"
},
"twoFactorWebAuthnAdd": {
"message": "Add a WebAuthn security key to your account"
},
"readKey": {
"message": "קרא מפתח"
},
"keyCompromised": {
"message": "המפתח נחשף."
},
"twoFactorU2fGiveName": {
"message": "הענק שם ידידותי למפתח האבטחה עבור זיהוי קל ומהיר."
},
"twoFactorU2fPlugInReadKey": {
"message": "חבר את מפתח האבטחה לכניסת הUSB במחשב שלך, ולחץ על הכפתור \"קרא מפתח\"."
},
"twoFactorU2fTouchButton": {
"message": "אם למפתח האבטחה יש כפתור, לחץ עליו."
},
"twoFactorU2fSaveForm": {
"message": "שמור את הטופס."
},
"twoFactorU2fWarning": {
"message": "עקב מגבלות פלטפורמה, לא ניתן להשתמש בFIDO U2F בכל האפליקציות של Bitwarden. עליך לאפשר ספק כניסה דו-שלבית נוסף למקרה שבו הFIDO U2F שלך לא זמין. פלטפורמות נתמכות:"
},
"twoFactorU2fSupportWeb": {
"message": "כספת ברשת ותוספי אבטחה למחשב נייח\\נייד עם דפדפן תומך בU2F (כרום, אופרה, Vivaldi, או פיירפוקס עם תמיכה בFIDO U2F)."
},
"twoFactorU2fWaiting": {
"message": "ממתין ללחיצה על כפתור במפתח האבטחה שלך"
},
"twoFactorU2fClickSave": {
"message": "לחץ על כפתור \"שמירה\" בכדי לאפשר כניסה דו-שלבית בעזרת מפתח אבטחה זה."
},
"twoFactorU2fProblemReadingTryAgain": {
"message": "היתה בעיה בקריאת מפתח האבטחה. נסה בשנית."
},
"twoFactorWebAuthnWarning": {
"message": "Due to platform limitations, WebAuthn cannot be used on all Bitwarden applications. You should enable another two-step login provider so that you can access your account when WebAuthn cannot be used. Supported platforms:"
},
"twoFactorWebAuthnSupportWeb": {
"message": "Web vault and browser extensions on a desktop/laptop with a WebAuthn enabled browser (Chrome, Opera, Vivaldi, or Firefox with FIDO U2F enabled)."
},
"twoFactorRecoveryYourCode": {
"message": "קוד השחזור שלך עבור כניסה דו שלבית לBitwarden"
},
"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": "מצאנו $COUNT$ פריטים בכספת שלך המכילים כתובות לא מאובטחות. אנו ממליצים לשנות את הכתובות לתחילית https:// אם האתר מאפשר זאת.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noUnsecuredWebsites": {
"message": "לא נמצאו פריטים בכספת המכילים כתובות לא מאובטחות."
},
"inactive2faReport": {
"message": "דוח 2FA לא פעילים"
},
"inactive2faReportDesc": {
"message": "אימות דו-שלבי (2FA) היא הגדרת אבטחה חשובה שעוזרת לאבטח את החשבון שלך. אם האתר מאפשר זאת, מומלץ לאפשר את האימות הדו-שלבי."
},
"inactive2faFound": {
"message": "נמצאו פרטי כניסות שלא פעילה בהן אופציית 2FA"
},
"inactive2faFoundDesc": {
"message": "מצאנו $COUNT$ אתר(ים) בכספת שלך שלא מוגדרים לעבוד עם אימות דו-שלבי (לפי twofactorauth.org). בכדי להגן על החשבונות הללו, עליך להפעיל את האימות הדו-שלבי עבורם.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noInactive2fa": {
"message": "לא נמצאו אתרים ללא אימות דו-שלבי בכספת שלך."
},
"instructions": {
"message": "הוראות"
},
"exposedPasswordsReport": {
"message": "דו\"ח סיסמאות שנחשפו"
},
"exposedPasswordsReportDesc": {
"message": "סיסמאות שנחשפו הם סיסמאות שנמצאו בפרצות אבטחה ידועות וגלויות לציבור או נמכרות בDark web על ידי האקרים."
},
"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": "סיסמאות חלשות קלות לניחוש על ידי האקרים וכלים אוטומטיים לפריצת סיסמאות. מחולל הסיסמאות של Bitwarden יכול לעזור לך ליצור סיסמאות חזקות."
},
"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$ לא נמצא בפריצות אבטחה ידועות.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
}
}
},
"goodNews": {
"message": "חדשות טובות",
"description": "ex. Good News, No Breached Accounts Found!"
},
"breachUsernameFound": {
"message": "שם המשתמש $USERNAME$ נמצא ב-$COUNT$ פריצות אבטחה שונות.",
"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": "אפשרויות כניסה דו שלבית מתקדמות כמו YubiKey, FIDO U2F, וגם Duo."
},
"premiumSignUpEmergency": {
"message": "Emergency Access"
},
"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$ עבור כל GB למשך $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": "Billing Information"
},
"creditCard": {
"message": "כרטיס אשראי"
},
"paypalClickSubmit": {
"message": "לחץ על כפתור PayPal בכדי להכנס לחשבון PayPal שלך, ואז לחץ על כפתור התשלום כדי להמשיך."
},
"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": "כמות GB של אחסון להוספה"
},
"gbStorageRemove": {
"message": "כמות GB של אחסון להסרה"
},
"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": "ליצירת שרת on-premises בארגון לך עליך להעלות קובץ רשיון תקין."
},
"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": "סנכרן את המשתמשים והקבוצות עם Active Directory"
},
"trackAuditLogs": {
"message": "עקוב אחר פעולות המשתמשים בעזרת יומן ביקורת"
},
"enforce2faDuo": {
"message": "אכוף 2FA עם Dou"
},
"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": "הזמן משתמש חדש לארגון שלך על ידי הזנת כתובת האימייל שלהם שמשמשת אותם בחשבון Bitwarden. אם אין להם חשבון Bitwarden, הם יתבקשו ליצור חשבון."
},
"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": "Moved item $ID$ to an organization.",
"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": "Unlinked SSO for user $ID$.",
"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": "הוזמנת להצטרף לארגון הרשום לעיל. בכדי להסכים, עליך להתחבר או ליצור חשבון Bitwarden חדש."
},
"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": "ביקשת למחוק את חשבון ה-Bitwarden שלך. לחץ על הכפתור למטה בכדי לאשר זאת."
},
"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": "עבור לקוחות בתוך ארצות הברית, יש לכתוב מיקוד לצורך דיווח מיסוי. עבור לקוחות ממדינות אחרות ניתן למלא מספר זיהוי מס (VAT/GST) ו\\או כתובת שתופיע על הקבלות שלך."
},
"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": "ביצענו 2 מיקרו-הפקדות לחשבון הבנק שלך (לפעמים לוקח 1-2 ימי עסקים עד שהם מופיעות). הכנס כאן את הסכומים כדי לוודא את פרטי חשבון הבנק שלך."
},
"verifyBankAccountInitialDesc": {
"message": "אופציית תשלום באמצעות חשבון בנק זמינה אך ורק ללקוחות תושבי ארצות הברית. תצטרך לאמת את פרטי החשבון. אנו נבצע 2 מיקרו-הפקדות בתוך 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": "לאחר עדכון מפתחות ההצפנה שלך, תתבקש לצאת ולהכנס שוב בכל אפליקציות Bitwarden שאתה משתמש בהן (האפליקציה לפלאפון או ההרחבה לדפדפן). אם לא תצא ותכנס שוב (פעולת הכניסה מורידה את המפתח החדש), יתכן שתתקל במידע שגוי. אנו ננסה לגרום ליציאה אוטומטית, אך יתכן שהדבר לא יקרה מיידית."
},
"updateEncryptionKeyExportWarning": {
"message": "Any encrypted exports that you have saved will also become invalid."
},
"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": "5 דקות"
},
"fifteenMinutes": {
"message": "15 דקות"
},
"thirtyMinutes": {
"message": "30 דקות"
},
"oneHour": {
"message": "שעה אחת"
},
"fourHours": {
"message": "4 שעות"
},
"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 הפומבי של Bitwarden."
},
"apiKeyRotateDesc": {
"message": "רוטציית מפתח הAPI הופכת את המפתח הקודם ללא תקין. באפשרותך לבצע רוטציה של מפתח הAPI אם אתה מאמין שהמפתח הנוכחי לא בטוח לשימוש."
},
"apiKeyWarning": {
"message": "למפתח הAPI שלך יש גישה מלאה לארגון שלך. מומלץ מאוד לשמור אותו בסוד."
},
"userApiKeyDesc": {
"message": "מפתח הAPI שלך יכול לשמש עבור אימות מול הCLI של Bitwarden."
},
"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": "בכדי לקבל גישה לכספת שיצאו ממנה, יש לבצע אימות מחדש."
},
"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": "כלול נתוני מעמ/VAT/GST (אופציונאלי)"
},
"taxIdNumber": {
"message": "מזהה מיסוי מעמ/VAT/GST"
},
"taxInfoUpdated": {
"message": "מידע מיסוי עודכן."
},
"setMasterPassword": {
"message": "קבע סיסמה ראשית"
},
"ssoCompleteRegistration": {
"message": "כדי להשלים את הכניסה עם SSO, נא להגדיר סיסמה ראשית כדי לגשת ולהגן על הכספת שלך."
},
"identifier": {
"message": "מזהה"
},
"organizationIdentifier": {
"message": "מזהה ארגוני"
},
"ssoLogInWithOrgIdentifier": {
"message": "הכנס באמצעות פורטל ההזדהות האחודה (SSO) הארגוני שלך. אנא הזן את המזהה הארגוני שלך כדי להתחיל."
},
"enterpriseSingleSignOn": {
"message": "כניסה ארגונית אחודה"
},
"ssoHandOff": {
"message": "ניתן לסגור את הטאב הנוכחי ולהמשיך את השימוש בתוסף."
},
"includeAllTeamsFeatures": {
"message": "כל התכונות הקיימות ב\"צוות\", ובנוסף:"
},
"includeSsoAuthentication": {
"message": "אימות SSO דרך SAML2.0 וOpenID Connect"
},
"includeEnterprisePolicies": {
"message": "מדיניות ארגונית"
},
"ssoValidationFailed": {
"message": "אימות SSO נכשל"
},
"ssoIdentifierRequired": {
"message": "מזהה הארגון נחוץ."
},
"unlinkSso": {
"message": "נתק SSO"
},
"unlinkSsoConfirmation": {
"message": "Are you sure you want to unlink SSO for this organization?"
},
"linkSso": {
"message": "חבר SSO"
},
"singleOrg": {
"message": "ארגון יחידני"
},
"singleOrgDesc": {
"message": "מונע מהמשתמשים אפשרות צירוף לארגונים אחרים."
},
"singleOrgBlockCreateMessage": {
"message": "לפי מדיניות הארגון שלך, אין באפשרותך להצטרף ליותר מארגון אחד. אנא צור קשר עם מנהלי הארגון שלך, או לחלופין - צור חשבון Bitwarden נפרד."
},
"singleOrgPolicyWarning": {
"message": "חברי ארגון שאינם הבעלים או המנהלים וכבר עכשיו הם חלק מארגון אחר - יוסרו מהארגון שלך."
},
"requireSso": {
"message": "אימות בעזרת כניסה אחודה"
},
"requireSsoPolicyDesc": {
"message": "מחייב את המשתמשים להשתמש בכניסה אחודה של הארגון."
},
"prerequisite": {
"message": "תנאים מקדימים"
},
"requireSsoPolicyReq": {
"message": "יש לסמן את מדיניות הארגון היחידני לפני הפעלת מדיניות זו."
},
"requireSsoPolicyReqError": {
"message": "מדיניות ארגון יחידני לא הופעלה."
},
"requireSsoExemption": {
"message": "מנהלי ובעלי הארגון מוחרגים מאכיפת מדיניות זו."
},
"sendTypeFile": {
"message": "קובץ"
},
"sendTypeText": {
"message": "טקסט"
},
"createSend": {
"message": "צור Send חדש",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editSend": {
"message": "ערוך Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createdSend": {
"message": "הSend נוצר בהצלחה",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedSend": {
"message": "הSend נערך",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletedSend": {
"message": "הSend נמחק",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSend": {
"message": "מחק Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSendConfirmation": {
"message": "האם אתה בטוח שברצונך למחוק Send זה?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"whatTypeOfSend": {
"message": "מה סוג הSend?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletionDate": {
"message": "תאריך מחיקה"
},
"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": "תאריך תפוגה"
},
"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": "כמות גישות מקסימלית"
},
"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": "כמות גישות נוכחית"
},
"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": "מבוטל"
},
"sendLink": {
"message": "לינק לSend",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"copySendLink": {
"message": "העתק לינק לSend",
"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": "Hide my email address from recipients."
},
"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": "כל הSendים"
},
"maxAccessCountReached": {
"message": "Max access count reached",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
"pendingDeletion": {
"message": "ממתין להסרה"
},
"expired": {
"message": "פג תוקף"
},
"searchSends": {
"message": "חיפוש Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPassword": {
"message": "הSend הזה מוגן בסיסמה. אנא הזן את הסיסמה כדי להמשיך.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPasswordDontKnow": {
"message": "לא יודע מה הסיסמה? בקש מהשולח את הסיסמה עבור הSend.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendHiddenByDefault": {
"message": "הSend הזה מוסתר כברירת מחדל. באפשרותך לשנות את מצב ההסתרה בעזרת הכפתור להלן.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"downloadFile": {
"message": "הורד קובץ"
},
"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": "אין Sendים להצגה ברשימה.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"emergencyAccess": {
"message": "Emergency Access"
},
"emergencyAccessDesc": {
"message": "Grant and manage emergency access for trusted contacts. Trusted contacts may request access to either View or Takeover your account in case of an emergency. Visit our help page for more information and details into how zero knowledge sharing works."
},
"emergencyAccessOwnerWarning": {
"message": "You are an Owner of one or more organizations. If you give takeover access to an emergency contact, they will be able to use all your permissions as Owner after a takeover."
},
"trustedEmergencyContacts": {
"message": "Trusted emergency contacts"
},
"noTrustedContacts": {
"message": "You have not added any emergency contacts yet, invite a trusted contact to get started."
},
"addEmergencyContact": {
"message": "Add emergency contact"
},
"designatedEmergencyContacts": {
"message": "Designated as emergency contact"
},
"noGrantedAccess": {
"message": "You have not been designated as an emergency contact for anyone yet."
},
"inviteEmergencyContact": {
"message": "Invite emergency contact"
},
"editEmergencyContact": {
"message": "Edit emergency contact"
},
"inviteEmergencyContactDesc": {
"message": "Invite a new emergency contact 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."
},
"emergencyAccessRecoveryInitiated": {
"message": "Emergency Access Initiated"
},
"emergencyAccessRecoveryApproved": {
"message": "Emergency Access Approved"
},
"viewDesc": {
"message": "Can view all items in your own vault."
},
"takeover": {
"message": "Takeover"
},
"takeoverDesc": {
"message": "Can reset your account with a new master password."
},
"waitTime": {
"message": "Wait Time"
},
"waitTimeDesc": {
"message": "Time required before automatically granting access."
},
"oneDay": {
"message": "1 day"
},
"days": {
"message": "$DAYS$ days",
"placeholders": {
"days": {
"content": "$1",
"example": "1"
}
}
},
"invitedUser": {
"message": "Invited user."
},
"acceptEmergencyAccess": {
"message": "You've been invited to become an emergency contact for the user listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
},
"emergencyInviteAcceptFailed": {
"message": "Unable to accept invitation. Ask the user to send a new invitation."
},
"emergencyInviteAcceptFailedShort": {
"message": "Unable to accept invitation. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"emergencyInviteAcceptedDesc": {
"message": "You can access the emergency options for this user after your identity has been confirmed. We'll send you an email when that happens."
},
"requestAccess": {
"message": "Request Access"
},
"requestAccessConfirmation": {
"message": "Are you sure you want to request emergency access? You will be provided access after $WAITTIME$ day(s) or whenever the user manually approves the request.",
"placeholders": {
"waittime": {
"content": "$1",
"example": "1"
}
}
},
"requestSent": {
"message": "Emergency access requested for $USER$. We'll notify you by email when it's possible to continue.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"approve": {
"message": "Approve"
},
"reject": {
"message": "Reject"
},
"approveAccessConfirmation": {
"message": "Are you sure you want to approve emergency access? This will allow $USER$ to $ACTION$ your account.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
},
"action": {
"content": "$2",
"example": "View"
}
}
},
"emergencyApproved": {
"message": "Emergency access approved."
},
"emergencyRejected": {
"message": "Emergency access rejected"
},
"passwordResetFor": {
"message": "Password reset for $USER$. You can now login using the new password.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"personalOwnership": {
"message": "Personal Ownership"
},
"personalOwnershipPolicyDesc": {
"message": "Require users to save vault items to an organization by removing the personal ownership option."
},
"personalOwnershipExemption": {
"message": "Organization Owners and Administrators are exempt from this policy's enforcement."
},
"personalOwnershipSubmitError": {
"message": "Due to an enterprise policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections."
},
"disableSend": {
"message": "Disable 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": "Organization users that can manage the organization's policies are exempt from this policy's enforcement."
},
"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": "Send Options",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyDesc": {
"message": "Set options for creating and editing Sends.",
"description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsExemption": {
"message": "Organization users that can manage the organization's policies are exempt from this policy's enforcement."
},
"disableHideEmail": {
"message": "Do not allow users to hide their email address from recipients when creating or editing a Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyInEffect": {
"message": "The following organization policies are currently in effect:"
},
"sendDisableHideEmailInEffect": {
"message": "Users are not allowed to hide their email address from recipients when creating or editing a Send.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"modifiedPolicyId": {
"message": "Modified policy $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"planPrice": {
"message": "Plan price"
},
"estimatedTax": {
"message": "Estimated tax"
},
"custom": {
"message": "Custom"
},
"customDesc": {
"message": "Allows more granular control of user permissions for advanced configurations."
},
"permissions": {
"message": "Permissions"
},
"accessEventLogs": {
"message": "Access Event Logs"
},
"accessImportExport": {
"message": "Access Import/Export"
},
"accessReports": {
"message": "Access Reports"
},
"missingPermissions": {
"message": "You lack the necessary permissions to perform this action."
},
"manageAllCollections": {
"message": "Manage All Collections"
},
"createNewCollections": {
"message": "Create New Collections"
},
"editAnyCollection": {
"message": "Edit Any Collection"
},
"deleteAnyCollection": {
"message": "Delete Any Collection"
},
"manageAssignedCollections": {
"message": "Manage Assigned Collections"
},
"editAssignedCollections": {
"message": "Edit Assigned Collections"
},
"deleteAssignedCollections": {
"message": "Delete Assigned Collections"
},
"manageGroups": {
"message": "Manage Groups"
},
"managePolicies": {
"message": "Manage Policies"
},
"manageSso": {
"message": "Manage SSO"
},
"manageUsers": {
"message": "Manage Users"
},
"manageResetPassword": {
"message": "Manage Password Reset"
},
"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": "An organization policy is affecting your ownership options."
},
"personalOwnershipPolicyInEffectImports": {
"message": "An organization policy has disabled importing items into your personal vault."
},
"personalOwnershipCheckboxDesc": {
"message": "Disable personal ownership for organization users"
},
"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": "The text you want to send."
},
"sendFileDesc": {
"message": "The file you want to send."
},
"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": "Learn more about",
"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": "Share text or files directly with anyone."
},
"sendVaultCardLearnMore": {
"message": "Learn more",
"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": "see",
"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": "how it works",
"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": "or",
"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": "try it now",
"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": "or",
"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": "sign up",
"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": "to try it today.",
"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 user $USER_IDENTIFIER$ shared the following with you",
"placeholders": {
"user_identifier": {
"content": "$1",
"example": "An email address"
}
}
},
"viewSendHiddenEmailWarning": {
"message": "The Bitwarden user who created this Send has chosen to hide their email address. You should ensure you trust the source of this link before using or downloading its content.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDateIsInvalid": {
"message": "The expiration date provided is not valid."
},
"deletionDateIsInvalid": {
"message": "The deletion date provided is not valid."
},
"expirationDateAndTimeRequired": {
"message": "An expiration date and time are required."
},
"deletionDateAndTimeRequired": {
"message": "A deletion date and time are required."
},
"dateParsingError": {
"message": "There was an error saving your deletion and expiration dates."
},
"webAuthnFallbackMsg": {
"message": "To verify your 2FA please click the button below."
},
"webAuthnAuthenticate": {
"message": "Authenticate WebAuthn"
},
"webAuthnNotSupported": {
"message": "WebAuthn is not supported in this browser."
},
"webAuthnSuccess": {
"message": "WebAuthn verified successfully! You may close this tab."
},
"hintEqualsPassword": {
"message": "Your password hint cannot be the same as your password."
},
"enrollPasswordReset": {
"message": "Enroll in Password Reset"
},
"enrolledPasswordReset": {
"message": "Enrolled in Password Reset"
},
"withdrawPasswordReset": {
"message": "Withdraw from Password Reset"
},
"enrollPasswordResetSuccess": {
"message": "Enrollment success!"
},
"withdrawPasswordResetSuccess": {
"message": "Withdrawal success!"
},
"eventEnrollPasswordReset": {
"message": "User $ID$ enrolled in password reset assistance.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventWithdrawPasswordReset": {
"message": "User $ID$ withdrew from password reset assistance.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventAdminPasswordReset": {
"message": "Master password reset for user $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": "Reset Password"
},
"resetPasswordLoggedOutWarning": {
"message": "Proceeding will log $NAME$ out of their current session, requiring them to log back in. Active sessions on other devices may continue to remain active for up to one hour.",
"placeholders": {
"name": {
"content": "$1",
"example": "John Smith"
}
}
},
"thisUser": {
"message": "this user"
},
"resetPasswordMasterPasswordPolicyInEffect": {
"message": "One or more organization policies require the master password to meet the following requirements:"
},
"resetPasswordSuccess": {
"message": "Password reset success!"
},
"resetPasswordEnrollmentWarning": {
"message": "Enrollment will allow organization administrators to change your master password. Are you sure you want to enroll?"
},
"resetPasswordPolicy": {
"message": "Master Password Reset"
},
"resetPasswordPolicyDescription": {
"message": "Allow administrators in the organization to reset organization users' master password."
},
"resetPasswordPolicyWarning": {
"message": "Users in the organization will need to self-enroll or be auto-enrolled before administrators can reset their master password."
},
"resetPasswordPolicyAutoEnroll": {
"message": "Automatic Enrollment"
},
"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": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
},
"resetPasswordPolicyAutoEnrollCheckbox": {
"message": "Require new users to be enrolled automatically"
},
"resetPasswordAutoEnrollInviteWarning": {
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
},
"resetPasswordOrgKeysError": {
"message": "Organization Keys response is null"
},
"resetPasswordDetailsError": {
"message": "Reset Password Details response is null"
},
"trashCleanupWarning": {
"message": "Items that have been in Trash more than 30 days will be automatically deleted."
},
"trashCleanupWarningSelfHosted": {
"message": "Items that have been in Trash for a while will be automatically deleted."
},
"passwordPrompt": {
"message": "Master password re-prompt"
},
"passwordConfirmation": {
"message": "Master password confirmation"
},
"passwordConfirmationDesc": {
"message": "This action is protected. To continue, please re-enter your master password to verify your identity."
},
"reinviteSelected": {
"message": "Resend Invitations"
},
"noSelectedUsersApplicable": {
"message": "This action is not applicable to any of the selected users."
},
"removeUsersWarning": {
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
},
"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": "Confirm Selected"
},
"bulkConfirmStatus": {
"message": "Bulk action status"
},
"bulkConfirmMessage": {
"message": "Confirmed successfully."
},
"bulkReinviteMessage": {
"message": "Reinvited successfully."
},
"bulkRemovedMessage": {
"message": "Removed successfully"
},
"bulkFilteredMessage": {
"message": "Excluded, not applicable for this action."
},
"fingerprint": {
"message": "Fingerprint"
},
"removeUsers": {
"message": "Remove Users"
},
"error": {
"message": "Error"
},
"resetPasswordManageUsers": {
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
},
"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/he/messages.json/0 | {
"file_path": "bitwarden/web/src/locales/he/messages.json",
"repo_id": "bitwarden",
"token_count": 74382
} | 154 |
{
"pageTitle": {
"message": "Sejf internetowy $APP_NAME$",
"description": "The title of the website in the browser window.",
"placeholders": {
"app_name": {
"content": "$1",
"example": "Bitwarden"
}
}
},
"whatTypeOfItem": {
"message": "Jakiego rodzaju jest to element?"
},
"name": {
"message": "Nazwa"
},
"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": "Nowy URI"
},
"username": {
"message": "Nazwa użytkownika"
},
"password": {
"message": "Hasło"
},
"newPassword": {
"message": "Nowe hasło"
},
"passphrase": {
"message": "Hasło wyrazowe"
},
"notes": {
"message": "Notatki"
},
"customFields": {
"message": "Pola niestandardowe"
},
"cardholderName": {
"message": "Właściciel karty"
},
"number": {
"message": "Numer"
},
"brand": {
"message": "Wydawca"
},
"expiration": {
"message": "Data wygaśnięcia"
},
"securityCode": {
"message": "Kod zabezpieczający (CVV)"
},
"identityName": {
"message": "Nazwa profilu"
},
"company": {
"message": "Firma"
},
"ssn": {
"message": "Numer PESEL"
},
"passportNumber": {
"message": "Numer paszportu"
},
"licenseNumber": {
"message": "Numer prawa jazdy"
},
"email": {
"message": "Adres e-mail"
},
"phone": {
"message": "Telefon"
},
"january": {
"message": "Styczeń"
},
"february": {
"message": "Luty"
},
"march": {
"message": "Marzec"
},
"april": {
"message": "Kwiecień"
},
"may": {
"message": "Maj"
},
"june": {
"message": "Czerwiec"
},
"july": {
"message": "Lipiec"
},
"august": {
"message": "Sierpień"
},
"september": {
"message": "Wrzesień"
},
"october": {
"message": "Październik"
},
"november": {
"message": "Listopad"
},
"december": {
"message": "Grudzień"
},
"title": {
"message": "Tytuł"
},
"mr": {
"message": "Pan"
},
"mrs": {
"message": "Mrs"
},
"ms": {
"message": "Pani"
},
"dr": {
"message": "Doktor"
},
"expirationMonth": {
"message": "Miesiąc wygaśnięcia"
},
"expirationYear": {
"message": "Rok wygaśnięcia"
},
"authenticatorKeyTotp": {
"message": "Klucz uwierzytelniający (TOTP)"
},
"folder": {
"message": "Folder"
},
"newCustomField": {
"message": "Nowe pole niestandardowe"
},
"value": {
"message": "Wartość"
},
"dragToSort": {
"message": "Przeciągnij, aby posortować"
},
"cfTypeText": {
"message": "Tekst"
},
"cfTypeHidden": {
"message": "Pole maskowane"
},
"cfTypeBoolean": {
"message": "Wartość logiczna"
},
"cfTypeLinked": {
"message": "Powiązane pole",
"description": "This describes a field that is 'linked' (related) to another field."
},
"remove": {
"message": "Usuń"
},
"unassigned": {
"message": "Nieprzypisany"
},
"noneFolder": {
"message": "Nieprzypisane",
"description": "This is the folder for uncategorized items"
},
"addFolder": {
"message": "Dodaj folder"
},
"editFolder": {
"message": "Edytuj folder"
},
"baseDomain": {
"message": "Domena podstawowa",
"description": "Domain name. Ex. website.com"
},
"domainName": {
"message": "Nazwa domeny",
"description": "Domain name. Ex. website.com"
},
"host": {
"message": "Host",
"description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'."
},
"exact": {
"message": "Dokładnie"
},
"startsWith": {
"message": "Rozpoczyna się od"
},
"regEx": {
"message": "Wyrażenie regularne",
"description": "A programming term, also known as 'RegEx'."
},
"matchDetection": {
"message": "Wykrywanie dopasowania",
"description": "URI match detection for auto-fill."
},
"defaultMatchDetection": {
"message": "Domyślne wykrywanie dopasowania",
"description": "Default URI match detection for auto-fill."
},
"never": {
"message": "Nigdy"
},
"toggleVisibility": {
"message": "Pokaż / Ukryj"
},
"toggleCollapse": {
"message": "Zwiń/rozwiń",
"description": "Toggling an expand/collapse state."
},
"generatePassword": {
"message": "Generuj hasło"
},
"checkPassword": {
"message": "Sprawdź, czy hasło zostało ujawnione."
},
"passwordExposed": {
"message": "To hasło znajduje się w $VALUE$ wykradzionej(ych) bazie(ach) danych. Należy je zmienić.",
"placeholders": {
"value": {
"content": "$1",
"example": "2"
}
}
},
"passwordSafe": {
"message": "To hasło nie znajduje się w żadnej znanej wykradzionej bazie danych. Powinno być bezpieczne."
},
"save": {
"message": "Zapisz"
},
"cancel": {
"message": "Anuluj"
},
"canceled": {
"message": "Anulowane"
},
"close": {
"message": "Zamknij"
},
"delete": {
"message": "Usuń"
},
"favorite": {
"message": "Dodaj do ulubionych"
},
"unfavorite": {
"message": "Usuń z ulubionych"
},
"edit": {
"message": "Edytuj"
},
"searchCollection": {
"message": "Szukaj w kolekcji"
},
"searchFolder": {
"message": "Szukaj w folderze"
},
"searchFavorites": {
"message": "Szukaj w ulubionych"
},
"searchType": {
"message": "Szukaj elementu",
"description": "Search item type"
},
"searchVault": {
"message": "Szukaj w sejfie"
},
"allItems": {
"message": "Wszystkie elementy"
},
"favorites": {
"message": "Ulubione"
},
"types": {
"message": "Rodzaje"
},
"typeLogin": {
"message": "Dane logowania"
},
"typeCard": {
"message": "Karta"
},
"typeIdentity": {
"message": "Tożsamość"
},
"typeSecureNote": {
"message": "Bezpieczna notatka"
},
"typeLoginPlural": {
"message": "Dane logowania"
},
"typeCardPlural": {
"message": "Karty"
},
"typeIdentityPlural": {
"message": "Tożsamości"
},
"typeSecureNotePlural": {
"message": "Bezpieczne notatki"
},
"folders": {
"message": "Foldery"
},
"collections": {
"message": "Kolekcje"
},
"firstName": {
"message": "Imię"
},
"middleName": {
"message": "Drugie imię"
},
"lastName": {
"message": "Nazwisko"
},
"fullName": {
"message": "Imię i nazwisko"
},
"address1": {
"message": "Adres 1"
},
"address2": {
"message": "Adres 2"
},
"address3": {
"message": "Adres 3"
},
"cityTown": {
"message": "Miasto"
},
"stateProvince": {
"message": "Województwo"
},
"zipPostalCode": {
"message": "Kod pocztowy"
},
"country": {
"message": "Kraj"
},
"shared": {
"message": "Udostępnione"
},
"attachments": {
"message": "Załączniki"
},
"select": {
"message": "Wybierz"
},
"addItem": {
"message": "Dodaj element"
},
"editItem": {
"message": "Edytuj element"
},
"viewItem": {
"message": "Zobacz element"
},
"ex": {
"message": "np.",
"description": "Short abbreviation for 'example'."
},
"other": {
"message": "Inne"
},
"share": {
"message": "Udostępnij"
},
"moveToOrganization": {
"message": "Przenieś do organizacji"
},
"valueCopied": {
"message": "Skopiowano $VALUE$",
"description": "Value has been copied to the clipboard.",
"placeholders": {
"value": {
"content": "$1",
"example": "Password"
}
}
},
"copyValue": {
"message": "Kopiuj wartość",
"description": "Copy value to clipboard"
},
"copyPassword": {
"message": "Kopiuj hasło",
"description": "Copy password to clipboard"
},
"copyUsername": {
"message": "Kopiuj nazwę użytkownika",
"description": "Copy username to clipboard"
},
"copyNumber": {
"message": "Kopiuj numer karty",
"description": "Copy credit card number"
},
"copySecurityCode": {
"message": "Kopiuj kod zabezpieczający",
"description": "Copy credit card security code (CVV)"
},
"copyUri": {
"message": "Kopiuj URI",
"description": "Copy URI to clipboard"
},
"myVault": {
"message": "Mój sejf"
},
"vault": {
"message": "Sejf"
},
"moveSelectedToOrg": {
"message": "Przenieś zaznaczone do organizacji"
},
"deleteSelected": {
"message": "Usuń zaznaczone"
},
"moveSelected": {
"message": "Przenieś zaznaczone"
},
"selectAll": {
"message": "Zaznacz wszystko"
},
"unselectAll": {
"message": "Odznacz wszystko"
},
"launch": {
"message": "Uruchom"
},
"newAttachment": {
"message": "Dodaj załącznik"
},
"deletedAttachment": {
"message": "Załącznik został usunięty"
},
"deleteAttachmentConfirmation": {
"message": "Czy na pewno chcesz usunąć ten załącznik?"
},
"attachmentSaved": {
"message": "Załącznik został zapisany."
},
"file": {
"message": "Plik"
},
"selectFile": {
"message": "Wybierz plik."
},
"maxFileSize": {
"message": "Maksymalny rozmiar pliku to 500 MB."
},
"updateKey": {
"message": "Nie możesz używać tej funkcji, dopóki nie zaktualizujesz klucza szyfrowania."
},
"addedItem": {
"message": "Element został dodany"
},
"editedItem": {
"message": "Element został zaktualizowany"
},
"movedItemToOrg": {
"message": "Element $ITEMNAME$ został przeniesiony do organizacji $ORGNAME$",
"placeholders": {
"itemname": {
"content": "$1",
"example": "Secret Item"
},
"orgname": {
"content": "$2",
"example": "Company Name"
}
}
},
"movedItemsToOrg": {
"message": "Zaznaczone elementy zostały przeniesione do organizacji $ORGNAME$",
"placeholders": {
"orgname": {
"content": "$1",
"example": "Company Name"
}
}
},
"deleteItem": {
"message": "Usuń element"
},
"deleteFolder": {
"message": "Usuń folder"
},
"deleteAttachment": {
"message": "Usuń załącznik"
},
"deleteItemConfirmation": {
"message": "Czy na pewno chcesz to usunąć?"
},
"deletedItem": {
"message": "Element został przeniesiony do kosza"
},
"deletedItems": {
"message": "Elementy zostały przeniesione do kosza"
},
"movedItems": {
"message": "Przeniesione elementy"
},
"overwritePasswordConfirmation": {
"message": "Czy na pewno chcesz zastąpić obecne hasło?"
},
"editedFolder": {
"message": "Folder został zaktualizowany"
},
"addedFolder": {
"message": "Folder został dodany"
},
"deleteFolderConfirmation": {
"message": "Czy na pewno chcesz usunąć ten folder?"
},
"deletedFolder": {
"message": "Folder został usunięty"
},
"loggedOut": {
"message": "Wylogowano"
},
"loginExpired": {
"message": "Twoja sesja wygasła."
},
"logOutConfirmation": {
"message": "Czy na pewno chcesz się wylogować?"
},
"logOut": {
"message": "Wyloguj się"
},
"ok": {
"message": "Ok"
},
"yes": {
"message": "Tak"
},
"no": {
"message": "Nie"
},
"loginOrCreateNewAccount": {
"message": "Zaloguj się lub utwórz nowe konto, aby uzyskać dostęp do Twojego bezpiecznego sejfu."
},
"createAccount": {
"message": "Utwórz konto"
},
"logIn": {
"message": "Zaloguj się"
},
"submit": {
"message": "Wyślij"
},
"emailAddressDesc": {
"message": "Używaj swojego adresu e-mail do logowania."
},
"yourName": {
"message": "Twoje imię"
},
"yourNameDesc": {
"message": "Jak powinniśmy cię nazywać?"
},
"masterPass": {
"message": "Hasło główne"
},
"masterPassDesc": {
"message": "Hasło główne zapewnia dostęp do sejfu. To bardzo ważne, aby je pamiętać, ponieważ zapomnianego hasła nie będzie można odzyskać."
},
"masterPassHintDesc": {
"message": "Podpowiedź do hasła głównego może pomóc Ci przypomnieć hasło, jeśli je zapomnisz."
},
"reTypeMasterPass": {
"message": "Wpisz ponownie hasło główne"
},
"masterPassHint": {
"message": "Podpowiedź do hasła głównego (opcjonalnie)"
},
"masterPassHintLabel": {
"message": "Podpowiedź do hasła głównego"
},
"settings": {
"message": "Ustawienia"
},
"passwordHint": {
"message": "Podpowiedź do hasła"
},
"enterEmailToGetHint": {
"message": "Wpisz adres e-mail powiązany z kontem, aby otrzymać podpowiedź do hasła głównego."
},
"getMasterPasswordHint": {
"message": "Uzyskaj podpowiedź do hasła głównego"
},
"emailRequired": {
"message": "Adres e-mail jest wymagany."
},
"invalidEmail": {
"message": "Adres e-mail jest nieprawidłowy."
},
"masterPassRequired": {
"message": "Hasło główne jest wymagane."
},
"masterPassLength": {
"message": "Hasło główne musi zawierać co najmniej 8 znaków."
},
"masterPassDoesntMatch": {
"message": "Hasła nie pasują do siebie."
},
"newAccountCreated": {
"message": "Konto zostało utworzone! Teraz możesz się zalogować."
},
"masterPassSent": {
"message": "Wysłaliśmy Tobie wiadomość e-mail z podpowiedzią do hasła głównego."
},
"unexpectedError": {
"message": "Wystąpił nieoczekiwany błąd."
},
"emailAddress": {
"message": "Adres e-mail"
},
"yourVaultIsLocked": {
"message": "Sejf jest zablokowany. Wpisz hasło główne, aby kontynuować."
},
"unlock": {
"message": "Odblokuj"
},
"loggedInAsEmailOn": {
"message": "Zalogowano jako $EMAIL$ do $HOSTNAME$.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
},
"hostname": {
"content": "$2",
"example": "bitwarden.com"
}
}
},
"invalidMasterPassword": {
"message": "Hasło główne jest nieprawidłowe"
},
"lockNow": {
"message": "Zablokuj"
},
"noItemsInList": {
"message": "Brak elementów."
},
"noCollectionsInList": {
"message": "Brak kolekcji do wyświetlenia."
},
"noGroupsInList": {
"message": "Brak grup do wyświetlenia."
},
"noUsersInList": {
"message": "Brak użytkowników do wyświetlenia."
},
"noEventsInList": {
"message": "Brak wydarzeń do wyświetlenia."
},
"newOrganization": {
"message": "Nowa organizacja"
},
"noOrganizationsList": {
"message": "Nie należysz do żadnej organizacji. Organizacje pozwalają na bezpieczne udostępnianie elementów innym użytkownikom."
},
"versionNumber": {
"message": "Wersja $VERSION_NUMBER$",
"placeholders": {
"version_number": {
"content": "$1",
"example": "1.2.3"
}
}
},
"enterVerificationCodeApp": {
"message": "Wpisz 6-cyfrowy kod weryfikacyjny z aplikacji uwierzytelniającej."
},
"enterVerificationCodeEmail": {
"message": "Wpisz 6-cyfrowy kod weryfikacyjny, który został przesłany na adres $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"verificationCodeEmailSent": {
"message": "Kod weryfikacyjny został wysłany na adres $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"rememberMe": {
"message": "Zapamiętaj mnie"
},
"sendVerificationCodeEmailAgain": {
"message": "Wyślij ponownie wiadomość z kodem weryfikacyjnym"
},
"useAnotherTwoStepMethod": {
"message": "Użyj innej metody logowania dwustopniowego"
},
"insertYubiKey": {
"message": "Włóż klucz YubiKey do portu USB komputera, a następnie dotknij jego przycisku."
},
"insertU2f": {
"message": "Włóż klucz bezpieczeństwa do portu USB komputera. Jeśli klucz posiada przycisk, dotknij go."
},
"loginUnavailable": {
"message": "Logowanie jest niedostępne"
},
"noTwoStepProviders": {
"message": "Konto posiada włączoną opcję logowania dwustopniowego, jednak ta przeglądarka nie wspiera żadnego ze skonfigurowanych mechanizmów autoryzacji dwustopniowej."
},
"noTwoStepProviders2": {
"message": "Skorzystaj z obsługiwanej przeglądarki internetowej (takiej jak Chrome) i/lub dodaj dodatkowych dostawców, którzy są lepiej wspierani przez przeglądarki (np. aplikacja uwierzytelniająca)."
},
"twoStepOptions": {
"message": "Opcje logowania dwustopniowego"
},
"recoveryCodeDesc": {
"message": "Utraciłeś dostęp do wszystkich swoich mechanizmów dwustopniowego logowania? Użyj kodów odzyskiwania, aby wyłączyć dwustopniowe logowanie na Twoim koncie."
},
"recoveryCodeTitle": {
"message": "Kod odzyskiwania"
},
"authenticatorAppTitle": {
"message": "Aplikacja uwierzytelniająca"
},
"authenticatorAppDesc": {
"message": "Użyj aplikacji mobilnej (np. Authy lub Google Authenticator) do generowania czasowych kodów weryfikacyjnych.",
"description": "'Authy' and 'Google Authenticator' are product names and should not be translated."
},
"yubiKeyTitle": {
"message": "Klucz bezpieczeństwa YubiKey OTP"
},
"yubiKeyDesc": {
"message": "Użyj YubiKey jako metody dostępu do konta. Działa z YubiKey serii 4, serii 5 i urządzeniami NEO."
},
"duoDesc": {
"message": "Weryfikacja z użyciem Duo Security poprzez aplikację Duo Mobile, SMS, połączenie telefoniczne lub klucz bezpieczeństwa U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
"message": "Weryfikacja dostępu do Twojej organizacji z użyciem Duo Security poprzez aplikację Duo Mobile, SMS, połączenie telefoniczne lub klucz bezpieczeństwa U2F.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"u2fDesc": {
"message": "Użyj dowolnego klucza bezpieczeństwa FIDO U2F, aby uzyskać dostęp do Twojego konta."
},
"u2fTitle": {
"message": "Klucz bezpieczeństwa FIDO U2F"
},
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
"webAuthnDesc": {
"message": "Użyj dowolnego klucza bezpieczeństwa WebAuthn, aby uzyskać dostęp do swojego konta."
},
"webAuthnMigrated": {
"message": "(przeniesiony z FIDO)"
},
"emailTitle": {
"message": "Adres e-mail"
},
"emailDesc": {
"message": "Kody weryfikacyjne zostaną wysłane do Ciebie wiadomością e-mail."
},
"continue": {
"message": "Kontynuuj"
},
"organization": {
"message": "Organizacja"
},
"organizations": {
"message": "Organizacje"
},
"moveToOrgDesc": {
"message": "Wybierz organizację, do której chcesz przenieść ten element. Ta czynność spowoduje utratę własności elementu i przenosi te uprawnienia do organizacji."
},
"moveManyToOrgDesc": {
"message": "Wybierz organizację, do której chcesz przenieść te elementy. Ta czynność spowoduje utratę własności elementów i przenosi te uprawnienia do organizacji."
},
"collectionsDesc": {
"message": "Edytuj kolekcje zawierające ten element. Tylko użytkownicy organizacji posiadający dostęp do tych kolekcji będą mogli zobaczyć ten element."
},
"deleteSelectedItemsDesc": {
"message": "Wybrałeś elementy do usunięcia. Czy na pewno chcesz je wszystkie usunąć?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsDesc": {
"message": "Wybierz folder do którego chcesz przenieść zaznaczone elementy.",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"moveSelectedItemsCountDesc": {
"message": "Zaznaczone elementy: $COUNT$\nElementy możliwe do przeniesienia: $MOVEABLE_COUNT$\nElementy niemożliwe do przeniesienia: $NONMOVEABLE_COUNT$",
"placeholders": {
"count": {
"content": "$1",
"example": "10"
},
"moveable_count": {
"content": "$2",
"example": "8"
},
"nonmoveable_count": {
"content": "$3",
"example": "2"
}
}
},
"verificationCodeTotp": {
"message": "Kod weryfikacyjny (TOTP)"
},
"copyVerificationCode": {
"message": "Kopiuj kod weryfikacyjny"
},
"warning": {
"message": "Ostrzeżenie"
},
"confirmVaultExport": {
"message": "Potwierdź eksportowanie sejfu"
},
"exportWarningDesc": {
"message": "Plik zawiera dane sejfu w niezaszyfrowanym formacie. Nie powinieneś go przechowywać, ani przesyłać poprzez niezabezpieczone kanały (takie jak poczta e-mail). Skasuj go natychmiast po użyciu."
},
"encExportKeyWarningDesc": {
"message": "Dane eksportu zostaną zaszyfrowane za pomocą klucza szyfrowania konta. Jeśli kiedykolwiek zmienisz ten klucz, wyeksportuj dane ponownie, ponieważ nie będziesz w stanie odszyfrować tego pliku."
},
"encExportAccountWarningDesc": {
"message": "Klucze szyfrowania konta są unikalne dla każdego użytkownika Bitwarden, więc nie możesz zaimportować zaszyfrowanego pliku eksportu na inne konto."
},
"export": {
"message": "Eksportuj"
},
"exportVault": {
"message": "Eksportuj sejf"
},
"fileFormat": {
"message": "Format pliku"
},
"exportSuccess": {
"message": "Dane z sejfu zostały wyeksportowane."
},
"passwordGenerator": {
"message": "Generator hasła"
},
"minComplexityScore": {
"message": "Minimalny poziom złożoności"
},
"minNumbers": {
"message": "Minimalna liczba cyfr"
},
"minSpecial": {
"message": "Minimalna liczba znaków specjalnych",
"description": "Minimum Special Characters"
},
"ambiguous": {
"message": "Unikaj niejednoznacznych znaków"
},
"regeneratePassword": {
"message": "Wygeneruj hasło ponownie"
},
"length": {
"message": "Długość"
},
"numWords": {
"message": "Liczba słów"
},
"wordSeparator": {
"message": "Separator słów"
},
"capitalize": {
"message": "Wielkie litery",
"description": "Make the first letter of a work uppercase."
},
"includeNumber": {
"message": "Uwzględnij cyfry"
},
"passwordHistory": {
"message": "Historia haseł"
},
"noPasswordsInList": {
"message": "Brak haseł."
},
"clear": {
"message": "Wyczyść",
"description": "To clear something out. example: To clear browser history."
},
"accountUpdated": {
"message": "Konto zostało zaktualizowane"
},
"changeEmail": {
"message": "Zmień adres e-mail"
},
"changeEmailTwoFactorWarning": {
"message": "Kontynuowanie spowoduje zmianę adresu e-mail konta. Nie spowoduje to zmiany adresu używanego do logowania dwustopniowego. Możesz zmienić ten adres w ustawieniach logowania dwustopniowego."
},
"newEmail": {
"message": "Nowy adres e-mail"
},
"code": {
"message": "Kod"
},
"changeEmailDesc": {
"message": "Wysłaliśmy kod weryfikacyjny na adres $EMAIL$. Sprawdź pocztę i wpisz kod, aby ukończyć proces zmiany adresu e-mail.",
"placeholders": {
"email": {
"content": "$1",
"example": "john.smith@example.com"
}
}
},
"loggedOutWarning": {
"message": "Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę."
},
"emailChanged": {
"message": "Adres e-mail został zmieniony"
},
"logBackIn": {
"message": "Zaloguj się ponownie."
},
"logBackInOthersToo": {
"message": "Zaloguj się ponownie. Jeśli używasz innych aplikacji Bitwarden, wyloguj się i zaloguj ponownie również w nich."
},
"changeMasterPassword": {
"message": "Zmień hasło główne"
},
"masterPasswordChanged": {
"message": "Hasło główne zostało zmienione"
},
"currentMasterPass": {
"message": "Obecne hasło główne"
},
"newMasterPass": {
"message": "Nowe hasło główne"
},
"confirmNewMasterPass": {
"message": "Potwierdź nowe hasło główne"
},
"encKeySettings": {
"message": "Ustawienia klucza szyfrowania"
},
"kdfAlgorithm": {
"message": "Algorytm KDF"
},
"kdfIterations": {
"message": "Iteracje KDF"
},
"kdfIterationsDesc": {
"message": "Wyższa liczba iteracji KDF pomaga chronić hasło główne przed atakami siłowymi. Zalecamy ustawienie wartości $VALUE$ lub wyższej.",
"placeholders": {
"value": {
"content": "$1",
"example": "100,000"
}
}
},
"kdfIterationsWarning": {
"message": "Ustawienie zbyt wysokiej liczby iteracji KDF może skutkować obniżeniem wydajności podczas logowania do Bitwarden (oraz odblokowywania sejfu) na urządzeniach z wolniejszym procesorem. Zalecamy stopniowe zwiększanie tej wartości o $INCREMENT$ i przetestowanie jej na wszystkich swoich urządzeniach.",
"placeholders": {
"increment": {
"content": "$1",
"example": "50,000"
}
}
},
"changeKdf": {
"message": "Zmień KDF"
},
"encKeySettingsChanged": {
"message": "Ustawienia klucza szyfrowania zostały zaktualizowane"
},
"dangerZone": {
"message": "Niebezpieczna strefa"
},
"dangerZoneDesc": {
"message": "Uwaga - te operacje są nieodwracalne!"
},
"deauthorizeSessions": {
"message": "Zakończ sesje"
},
"deauthorizeSessionsDesc": {
"message": "Martwisz się, że jesteś zalogowany na innym urządzeniu? Przejdź poniżej, aby wylogować się ze wszystkich komputerów, których wcześniej używałeś. Ta czynność jest zalecana, jeśli korzystałeś z publicznego komputera lub przypadkowo zapisałeś swoje hasło na cudzym urządzeniu. Ta czynność wyczyści również wszystkie sesje z zapamiętanym logowaniem dwustopniowym."
},
"deauthorizeSessionsWarning": {
"message": "Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Zostaniesz również poproszony o ponowne logowanie dwustopniowe, jeśli masz włączoną tę opcję. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę."
},
"sessionsDeauthorized": {
"message": "Wszystkie sesje zostały zakończone"
},
"purgeVault": {
"message": "Wyczyść sejf"
},
"purgedOrganizationVault": {
"message": "Sejf organizacji został wyczyszczony."
},
"vaultAccessedByProvider": {
"message": "Dostęp do sejfu przez dostawcę."
},
"purgeVaultDesc": {
"message": "Kontynuuj poniżej, aby usunąć wszystkie elementy i foldery z sejfu. Elementy udostępnione organizacji nie zostaną usunięte."
},
"purgeOrgVaultDesc": {
"message": "Przejdź poniżej, aby usunąć wszystkie elementy z sejfu organizacji."
},
"purgeVaultWarning": {
"message": "Wyczyszczenie sejfu jest nieodwracalne. Ta czynność nie może zostać cofnięta."
},
"vaultPurged": {
"message": "Sejf został wyczyszczony."
},
"deleteAccount": {
"message": "Usuń konto"
},
"deleteAccountDesc": {
"message": "Kontynuuj poniżej, aby usunąć konto i wszystkie związane z nim dane."
},
"deleteAccountWarning": {
"message": "Usunięcie konta jest nieodwracalne. Ta czynność nie może zostać cofnięta."
},
"accountDeleted": {
"message": "Konto zostało usunięte"
},
"accountDeletedDesc": {
"message": "Konto zostało zamknięte i wszystkie powiązane z nim dane zostały usunięte."
},
"myAccount": {
"message": "Moje konto"
},
"tools": {
"message": "Narzędzia"
},
"importData": {
"message": "Importuj dane"
},
"importError": {
"message": "Wystąpił błąd podczas importowania"
},
"importErrorDesc": {
"message": "Wystąpił problem z danymi, które chcesz zaimportować. Rozwiąż poniższe problemy w Twoim pliku i spróbuj ponownie."
},
"importSuccess": {
"message": "Dane zostały zaimportowane do sejfu."
},
"importWarning": {
"message": "Importujesz dane do organizacji $ORGANIZATION$. Dane mogą zostać udostępnione członkom organizacji. Czy chcesz kontynuować?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"importFormatError": {
"message": "Dane nie są poprawnie sformatowane. Sprawdź importowany plik i spróbuj ponownie."
},
"importNothingError": {
"message": "Nic nie zostało zaimportowane."
},
"importEncKeyError": {
"message": "Wystąpił błąd podczas odszyfrowywania pliku. Klucz szyfrowania nie pasuje do klucza użytego podczas eksportowania danych."
},
"selectFormat": {
"message": "Wybierz format importowanego pliku"
},
"selectImportFile": {
"message": "Wybierz plik do zaimportowania"
},
"orCopyPasteFileContents": {
"message": "lub skopiuj/wklej treść pliku"
},
"instructionsFor": {
"message": "Instrukcja dla $NAME$",
"description": "The title for the import tool instructions.",
"placeholders": {
"name": {
"content": "$1",
"example": "LastPass (csv)"
}
}
},
"options": {
"message": "Opcje"
},
"optionsDesc": {
"message": "Spersonalizuj swój sejf."
},
"optionsUpdated": {
"message": "Opcje zostały zaktualizowane"
},
"language": {
"message": "Język"
},
"languageDesc": {
"message": "Zmień język używany przez sejf."
},
"disableIcons": {
"message": "Wyłącz ikony stron"
},
"disableIconsDesc": {
"message": "Wyświetlaj rozpoznawalną ikonę serwisu obok danych logowania w sejfie."
},
"enableGravatars": {
"message": "Włącz Gravatary",
"description": "'Gravatar' is the name of a service. See www.gravatar.com"
},
"enableGravatarsDesc": {
"message": "Korzystaj ze zdjęć profilowych załadowanych z serwisu gravatar.com."
},
"enableFullWidth": {
"message": "Włącz układ na całą szerokość",
"description": "Allows scaling the web vault UI's width"
},
"enableFullWidthDesc": {
"message": "Rozszerz układ sejfu internetowego na całą szerokość okna przeglądarki."
},
"default": {
"message": "Domyślny"
},
"domainRules": {
"message": "Reguły domeny"
},
"domainRulesDesc": {
"message": "Jeśli używasz tych samych danych logowania na różnych domenach, możesz zaznaczyć tę stronę jako \"ekwiwalent\". \"Globalne\" domeny to domeny utworzone już przez zespół Bitwarden."
},
"globalEqDomains": {
"message": "Globalne domeny równoważne"
},
"customEqDomains": {
"message": "Niestandardowe domeny równoważne"
},
"exclude": {
"message": "Wyklucz"
},
"include": {
"message": "Dołącz"
},
"customize": {
"message": "Dostosuj"
},
"newCustomDomain": {
"message": "Nowa niestandardowa domena"
},
"newCustomDomainDesc": {
"message": "Wpisz listę domen oddzielonych przecinkami. Dozwolone są tylko \"podstawowe\" domeny. Nie wpisuj subdomen. Przykładowo wpisz \"google.com\", zamiast \"www.google.com\". Możesz również wpisać \"androidapp://nazwa.pakietu\", aby powiązać aplikację Android z innymi domenami."
},
"customDomainX": {
"message": "Niestandardowa domena $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"domainsUpdated": {
"message": "Domeny zostały zaktualizowane"
},
"twoStepLogin": {
"message": "Logowanie dwustopniowe"
},
"twoStepLoginDesc": {
"message": "Zabezpiecz swoje konto poprzez wymóg wykonania dodatkowego kroku podczas logowania."
},
"twoStepLoginOrganizationDesc": {
"message": "Wymagaj logowania dwustopniowego dla użytkowników w Twojej organizacji, poprzez skonfigurowanie dostawców na poziomie organizacji."
},
"twoStepLoginRecoveryWarning": {
"message": "Włączenie logowania dwustopniowego można trwale zablokować konto Bitwarden. Kod odzyskiwania pozwala na dostęp do konta w przypadku, gdy nie będziesz mógł skorzystać ze standardowego dostawcy logowania dwustopniowego (np. w przypadku utraty urządzenia). Pomoc techniczna Bitwarden nie będzie w stanie Ci pomóc, jeśli stracisz dostęp do swojego konta. Zalecamy zapisanie lub wydrukowanie kodu odzyskiwania i przechowywanie go w bezpiecznym miejscu."
},
"viewRecoveryCode": {
"message": "Wyświetl kod odzyskiwania"
},
"providers": {
"message": "Dostawcy",
"description": "Two-step login providers such as YubiKey, Duo, Authenticator apps, Email, etc."
},
"enable": {
"message": "Włącz"
},
"enabled": {
"message": "Włączone"
},
"premium": {
"message": "Premium",
"description": "Premium Membership"
},
"premiumMembership": {
"message": "Konto Premium"
},
"premiumRequired": {
"message": "Konto Premium jest wymagane"
},
"premiumRequiredDesc": {
"message": "Konto Premium jest wymagane, aby skorzystać z tej funkcji."
},
"youHavePremiumAccess": {
"message": "Posiadasz dostęp do funkcji konta Premium"
},
"alreadyPremiumFromOrg": {
"message": "Posiadasz już dostęp do funkcji konta Premium dzięki organizacji, której jesteś członkiem."
},
"manage": {
"message": "Zarządzaj"
},
"disable": {
"message": "Wyłącz"
},
"twoStepLoginProviderEnabled": {
"message": "Ten dostawca logowania dwustopniowego jest już włączony na koncie."
},
"twoStepLoginAuthDesc": {
"message": "Wpisz hasło główne, aby zmienić ustawienia logowania dwustopniowego."
},
"twoStepAuthenticatorDesc": {
"message": "Wykonaj poniższe kroki, aby aktywować logowanie dwustopniowe przez aplikację uwierzytelniającą:"
},
"twoStepAuthenticatorDownloadApp": {
"message": "Pobierz aplikację uwierzytelniającą"
},
"twoStepAuthenticatorNeedApp": {
"message": "Potrzebujesz aplikacji uwierzytelniającej? Pobierz jedną z nich"
},
"iosDevices": {
"message": "Urządzenia z systemem iOS"
},
"androidDevices": {
"message": "Urządzenia z systemem Android"
},
"windowsDevices": {
"message": "Urządzenia z systemem Windows"
},
"twoStepAuthenticatorAppsRecommended": {
"message": "Te aplikacje uwierzytelniające są zalecane, jednak inne również będą działać."
},
"twoStepAuthenticatorScanCode": {
"message": "Zeskanuj kod QR w aplikacji uwierzytelniającej"
},
"key": {
"message": "Klucz"
},
"twoStepAuthenticatorEnterCode": {
"message": "Wpisz 6-cyfrowy kod weryfikacyjny z aplikacji uwierzytelniającej"
},
"twoStepAuthenticatorReaddDesc": {
"message": "Jeśli chcesz dodać inne urządzenie, poniżej znajdziesz kod QR (lub klucz) wymagany przez aplikację uwierzytelniającą."
},
"twoStepDisableDesc": {
"message": "Czy na pewno chcesz wyłączyć tego dostawcę logowania dwustopniowego?"
},
"twoStepDisabled": {
"message": "Dostawca logowania dwustopniowego został wyłączony."
},
"twoFactorYubikeyAdd": {
"message": "Dodaj nowy klucz YubiKey do swojego konta"
},
"twoFactorYubikeyPlugIn": {
"message": "Włóż YubiKey do portu USB swojego komputera."
},
"twoFactorYubikeySelectKey": {
"message": "Wybierz poniżej pierwsze wolne pole YubiKey."
},
"twoFactorYubikeyTouchButton": {
"message": "Dotknij przycisku YubiKey."
},
"twoFactorYubikeySaveForm": {
"message": "Zapisz formularz."
},
"twoFactorYubikeyWarning": {
"message": "Z powodu ograniczeń platformy, klucze YubiKey nie mogą być używane we wszystkich aplikacjach Bitwarden. Musisz włączyć inną metodę logowania dwustopniowego, aby zachować dostęp do konta w pozostałych sytuacjach. Wspierane platformy:"
},
"twoFactorYubikeySupportUsb": {
"message": "Sejf internetowy, aplikacja desktopowa, wiersz poleceń i rozszerzenia dla wszystkich przeglądarek na urządzeniu posiadającym port USB akceptujący Twój klucz YubiKey."
},
"twoFactorYubikeySupportMobile": {
"message": "Aplikacje mobilne na urządzeniach obsługujących NFC lub posiadające port USB, który akceptuje klucz YubiKey."
},
"yubikeyX": {
"message": "YubiKey $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"u2fkeyX": {
"message": "Klucz U2F $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"webAuthnkeyX": {
"message": "Klucz WebAuthn $INDEX$",
"placeholders": {
"index": {
"content": "$1",
"example": "2"
}
}
},
"nfcSupport": {
"message": "Obsługa NFC"
},
"twoFactorYubikeySupportsNfc": {
"message": "Jeden z moich kluczy obsługuje technologię NFC."
},
"twoFactorYubikeySupportsNfcDesc": {
"message": "Jeśli jeden z Twoich kluczy YubiKey obsługuje NFC (np. YubiKey NEO), otrzymasz powiadomienie na urządzeniach mobilnych za każdym razem, gdy zostanie wykryta dostępność NFC."
},
"yubikeysUpdated": {
"message": "Klucze YubiKey zostały zaktualizowane"
},
"disableAllKeys": {
"message": "Wyłącz wszystkie klucze"
},
"twoFactorDuoDesc": {
"message": "Wpisz informacje o aplikacji Bitwarden z panelu administracyjnego Duo."
},
"twoFactorDuoIntegrationKey": {
"message": "Klucz integracji"
},
"twoFactorDuoSecretKey": {
"message": "Tajny klucz"
},
"twoFactorDuoApiHostname": {
"message": "Nazwa domeny interfejsu API"
},
"twoFactorEmailDesc": {
"message": "Wykonaj poniższe kroki, aby aktywować logowanie dwustopniowe przez adres e-mail:"
},
"twoFactorEmailEnterEmail": {
"message": "Wpisz adres e-mail, na który chcesz otrzymywać kody weryfikacyjne"
},
"twoFactorEmailEnterCode": {
"message": "Wpisz 6-cyfrowy kod weryfikacyjny z wiadomości e-mail"
},
"sendEmail": {
"message": "Wyślij wiadomość"
},
"twoFactorU2fAdd": {
"message": "Dodaj klucz bezpieczeństwa FIDO U2F do swojego konta"
},
"removeU2fConfirmation": {
"message": "Czy na pewno chcesz usunąć ten klucz bezpieczeństwa?"
},
"twoFactorWebAuthnAdd": {
"message": "Dodaj klucz bezpieczeństwa WebAuthn do swojego konta"
},
"readKey": {
"message": "Odczytaj klucz"
},
"keyCompromised": {
"message": "Klucz został wykradziony."
},
"twoFactorU2fGiveName": {
"message": "Nadaj kluczowi bezpieczeństwa przyjazną nazwę, aby go łatwiej zidentyfikować."
},
"twoFactorU2fPlugInReadKey": {
"message": "Podłącz klucz bezpieczeństwa do portu USB komputera i kliknij przycisk \"Odczytaj klucz\"."
},
"twoFactorU2fTouchButton": {
"message": "Jeśli klucz bezpieczeństwa posiada przycisk, dotknij go."
},
"twoFactorU2fSaveForm": {
"message": "Zapisz formularz."
},
"twoFactorU2fWarning": {
"message": "Z powodu ograniczeń platformy, klucze FIDO U2F nie mogą być używane we wszystkich aplikacjach Bitwarden. Musisz włączyć inną metodę logowania dwustopniowego, aby zachować dostęp do konta w pozostałych sytuacjach. Wspierane platformy:"
},
"twoFactorU2fSupportWeb": {
"message": "Sejf internetowy i rozszerzenia przeglądarki na komputerze/laptopie z przeglądarką obsługującą U2F (Chrome, Opera, Vivaldi lub Firefox z włączoną obsługą FIDO U2F)."
},
"twoFactorU2fWaiting": {
"message": "Oczekiwanie na dotknięcie klucza bezpieczeństwa"
},
"twoFactorU2fClickSave": {
"message": "Kliknij przycisk \"Zapisz\", aby włączyć ten klucz bezpieczeństwa dla logowania dwustopniowego."
},
"twoFactorU2fProblemReadingTryAgain": {
"message": "Wystąpił problem z odczytem klucza bezpieczeństwa. Spróbuj ponownie."
},
"twoFactorWebAuthnWarning": {
"message": "Z powodu ograniczeń platformy, klucze WebAuthn nie mogą być używane we wszystkich aplikacjach Bitwarden. Musisz włączyć inną metodę logowania dwustopniowego, aby zachować dostęp do konta w pozostałych sytuacjach. Wspierane platformy:"
},
"twoFactorWebAuthnSupportWeb": {
"message": "Sejf internetowy i rozszerzenia przeglądarki na komputerze/laptopie z przeglądarką obsługującą WebAuthn (Chrome, Opera, Vivaldi lub Firefox z włączoną obsługą FIDO U2F)."
},
"twoFactorRecoveryYourCode": {
"message": "Kod odzyskiwania konta Bitwarden"
},
"twoFactorRecoveryNoCode": {
"message": "Nie włączyłeś żadnego dostawcy logowania dwustopniowego. Po włączeniu dostawcy wróć tutaj, aby odczytać swój kod odzyskiwania."
},
"printCode": {
"message": "Wydrukuj kod",
"description": "Print 2FA recovery code"
},
"reports": {
"message": "Raporty"
},
"reportsDesc": {
"message": "Zidentyfikuj i napraw luki bezpieczeństwa na swoich kontach online, klikając raporty poniżej."
},
"unsecuredWebsitesReport": {
"message": "Niezabezpieczone witryny"
},
"unsecuredWebsitesReportDesc": {
"message": "Używanie niezabezpieczonych stron (protokół HTTP) może być niebezpieczne. Jeśli strona na to pozwala, zawsze powinieneś używać protokołu HTTPS, aby Twoje połączenie było szyfrowane."
},
"unsecuredWebsitesFound": {
"message": "Znaleźliśmy niezabezpieczone strony"
},
"unsecuredWebsitesFoundDesc": {
"message": "Znaleźliśmy elementy w Twoim sejfie zawierające niezabezpieczone adresy URI. Jeśli witryna to umożliwia, zmień schemat adresu na protokół HTTPS.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noUnsecuredWebsites": {
"message": "Brak niezabezpieczonych elementów w Twoim sejfie."
},
"inactive2faReport": {
"message": "Raport stron z nieaktywnym logowaniem dwustopniowym"
},
"inactive2faReportDesc": {
"message": "Logowanie dwustopniowe (2FA) jest ważnym ustawieniem bezpieczeństwa, które pomaga chronić Twoje konto. Jeśli witryna to umożliwia, zawsze powinieneś aktywować logowanie dwustopniowe."
},
"inactive2faFound": {
"message": "Znaleźliśmy elementy bez włączonej opcji logowania dwustopniowego"
},
"inactive2faFoundDesc": {
"message": "Znaleźliśmy witryny w sejfie, które mogą nie korzystać z opcji logowania dwustopniowego (według 2fa.directory). Włącz logowanie dwustopniowe, aby dodatkowo zabezpieczyć te konta.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noInactive2fa": {
"message": "Nie znaleźliśmy w sejfie stron z wyłączoną opcją logowania dwustopniowego."
},
"instructions": {
"message": "Instrukcje"
},
"exposedPasswordsReport": {
"message": "Ujawnione hasła"
},
"exposedPasswordsReportDesc": {
"message": "Ujawnione hasła to hasła odkryte w znanych wyciekach danych, które zostały publicznie wydane lub sprzedane w sieci przez hakerów."
},
"exposedPasswordsFound": {
"message": "Znaleźliśmy ujawnione hasła"
},
"exposedPasswordsFoundDesc": {
"message": "Znaleźliśmy elementy w sejfie, które zawierają ujawnione hasła w znanych wyciekach danych. Zmień te hasła.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noExposedPasswords": {
"message": "Brak elementów zawierających ujawnione hasła w znanych wyciekach danych."
},
"checkExposedPasswords": {
"message": "Sprawdź ujawnione hasła"
},
"exposedXTimes": {
"message": "Ujawnione $COUNT$ raz(y)",
"placeholders": {
"count": {
"content": "$1",
"example": "52"
}
}
},
"weakPasswordsReport": {
"message": "Słabe hasła"
},
"weakPasswordsReportDesc": {
"message": "Słabe hasła mogą być łatwo odgadnięte przez hakerów i zautomatyzowane narzędzia używane do łamania haseł. Generator haseł Bitwarden tworzy silne hasła."
},
"weakPasswordsFound": {
"message": "Znaleźliśmy słabe hasła"
},
"weakPasswordsFoundDesc": {
"message": "Znaleźliśmy elementy w sejfie, które zawierają słabe hasła. Zaktualizuj je na silniejsze hasła.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noWeakPasswords": {
"message": "Brak elementów zawierających słabe hasła."
},
"reusedPasswordsReport": {
"message": "Raport identycznych haseł"
},
"reusedPasswordsReportDesc": {
"message": "Jeśli używasz tego samego hasła w różnych miejscach, to w przypadku jego ujawnienia w jednej usłudze, hakerzy mogą uzyskać dostęp do wielu Twoich kont. Powinieneś używać unikalnych haseł dla każdego z kont lub usług."
},
"reusedPasswordsFound": {
"message": "Znaleźliśmy identyczne hasła"
},
"reusedPasswordsFoundDesc": {
"message": "Znaleźliśmy hasła, które powtarzają się w sejfie. Zmień je, aby były unikalne.",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"noReusedPasswords": {
"message": "Nie znaleźliśmy identycznych haseł w sejfie."
},
"reusedXTimes": {
"message": "Wykorzystane $COUNT$ razy",
"placeholders": {
"count": {
"content": "$1",
"example": "8"
}
}
},
"dataBreachReport": {
"message": "Raport naruszeń danych"
},
"breachDesc": {
"message": "\"Wyciek\" jest zdarzeniem, w którym hakerzy uzyskali nielegalny dostęp do danych serwisu, a następnie je upublicznili. Przejrzyj rodzaj danych, które zostały naruszone (adresy e-mail, hasła, karty kredytowe itp.) i podejmij odpowiednie działania, takie jak zmiana hasła."
},
"breachCheckUsernameEmail": {
"message": "Sprawdź nazwy użytkownika lub adresy e-mail, których używasz."
},
"checkBreaches": {
"message": "Sprawdź naruszenia"
},
"breachUsernameNotFound": {
"message": "Nazwa użytkownika $USERNAME$ nie została znaleziona w żadnym znanym wycieku danych.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
}
}
},
"goodNews": {
"message": "Dobra wiadomość",
"description": "ex. Good News, No Breached Accounts Found!"
},
"breachUsernameFound": {
"message": "Nazwa użytkownika $USERNAME$ została znaleziona w wyciekach danych.",
"placeholders": {
"username": {
"content": "$1",
"example": "user@example.com"
},
"count": {
"content": "$2",
"example": "7"
}
}
},
"breachFound": {
"message": "Znaleźliśmy naruszone konta"
},
"compromisedData": {
"message": "Wykradzione dane"
},
"website": {
"message": "Strona"
},
"affectedUsers": {
"message": "Liczba poszkodowanych użytkowników"
},
"breachOccurred": {
"message": "Data wystąpienia naruszenia"
},
"breachReported": {
"message": "Data zgłoszenia naruszenia"
},
"reportError": {
"message": "Wystąpił błąd podczas próby załadowania raportu. Spróbuj ponownie"
},
"billing": {
"message": "Płatności"
},
"accountCredit": {
"message": "Dostępne środki",
"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": "Saldo konta",
"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": "Dodaj środki",
"description": "Add more credit to your account's balance."
},
"amount": {
"message": "Kwota",
"description": "Dollar amount, or quantity."
},
"creditDelayed": {
"message": "Dodane środki pojawią się na twoim koncie po przetworzeniu płatności. Niektóre metody płatności mogą być przetwarzane dłużej niż inne."
},
"makeSureEnoughCredit": {
"message": "Upewnij się, że na koncie posiadasz wystarczająca ilość środków do dokonania tego zakupu. Jeśli na koncie nie ma wystarczających środków, do opłacenia brakującej różnicy zostanie użyta domyślna metoda płatności. Możesz też dodać środki do swojego konta na stronie Płatności."
},
"creditAppliedDesc": {
"message": "Środki dodane do konta mogą zostać użyte do dokonywania płatności. Dostępne środki będą automatycznie wykorzystane do opłacenia faktur wygenerowanych dla tego konta."
},
"goPremium": {
"message": "Przejdź na konto Premium",
"description": "Another way of saying \"Get a premium membership\""
},
"premiumUpdated": {
"message": "Konto Premium zostało zaktualizowane."
},
"premiumUpgradeUnlockFeatures": {
"message": "Zaktualizuj swoje konto do konta Premium i odblokuj dodatkowe funkcje."
},
"premiumSignUpStorage": {
"message": "1 GB przestrzeni na zaszyfrowane załączniki."
},
"premiumSignUpTwoStep": {
"message": "Dodatkowe opcje logowania dwustopniowego, takie jak klucze YubiKey, FIDO U2F oraz Duo."
},
"premiumSignUpEmergency": {
"message": "Dostęp awaryjny"
},
"premiumSignUpReports": {
"message": "Raporty bezpieczeństwa haseł, stanu konta i raporty wycieków danych, aby Twoje dane były bezpieczne."
},
"premiumSignUpTotp": {
"message": "Generator kodów weryfikacyjnych TOTP (2FA) dla danych logowania w sejfie."
},
"premiumSignUpSupport": {
"message": "Priorytetowe wsparcie klienta."
},
"premiumSignUpFuture": {
"message": "Wszystkie przyszłe funkcje Premium. Więcej już wkrótce!"
},
"premiumPrice": {
"message": "Wszystko to jedynie za $PRICE$ /rok!",
"placeholders": {
"price": {
"content": "$1",
"example": "$10"
}
}
},
"addons": {
"message": "Dodatki"
},
"premiumAccess": {
"message": "Konto Premium"
},
"premiumAccessDesc": {
"message": "Możesz przyznać konta Premium wszystkim użytkownikom w Twojej organizacji za $PRICE$ /$INTERVAL$.",
"placeholders": {
"price": {
"content": "$1",
"example": "$3.33"
},
"interval": {
"content": "$2",
"example": "'month' or 'year'"
}
}
},
"additionalStorageGb": {
"message": "Dodatkowa przestrzeń (GB)"
},
"additionalStorageGbDesc": {
"message": "# dodatkowych GB"
},
"additionalStorageIntervalDesc": {
"message": "Twój plan zawiera $SIZE$ szyfrowanej przestrzeni. Możesz zwiększyć rozmiar dostępnej przestrzeni za $PRICE$ za GB/$INTERVAL$.",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
},
"price": {
"content": "$2",
"example": "$4.00"
},
"interval": {
"content": "$3",
"example": "'month' or 'year'"
}
}
},
"summary": {
"message": "Podsumowanie"
},
"total": {
"message": "Łącznie"
},
"year": {
"message": "rok"
},
"month": {
"message": "miesiąc"
},
"monthAbbr": {
"message": "m-c",
"description": "Short abbreviation for 'month'"
},
"paymentChargedAnnually": {
"message": "Płatność zostanie zrealizowana natychmiast i będzie powtarzana corocznie. Możesz zrezygnować z niej w dowolnej chwili."
},
"paymentCharged": {
"message": "Płatność zostanie zrealizowana natychmiast i będzie powtarzana co $INTERVAL$. Możesz zrezygnować z niej w dowolnej chwili.",
"placeholders": {
"interval": {
"content": "$1",
"example": "month or year"
}
}
},
"paymentChargedWithTrial": {
"message": "Twój plan zawiera 7-dniowy okres próbny. W tym czasie nie poniesiesz żadnych kosztów. Możesz zrezygnować z niego w każdej chwili."
},
"paymentInformation": {
"message": "Informacje o płatności"
},
"billingInformation": {
"message": "Informacje o płatności"
},
"creditCard": {
"message": "Karta płatnicza"
},
"paypalClickSubmit": {
"message": "Kliknij przycisk PayPal, aby zalogować się do konta PayPal, a następnie kliknij przycisk Prześlij poniżej, aby kontynuować."
},
"cancelSubscription": {
"message": "Anuluj subskrypcję"
},
"subscriptionCanceled": {
"message": "Subskrypcja została anulowana."
},
"pendingCancellation": {
"message": "Oczekiwanie na anulowanie"
},
"subscriptionPendingCanceled": {
"message": "Subskrypcja została oznaczona do anulowania na koniec obecnego okresu rozliczeniowego."
},
"reinstateSubscription": {
"message": "Przywróć subskrypcję"
},
"reinstateConfirmation": {
"message": "Czy na pewno chcesz cofnąć anulowanie subskrypcji i przywrócić ją?"
},
"reinstated": {
"message": "Subskrypcja została przywrócona."
},
"cancelConfirmation": {
"message": "Czy na pewno chcesz anulować? Dostęp do wszystkich funkcji związanych z tą subskrypcją zostanie wyłączony na koniec tego okresu rozliczeniowego."
},
"canceledSubscription": {
"message": "Subskrypcja została anulowana."
},
"neverExpires": {
"message": "Nigdy nie wygasa"
},
"status": {
"message": "Status"
},
"nextCharge": {
"message": "Następna opłata"
},
"details": {
"message": "Szczegóły"
},
"downloadLicense": {
"message": "Pobierz licencję"
},
"updateLicense": {
"message": "Zaktualizuj licencję"
},
"updatedLicense": {
"message": "Licencja została zaktualizowana"
},
"manageSubscription": {
"message": "Zarządzaj subskrypcją"
},
"storage": {
"message": "Przestrzeń"
},
"addStorage": {
"message": "Dodaj przestrzeń"
},
"removeStorage": {
"message": "Usuń przestrzeń"
},
"subscriptionStorage": {
"message": "Subskrypcja zawiera łącznie $MAX_STORAGE$ GB na przechowywanie zaszyfrowanych plików. Obecnie używasz $USED_STORAGE$.",
"placeholders": {
"max_storage": {
"content": "$1",
"example": "4"
},
"used_storage": {
"content": "$2",
"example": "65 MB"
}
}
},
"paymentMethod": {
"message": "Metoda płatności"
},
"noPaymentMethod": {
"message": "Nie zarejestrowano żadnej metody płatności."
},
"addPaymentMethod": {
"message": "Dodaj metodę płatności"
},
"changePaymentMethod": {
"message": "Zmień metodę płatności"
},
"invoices": {
"message": "Faktury"
},
"noInvoices": {
"message": "Brak faktur."
},
"paid": {
"message": "Zapłacono",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"unpaid": {
"message": "Niezapłacone",
"description": "Past tense status of an invoice. ex. Paid or unpaid."
},
"transactions": {
"message": "Transakcje",
"description": "Payment/credit transactions."
},
"noTransactions": {
"message": "Brak transakcji."
},
"chargeNoun": {
"message": "Opłata",
"description": "Noun. A charge from a payment method."
},
"refundNoun": {
"message": "Zwrot",
"description": "Noun. A refunded payment that was charged."
},
"chargesStatement": {
"message": "Wszelkie opłaty będą widoczne na wyciągu jako $STATEMENT_NAME$.",
"placeholders": {
"statement_name": {
"content": "$1",
"example": "BITWARDEN"
}
}
},
"gbStorageAdd": {
"message": "Wybierz liczbę GB do dodania"
},
"gbStorageRemove": {
"message": "GB przestrzeni do usunięcia"
},
"storageAddNote": {
"message": "Dodanie przestrzeni dyskowej będzie skutkować korektą sumy należności i natychmiastowym obciążeniem konta. Pierwsza opłata zostanie naliczona proporcjonalnie do końca obecnego okresu rozliczeniowego."
},
"storageRemoveNote": {
"message": "Usunięcie przestrzeni dyskowej spowoduje korektę należności, która zostanie wykonana w następnym okresie rozliczeniowym."
},
"adjustedStorage": {
"message": "Zmieniono $AMOUNT$ GB przestrzeni.",
"placeholders": {
"amount": {
"content": "$1",
"example": "5"
}
}
},
"contactSupport": {
"message": "Skontaktuj się z działem obsługi klienta"
},
"updatedPaymentMethod": {
"message": "Metoda płatności została zaktualizowana."
},
"purchasePremium": {
"message": "Kup konto Premium"
},
"licenseFile": {
"message": "Plik licencji"
},
"licenseFileDesc": {
"message": "Plik licencji zostanie nazwany np. $FILE_NAME$",
"placeholders": {
"file_name": {
"content": "$1",
"example": "bitwarden_premium_license.json"
}
}
},
"uploadLicenseFilePremium": {
"message": "Aby aktywować konto Premium, musisz przesłać plik licencyjny."
},
"uploadLicenseFileOrg": {
"message": "Aby utworzyć organizację na własnym serwerze, musisz przesłać plik licencyjny."
},
"accountEmailMustBeVerified": {
"message": "Adres e-mail przypisany do Twojego konta musi zostać zweryfikowany."
},
"newOrganizationDesc": {
"message": "Organizacje pozwalają Ci udostępniać części sejfu, a także zarządzać użytkownikami w jednostkach takich jak rodzina, mały zespół lub duża firma."
},
"generalInformation": {
"message": "Informacje ogólne"
},
"organizationName": {
"message": "Nazwa organizacji"
},
"accountOwnedBusiness": {
"message": "To konto jest własnością firmy."
},
"billingEmail": {
"message": "Adres rozliczeniowy"
},
"businessName": {
"message": "Nazwa firmy"
},
"chooseYourPlan": {
"message": "Wybierz swój plan"
},
"users": {
"message": "Użytkownicy"
},
"userSeats": {
"message": "Stanowiska użytkowników"
},
"additionalUserSeats": {
"message": "Dodatkowe stanowiska użytkowników"
},
"userSeatsDesc": {
"message": "# stanowisk użytkowników"
},
"userSeatsAdditionalDesc": {
"message": "Twój plan zawiera $BASE_SEATS$ stanowisk użytkowników. Możesz dodać dodatkowych użytkowników za $SEAT_PRICE$ za użytkownika /miesiąc.",
"placeholders": {
"base_seats": {
"content": "$1",
"example": "5"
},
"seat_price": {
"content": "$2",
"example": "$2.00"
}
}
},
"userSeatsHowManyDesc": {
"message": "Ilu stanowisk potrzebujesz? W razie potrzeby będziesz mógł także dodać kolejne stanowiska później."
},
"planNameFree": {
"message": "Darmowy",
"description": "Free as in 'free beer'."
},
"planDescFree": {
"message": "Dla celów testowych lub użytku osobistego możesz udostępniać elementy $COUNT$ innym użytkownikom.",
"placeholders": {
"count": {
"content": "$1",
"example": "1"
}
}
},
"planNameFamilies": {
"message": "Rodzinny"
},
"planDescFamilies": {
"message": "Dla użytku osobistego, aby udostępniać rodzinie i przyjaciołom."
},
"planNameTeams": {
"message": "Zespoły"
},
"planDescTeams": {
"message": "Dla firm i innych zorganizowanych zespołów."
},
"planNameEnterprise": {
"message": "Przedsiębiorstwo"
},
"planDescEnterprise": {
"message": "Dla firm i innych dużych organizacji."
},
"freeForever": {
"message": "Darmowy na zawsze"
},
"includesXUsers": {
"message": "zawiera $COUNT$ użytkowników",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"additionalUsers": {
"message": "Dodatkowi użytkownicy"
},
"costPerUser": {
"message": "$COST$ na użytkownika",
"placeholders": {
"cost": {
"content": "$1",
"example": "$3"
}
}
},
"limitedUsers": {
"message": "Ograniczony do $COUNT$ użytkowników (łącznie z Tobą)",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"limitedCollections": {
"message": "Ograniczony do $COUNT$ kolekcji",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"addShareLimitedUsers": {
"message": "Dodaj i udostępnij maksymalnie $COUNT$ użytkownikom",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"addShareUnlimitedUsers": {
"message": "Dodaj i udostępnij nieograniczonej liczbie użytkowników"
},
"createUnlimitedCollections": {
"message": "Utwórz nieograniczoną liczbę kolekcji"
},
"gbEncryptedFileStorage": {
"message": "$SIZE$ szyfrowanej przestrzeni",
"placeholders": {
"size": {
"content": "$1",
"example": "1 GB"
}
}
},
"onPremHostingOptional": {
"message": "Samodzielnie hostowane środowisko (opcjonalnie)"
},
"usersGetPremium": {
"message": "Użytkownicy uzyskują dostęp do kont Premium"
},
"controlAccessWithGroups": {
"message": "Kontroluj dostęp z użyciem grup użytkowników"
},
"syncUsersFromDirectory": {
"message": "Synchronizuj użytkowników i grupy z użyciem katalogu"
},
"trackAuditLogs": {
"message": "Śledź działania użytkowników dzięki dziennikom audytu"
},
"enforce2faDuo": {
"message": "Wymagaj logowania dwustopniowego poprzez Duo"
},
"priorityCustomerSupport": {
"message": "Priorytetowe wsparcie klienta"
},
"xDayFreeTrial": {
"message": "$COUNT$-dniowy okres próbny z możliwością rezygnacji w każdej chwili",
"placeholders": {
"count": {
"content": "$1",
"example": "7"
}
}
},
"monthly": {
"message": "Miesięcznie"
},
"annually": {
"message": "Rocznie"
},
"basePrice": {
"message": "Cena netto"
},
"organizationCreated": {
"message": "Organizacja została utworzona"
},
"organizationReadyToGo": {
"message": "Twoja nowa organizacja jest gotowa!"
},
"organizationUpgraded": {
"message": "Organizacja została zaktualizowana."
},
"leave": {
"message": "Opuść"
},
"leaveOrganizationConfirmation": {
"message": "Czy na pewno chcesz opuścić tę organizację?"
},
"leftOrganization": {
"message": "Nie należysz już do tej organizacji."
},
"defaultCollection": {
"message": "Domyślna kolekcja"
},
"getHelp": {
"message": "Uzyskaj pomoc"
},
"getApps": {
"message": "Pobierz aplikacje"
},
"loggedInAs": {
"message": "Zalogowany jako"
},
"eventLogs": {
"message": "Dziennik zdarzeń"
},
"people": {
"message": "Użytkownicy"
},
"policies": {
"message": "Zasady"
},
"singleSignOn": {
"message": "Logowanie jednokrotne"
},
"editPolicy": {
"message": "Edytuj zasady"
},
"groups": {
"message": "Grupy"
},
"newGroup": {
"message": "Nowa grupa"
},
"addGroup": {
"message": "Dodaj grupę"
},
"editGroup": {
"message": "Edytuj grupę"
},
"deleteGroupConfirmation": {
"message": "Czy na pewno chcesz usunąć tę grupę?"
},
"removeUserConfirmation": {
"message": "Czy na pewno chcesz usunąć tego użytkownika?"
},
"removeUserConfirmationKeyConnector": {
"message": "Ostrzeżenie! Ten użytkownik wymaga serwera Key Connector do zarządzania szyfrowaniem. Usunięcie tego użytkownika z organizacji spowoduje trwałe wyłączenie jego konta. Nie możesz cofnąć tej akcji. Czy chcesz kontynuować?"
},
"externalId": {
"message": "Identyfikator zewnętrzny"
},
"externalIdDesc": {
"message": "Zewnętrzny identyfikator może zostać użyty jako odniesienie lub połączenie tego zasobu z zewnętrznym systemem, takim jak katalog użytkowników."
},
"accessControl": {
"message": "Kontrola dostępu"
},
"groupAccessAllItems": {
"message": "Ta grupa może otwierać i modyfikować wszystkie elementy."
},
"groupAccessSelectedCollections": {
"message": "Ta grupa posiada dostęp wyłącznie do wybranych kolekcji."
},
"readOnly": {
"message": "Tylko do odczytu"
},
"newCollection": {
"message": "Nowa kolekcja"
},
"addCollection": {
"message": "Dodaj kolekcję"
},
"editCollection": {
"message": "Edytuj kolekcję"
},
"deleteCollectionConfirmation": {
"message": "Czy na pewno chcesz usunąć tę kolekcję?"
},
"editUser": {
"message": "Edytuj użytkownika"
},
"inviteUser": {
"message": "Zaproś użytkownika"
},
"inviteUserDesc": {
"message": "Zaproś nowego użytkownika do Twojej organizacji poprzez wpisanie poniżej jego adresu e-mail. Jeśli nie posiada on jeszcze konta Bitwarden, zostanie poproszony o jego utworzenie."
},
"inviteMultipleEmailDesc": {
"message": "Możesz zaprosić do $COUNT$ użytkowników jednocześnie, wpisując ich adresy e-mail oddzielone przecinkiem.",
"placeholders": {
"count": {
"content": "$1",
"example": "20"
}
}
},
"userUsingTwoStep": {
"message": "Ten użytkownik korzysta z logowania dwustopniowego, aby chronić swoje konto."
},
"userAccessAllItems": {
"message": "Ten użytkownik może otwierać i modyfikować wszystkie elementy."
},
"userAccessSelectedCollections": {
"message": "Ten użytkownik posiada dostęp wyłącznie do wybranych kolekcji."
},
"search": {
"message": "Szukaj"
},
"invited": {
"message": "Zaproszony"
},
"accepted": {
"message": "Zaakceptowany"
},
"confirmed": {
"message": "Potwierdzone"
},
"clientOwnerEmail": {
"message": "Adres e-mail właściciela organizacji"
},
"owner": {
"message": "Właściciel"
},
"ownerDesc": {
"message": "Użytkownik z najwyższym uprawnieniem, który może zarządzać wszystkimi ustawieniami organizacji."
},
"clientOwnerDesc": {
"message": "Ten użytkownik powinien być niezależny od dostawcy. Jeśli dostawca zostanie odłączony od organizacji, użytkownik ten zachowa własność organizacji."
},
"admin": {
"message": "Administrator"
},
"adminDesc": {
"message": "Administratorzy posiadają dostęp do wszystkich elementów, kolekcji i użytkowników w Twojej organizacji."
},
"user": {
"message": "Użytkownik"
},
"userDesc": {
"message": "Standardowy użytkownik, posiadający dostęp do kolekcji w Twojej organizacji."
},
"manager": {
"message": "Menedżer"
},
"managerDesc": {
"message": "Menedżerowie mogą uzyskiwać dostęp do przypisanych kolekcji i zarządzać nimi w organizacji."
},
"all": {
"message": "Wszyscy"
},
"refresh": {
"message": "Odśwież"
},
"timestamp": {
"message": "Sygnatura czasowa"
},
"event": {
"message": "Zdarzenie"
},
"unknown": {
"message": "Nieznane"
},
"loadMore": {
"message": "Załaduj więcej"
},
"mobile": {
"message": "Komórka",
"description": "Mobile app"
},
"extension": {
"message": "Rozszerzenie",
"description": "Browser extension/addon"
},
"desktop": {
"message": "Komputer",
"description": "Desktop app"
},
"webVault": {
"message": "Sejf internetowy"
},
"loggedIn": {
"message": "Zalogowano."
},
"changedPassword": {
"message": "Hasło do konta zostało zmienione."
},
"enabledUpdated2fa": {
"message": "Logowanie dwustopniowe zostało zaktualizowane."
},
"disabled2fa": {
"message": "Logowanie dwustopniowe zostało wyłączone."
},
"recovered2fa": {
"message": "Logowanie dwustopniowe zostało wyłączone."
},
"failedLogin": {
"message": "Logowanie nie powiodło się z powodu błędnego hasła."
},
"failedLogin2fa": {
"message": "Logowanie nie powiodło się z powodu nieprawidłowego logowania dwustopniowego."
},
"exportedVault": {
"message": "Sejf został wyeksportowany."
},
"exportedOrganizationVault": {
"message": "Sejf organizacji został wyeksportowany."
},
"editedOrgSettings": {
"message": "Ustawienia organizacji zostały zaktualizowane."
},
"createdItemId": {
"message": "Element $ID$ został utworzony.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedItemId": {
"message": "Element $ID$ został zaktualizowany.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedItemId": {
"message": "Element $ID$ został przeniesiony do kosza.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"movedItemIdToOrg": {
"message": "Element $ID$ został przeniesiony do organizacji.",
"placeholders": {
"id": {
"content": "$1",
"example": "'Google'"
}
}
},
"viewedItemId": {
"message": "Wyświetlono element $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedPasswordItemId": {
"message": "Hasło dla elementu $ID$ zostało wyświetlone.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedHiddenFieldItemId": {
"message": "Wyświetlono ukryte pole dla elementu $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"viewedSecurityCodeItemId": {
"message": "Wyświetlono kod bezpieczeństwa dla elementu $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedPasswordItemId": {
"message": "Hasło dla elementu $ID$ zostało skopiowane.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedHiddenFieldItemId": {
"message": "Skopiowano ukryte pole dla elementu $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"copiedSecurityCodeItemId": {
"message": "Skopiowano kod bezpieczeństwa dla elementu $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"autofilledItemId": {
"message": "Element $ID$ został automatycznie uzupełniony.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"createdCollectionId": {
"message": "Kolekcja $ID$ została utworzona.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedCollectionId": {
"message": "Kolekcja $ID$ została zaktualizowana.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"deletedCollectionId": {
"message": "Kolekcja $ID$ została usunięta.",
"placeholders": {
"id": {
"content": "$1",
"example": "Server Passwords"
}
}
},
"editedPolicyId": {
"message": "Zasada $ID$ została zaktualizowana.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"createdGroupId": {
"message": "Grupa $ID$ została utworzona.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"editedGroupId": {
"message": "Grupa $ID$ została zaktualizowana.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"deletedGroupId": {
"message": "Grupa $ID$ została usunięta.",
"placeholders": {
"id": {
"content": "$1",
"example": "Developers"
}
}
},
"removedUserId": {
"message": "Użytkownik $ID$ został usunięty.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdAttachmentForItem": {
"message": "Załącznik elementu $ID$ został utworzony.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"deletedAttachmentForItem": {
"message": "Załącznik elementu $ID$ został usunięty.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"editedCollectionsForItem": {
"message": "Kolekcje elementu $ID$ zostały zaktualizowane.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"invitedUserId": {
"message": "Użytkownik $ID$ został zaproszony.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmedUserId": {
"message": "Użytkownik $ID$ został potwierdzony.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedUserId": {
"message": "Użytkownik $ID$ został zaktualizowany.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"editedGroupsForUser": {
"message": "Grupy dla użytkownika $ID$ zostały zaktualizowane.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"unlinkedSsoUser": {
"message": "Odłącz logowanie jednokrotne SSO dla użytkownika %$ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"createdOrganizationId": {
"message": "Organizacja $ID$ została utworzona.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"addedOrganizationId": {
"message": "Organizacja $ID$ została dodana.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"removedOrganizationId": {
"message": "Organizacja $ID$ została usunięta.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"accessedClientVault": {
"message": "Dostęp do sejfu organizacji $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"device": {
"message": "Urządzenie"
},
"view": {
"message": "Widok"
},
"invalidDateRange": {
"message": "Zakres dat jest nieprawidłowy."
},
"errorOccurred": {
"message": "Wystąpił błąd."
},
"userAccess": {
"message": "Dostęp użytkownika"
},
"userType": {
"message": "Typ użytkownika"
},
"groupAccess": {
"message": "Dostęp grupowy"
},
"groupAccessUserDesc": {
"message": "Zmień grupy, do których należy użytkownik."
},
"invitedUsers": {
"message": "Użytkownicy zostali zaproszeni."
},
"resendInvitation": {
"message": "Wyślij ponownie zaproszenie"
},
"resendEmail": {
"message": "Wyślij ponownie wiadomość"
},
"hasBeenReinvited": {
"message": "Użytkownik $USER$ został ponownie zaproszony.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirm": {
"message": "Potwierdź"
},
"confirmUser": {
"message": "Potwierdź użytkownika"
},
"hasBeenConfirmed": {
"message": "Użytkownik $USER$ został potwierdzony.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"confirmUsers": {
"message": "Potwierdź użytkowników"
},
"usersNeedConfirmed": {
"message": "Posiadasz użytkowników, którzy zaakceptowali zaproszenie, ale muszą jeszcze zostać potwierdzeni. Użytkownicy nie będą posiadali dostępu do organizacji, dopóki nie zostaną potwierdzeni."
},
"startDate": {
"message": "Data rozpoczęcia"
},
"endDate": {
"message": "Data zakończenia"
},
"verifyEmail": {
"message": "Zweryfikuj adres e-mail"
},
"verifyEmailDesc": {
"message": "Zweryfikuj swój adres e-mail, aby odblokować dostęp do wszystkich funkcji."
},
"verifyEmailFirst": {
"message": "Najpierw musimy zweryfikować Twój adres e-mail."
},
"checkInboxForVerification": {
"message": "Sprawdź swoją skrzynkę e-mail, aby uzyskać kod weryfikacyjny."
},
"emailVerified": {
"message": "Twój adres e-mail został zweryfikowany."
},
"emailVerifiedFailed": {
"message": "Nie możemy zweryfikować Twojego adresu e-mail. Spróbuj ponownie wysłać wiadomość weryfikacyjną."
},
"emailVerificationRequired": {
"message": "Weryfikacja adresu e-mail jest wymagana"
},
"emailVerificationRequiredDesc": {
"message": "Musisz zweryfikować adres e-mail, aby używać tej funkcji."
},
"updateBrowser": {
"message": "Aktualizuj przeglądarkę"
},
"updateBrowserDesc": {
"message": "Używasz nieobsługiwanej przeglądarki. Sejf internetowy może działać niewłaściwie."
},
"joinOrganization": {
"message": "Dołącz do organizacji"
},
"joinOrganizationDesc": {
"message": "Zostałeś zaproszony do dołączenia do poniższej organizacji. Aby zaakceptować zaproszenie, musisz zalogować się lub utworzyć nowe konto Bitwarden."
},
"inviteAccepted": {
"message": "Zaproszenie zostało zaakceptowane"
},
"inviteAcceptedDesc": {
"message": "Dostęp do tej organizacji otrzymasz po potwierdzeniu członkostwa przez administratora. Dostaniesz wtedy wiadomość e-mail."
},
"inviteAcceptFailed": {
"message": "Nie można zaakceptować zaproszenia. Poproś administratora organizacji o wysłanie nowego zaproszenia."
},
"inviteAcceptFailedShort": {
"message": "Nie można zaakceptować zaproszenia. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"rememberEmail": {
"message": "Zapamiętaj adres e-mail"
},
"recoverAccountTwoStepDesc": {
"message": "Jeśli nie możesz uzyskać dostępu do konta poprzez standardowe metody logowania dwustopniowego, skorzystaj z kodu odzyskiwania, aby wyłączyć wszystkich dostawców logowania dwustopniowego na swoim koncie."
},
"recoverAccountTwoStep": {
"message": "Przywróć logowanie dwustopniowe do konta"
},
"twoStepRecoverDisabled": {
"message": "Logowanie dwustopniowe zostało wyłączone na koncie."
},
"learnMore": {
"message": "Dowiedz się więcej"
},
"deleteRecoverDesc": {
"message": "Wpisz adres e-mail poniżej, aby odzyskać i usunąć konto."
},
"deleteRecoverEmailSent": {
"message": "Jeśli Twoje konto istnieje, otrzymasz e-mail z dalszymi instrukcjami."
},
"deleteRecoverConfirmDesc": {
"message": "Poprosiłeś o usunięcie konta Bitwarden. Kliknij poniższy przycisk, aby to potwierdzić."
},
"myOrganization": {
"message": "Moja organizacja"
},
"deleteOrganization": {
"message": "Usuń organizację"
},
"deletingOrganizationContentWarning": {
"message": "Wprowadź hasło główne, aby potwierdzić usunięcie $ORGANIZATION$ i wszystkich powiązanych danych. Dane sejfu w $ORGANIZATION$ obejmują:",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"deletingOrganizationActiveUserAccountsWarning": {
"message": "Konta użytkowników pozostaną aktywne po usunięciu, ale nie będą już powiązane z tą organizacją."
},
"deletingOrganizationIsPermanentWarning": {
"message": "Usuwanie organizacji $ORGANIZATION$ jest trwałe i nieodwracalne.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"organizationDeleted": {
"message": "Organizacja została usunięta"
},
"organizationDeletedDesc": {
"message": "Organizacja i wszystkie połączone z nią dane zostały usunięte."
},
"organizationUpdated": {
"message": "Organizacja została zaktualizowana"
},
"taxInformation": {
"message": "Informacje podatkowe"
},
"taxInformationDesc": {
"message": "Dla klientów w USA kod pocztowy jest wymagany, aby spełnić wymagania dotyczące podatku od sprzedaży. W pozostałych krajach możesz opcjonalnie podać numer identyfikacji podatkowej (VAT/GST) i/lub adres, który ma pojawić się na fakturach."
},
"billingPlan": {
"message": "Plan",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlan": {
"message": "Ulepsz plan",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"changeBillingPlanUpgrade": {
"message": "Zaktualizuj swoje konto do innego planu, podając poniższe informacje. Upewnij się, że do konta została dodana aktywna metoda płatności.",
"description": "A billing plan/package. For example: families, teams, enterprise, etc."
},
"invoiceNumber": {
"message": "Faktura nr $NUMBER$",
"description": "ex. Invoice #79C66F0-0001",
"placeholders": {
"number": {
"content": "$1",
"example": "79C66F0-0001"
}
}
},
"viewInvoice": {
"message": "Pokaż fakturę"
},
"downloadInvoice": {
"message": "Pobierz fakturę"
},
"verifyBankAccount": {
"message": "Weryfikuj konto bankowe"
},
"verifyBankAccountDesc": {
"message": "Dokonaliśmy dwóch mikro przelewów na konto bankowe (mogą upłynąć 1-2 dni robocze, zanim je zobaczysz). Wpisz te kwoty, aby zweryfikować konto bankowe."
},
"verifyBankAccountInitialDesc": {
"message": "Płatność z pomocą konta bankowego jest dostępna wyłącznie dla klientów w Stanach Zjednoczonych. Konieczne będzie zweryfikowanie konta bankowego. Wykonamy dwa mikro przelewy w ciągu następnych 1-2 dni roboczych. Wpisz te kwoty na stronie rozliczeń organizacji, aby zweryfikować konto bankowe."
},
"verifyBankAccountFailureWarning": {
"message": "Brak weryfikacji konta bankowego spowoduje brak dokonania płatności i Twoja subskrypcja zostanie wyłączona."
},
"verifiedBankAccount": {
"message": "Konto bankowe zostało zweryfikowane."
},
"bankAccount": {
"message": "Konto bankowe"
},
"amountX": {
"message": "Kwota $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": "Numer rozliczeniowy",
"description": "Bank account routing number"
},
"accountNumber": {
"message": "Numer konta"
},
"accountHolderName": {
"message": "Nazwa posiadacza konta"
},
"bankAccountType": {
"message": "Typ konta"
},
"bankAccountTypeCompany": {
"message": "Firmowe"
},
"bankAccountTypeIndividual": {
"message": "Indywidualne (osobiste)"
},
"enterInstallationId": {
"message": "Wpisz identyfikator instalacji"
},
"limitSubscriptionDesc": {
"message": "Ustaw limit liczby stanowisk subskrypcji. Po osiągnięciu tego limitu nie będziesz mógł zapraszać nowych użytkowników."
},
"maxSeatLimit": {
"message": "Maksymalna liczba stanowisk (opcjonalnie)",
"description": "Upper limit of seats to allow through autoscaling"
},
"maxSeatCost": {
"message": "Maksymalny potencjalny koszt stanowisk"
},
"addSeats": {
"message": "Dodaj stanowiska",
"description": "Seat = User Seat"
},
"removeSeats": {
"message": "Usuń stanowiska",
"description": "Seat = User Seat"
},
"subscriptionDesc": {
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników."
},
"subscriptionUserSeats": {
"message": "Twoja subskrypcja pozwala na łączną liczbę $COUNT$ użytkowników.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"limitSubscription": {
"message": "Limit subskrypcji (opcjonalnie)"
},
"subscriptionSeats": {
"message": "Liczba stanowisk"
},
"subscriptionUpdated": {
"message": "Subskrypcja została zaktualizowana"
},
"additionalOptions": {
"message": "Dodatkowe opcje"
},
"additionalOptionsDesc": {
"message": "Aby uzyskać dodatkową pomoc w zarządzaniu subskrypcją, skontaktuj się z działem obsługi klienta."
},
"subscriptionUserSeatsUnlimitedAutoscale": {
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników."
},
"subscriptionUserSeatsLimitedAutoscale": {
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników, aż do osiągnięcia limitu maksymalnej liczby stanowisk.",
"placeholders": {
"max": {
"content": "$1",
"example": "50"
}
}
},
"subscriptionFreePlan": {
"message": "W obecnym planie nie możesz zaprosić więcej niż $COUNT$ użytkowników.",
"placeholders": {
"count": {
"content": "$1",
"example": "2"
}
}
},
"subscriptionFamiliesPlan": {
"message": "W obecnym planie nie możesz zaprosić więcej niż $COUNT$ użytkowników. Aby ulepszyć plan, skontaktuj się z działem obsługi klienta.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionSponsoredFamiliesPlan": {
"message": "Twoja subskrypcja pozwala na utworzenie $COUNT$ użytkowników. Twój plan jest sponsorowany i opłacany przez zewnętrzną organizację.",
"placeholders": {
"count": {
"content": "$1",
"example": "6"
}
}
},
"subscriptionMaxReached": {
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Nie można zaprosić więcej niż $COUNT$ użytkowników bez zwiększenia liczby stanowisk w subskrypcji.",
"placeholders": {
"count": {
"content": "$1",
"example": "50"
}
}
},
"seatsToAdd": {
"message": "Stanowiska do dodania"
},
"seatsToRemove": {
"message": "Stanowiska do usunięcia"
},
"seatsAddNote": {
"message": "Dodanie stanowisk dla użytkowników będzie skutkować korektą sumy należności i natychmiastowym obciążeniem konta. Pierwsza opłata zostanie naliczona proporcjonalnie do końca obecnego okresu rozliczeniowego."
},
"seatsRemoveNote": {
"message": "Usunięcie stanowisk dla użytkowników spowoduje korektę należności, która zostanie wykonana w następnym okresie rozliczeniowym."
},
"adjustedSeats": {
"message": "Stanowiska użytkowników zostały zaktualizowane ($AMOUNT$).",
"placeholders": {
"amount": {
"content": "$1",
"example": "15"
}
}
},
"keyUpdated": {
"message": "Klucz został zaktualizowany"
},
"updateKeyTitle": {
"message": "Zaktualizuj klucz"
},
"updateEncryptionKey": {
"message": "Zaktualizuj klucz szyfrowania"
},
"updateEncryptionKeyShortDesc": {
"message": "Używasz przestarzałej metody szyfrowania."
},
"updateEncryptionKeyDesc": {
"message": "Zdecydowaliśmy się na używanie silniejszych kluczy szyfrowania, które zapewniają lepsze bezpieczeństwo i dostęp do nowych funkcji. Zaktualizowanie klucza szyfrowania jest szybkie i łatwe. Wystarczy wpisać poniżej swoje hasło. Aktualizacja klucza stanie się wkrótce obowiązkowa."
},
"updateEncryptionKeyWarning": {
"message": "Po zaktualizowaniu klucza szyfrowania, musisz ponownie zalogować się do wszystkich aplikacji Bitwarden, z których obecnie korzystasz (na przykład aplikacje mobilne lub rozszerzenia przeglądarki). Niepowodzenie logowania (podczas którego pobierany jest nowy klucz szyfrowania) może spowodować uszkodzenie danych. Postaramy się wylogować Ciebie automatycznie, jednak może to chwilę potrwać."
},
"updateEncryptionKeyExportWarning": {
"message": "Wszystkie zaszyfrowane pliki eksportu, które wcześniej zapisałeś, staną się nieprawidłowe."
},
"subscription": {
"message": "Subskrypcja"
},
"loading": {
"message": "Ładowanie"
},
"upgrade": {
"message": "Uaktualnienie"
},
"upgradeOrganization": {
"message": "Uaktualnij organizację"
},
"upgradeOrganizationDesc": {
"message": "Ta funkcja nie jest dostępna dla darmowych organizacji. Przejdź na płatny plan, aby odblokować więcej funkcji."
},
"createOrganizationStep1": {
"message": "Utwórz organizację: Krok 1"
},
"createOrganizationCreatePersonalAccount": {
"message": "Zanim utworzysz swoją organizację, musisz utworzyć darmowe konto osobiste."
},
"refunded": {
"message": "Zwrócono"
},
"nothingSelected": {
"message": "Nie zaznaczyłeś żadnych elementów."
},
"acceptPolicies": {
"message": "Zaznaczając tę opcję, akceptujesz:"
},
"acceptPoliciesError": {
"message": "Nie zaakceptowałeś regulaminu i polityki prywatności."
},
"termsOfService": {
"message": "Regulamin"
},
"privacyPolicy": {
"message": "Polityka prywatności"
},
"filters": {
"message": "Filtry"
},
"vaultTimeout": {
"message": "Blokowanie sejfu"
},
"vaultTimeoutDesc": {
"message": "Wybierz kiedy sejf zostanie zablokowany i wykonaj następującą akcję."
},
"oneMinute": {
"message": "1 minuta"
},
"fiveMinutes": {
"message": "5 minut"
},
"fifteenMinutes": {
"message": "15 minut"
},
"thirtyMinutes": {
"message": "30 minut"
},
"oneHour": {
"message": "1 godzina"
},
"fourHours": {
"message": "4 godziny"
},
"onRefresh": {
"message": "Po restarcie przeglądarki"
},
"dateUpdated": {
"message": "Zaktualizowano",
"description": "ex. Date this item was updated"
},
"datePasswordUpdated": {
"message": "Aktualizacja hasła",
"description": "ex. Date this password was updated"
},
"organizationIsDisabled": {
"message": "Organizacja jest wyłączona."
},
"licenseIsExpired": {
"message": "Licencja wygasła."
},
"updatedUsers": {
"message": "Użytkownicy zostali zaktualizowani"
},
"selected": {
"message": "Zaznaczono"
},
"ownership": {
"message": "Właściciel"
},
"whoOwnsThisItem": {
"message": "Kto jest właścicielem tego elementu?"
},
"strong": {
"message": "Silne",
"description": "ex. A strong password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"good": {
"message": "Dobre",
"description": "ex. A good password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weak": {
"message": "Słabe",
"description": "ex. A weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"veryWeak": {
"message": "Bardzo słabe",
"description": "ex. A very weak password. Scale: Very Weak -> Weak -> Good -> Strong"
},
"weakMasterPassword": {
"message": "Słabe hasło główne"
},
"weakMasterPasswordDesc": {
"message": "Wpisane przez Ciebie hasło główne jest słabe. Powinieneś użyć silniejszego hasła (lub frazy), aby właściwie chronić swoje konto Bitwarden. Czy na pewno chcesz użyć tego hasła głównego?"
},
"rotateAccountEncKey": {
"message": "Zmień także mój klucz szyfrowania"
},
"rotateEncKeyTitle": {
"message": "Zmień klucz szyfrowania"
},
"rotateEncKeyConfirmation": {
"message": "Czy na pewno chcesz zmienić swój klucz szyfrowania?"
},
"attachmentsNeedFix": {
"message": "Ten element posiada stare załączniki, które muszą zostać naprawione."
},
"attachmentFixDesc": {
"message": "To jest stary załącznik, który musi zostać naprawiony. Kliknij, aby dowiedzieć się więcej."
},
"fix": {
"message": "Napraw",
"description": "This is a verb. ex. 'Fix The Car'"
},
"oldAttachmentsNeedFixDesc": {
"message": "W Twoim sejfie istnieją stare załączniki, które muszą zostać naprawione, zanim będziesz mógł zmienić klucz szyfrowania Twojego konta."
},
"yourAccountsFingerprint": {
"message": "Unikalny identyfikator Twojego konta",
"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": "Aby zapewnić integralność kluczy szyfrowania, zweryfikuj unikalny identyfikator użytkownika, zanim przejdziesz dalej.",
"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": "Nie pytaj ponownie o weryfikację unikalnego identyfikatora konta dla zaproszonych użytkowników (niezalecane)",
"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": "Darmowy",
"description": "Free, as in 'Free beer'"
},
"apiKey": {
"message": "Klucz interfejsu API"
},
"apiKeyDesc": {
"message": "Twój klucz interfejsu API może zostać użyty do uwierzytelniania dostępu do publicznego interfejsu API Bitwarden."
},
"apiKeyRotateDesc": {
"message": "Zmiana klucza interfejsu API spowoduje unieważnienie poprzedniego klucza. Możesz zmienić klucz interfejsu, jeśli uważasz, że obecny klucz przestał być bezpieczny."
},
"apiKeyWarning": {
"message": "Twój klucz interfejsu API umożliwia pełny dostęp do organizacji, dlatego powinien być dobrze strzeżony."
},
"userApiKeyDesc": {
"message": "Twój klucz interfejsu API może zostać użyty do uwierzytelniania dostępu do wiersza poleceń Bitwarden."
},
"userApiKeyWarning": {
"message": "Twój klucz interfejsu API jest alternatywną metodą uwierzytelniania. Powinien być dobrze strzeżony."
},
"oauth2ClientCredentials": {
"message": "Dane uwierzytelniające OAuth 2.0",
"description": "'OAuth 2.0' is a programming protocol. It should probably not be translated."
},
"viewApiKey": {
"message": "Wyświetl klucz interfejsu API"
},
"rotateApiKey": {
"message": "Zmień klucz interfejsu API"
},
"selectOneCollection": {
"message": "Musisz wybrać co najmniej jedną kolekcję."
},
"couldNotChargeCardPayInvoice": {
"message": "Nie byliśmy w stanie obciążyć karty. Sprawdź i opłać niezapłacone faktury wymienione poniżej."
},
"inAppPurchase": {
"message": "Zakupy w aplikacji"
},
"cannotPerformInAppPurchase": {
"message": "Nie możesz tego zrobić, kiedy używasz płatności w aplikacji."
},
"manageSubscriptionFromStore": {
"message": "Musisz zarządzać swoją subskrypcją ze sklepu, w którym były dokonane zakupy w aplikacji."
},
"minLength": {
"message": "Minimalna długość"
},
"clone": {
"message": "Klonuj"
},
"masterPassPolicyDesc": {
"message": "Ustaw minimalne wymagania dla hasła głównego."
},
"twoStepLoginPolicyDesc": {
"message": "Wymagaj od użytkowników aktywowania logowania dwustopniowego na swoich kontach osobistych."
},
"twoStepLoginPolicyWarning": {
"message": "Członkowie organizacji, którzy nie są właścicielami lub administratorami i nie posiadają włączonej opcji logowania dwustopniowego na swoim koncie osobistym, zostaną usunięci z organizacji i otrzymają wiadomość z powiadomieniem o zmianie."
},
"twoStepLoginPolicyUserWarning": {
"message": "Jesteś członkiem organizacji, która wymaga włączonej opcji logowania dwustopniowego na koncie użytkownika. Jeśli wyłączysz wszystkich dostawców logowania dwustopniowego, zostaniesz automatycznie usunięty z tych organizacji."
},
"passwordGeneratorPolicyDesc": {
"message": "Ustaw minimalne wymagania dla generatora hasła."
},
"passwordGeneratorPolicyInEffect": {
"message": "Co najmniej jedna zasada organizacji wpływa na ustawienia generatora."
},
"masterPasswordPolicyInEffect": {
"message": "Co najmniej jedna zasada organizacji wymaga, aby hasło główne spełniało następujące wymagania:"
},
"policyInEffectMinComplexity": {
"message": "Minimalny poziom złożoności wynosi $SCORE$",
"placeholders": {
"score": {
"content": "$1",
"example": "4"
}
}
},
"policyInEffectMinLength": {
"message": "Minimalna długość wynosi $LENGTH$",
"placeholders": {
"length": {
"content": "$1",
"example": "14"
}
}
},
"policyInEffectUppercase": {
"message": "Zawiera co najmniej jedną wielką literę"
},
"policyInEffectLowercase": {
"message": "Zawiera co najmniej jedną małą literę"
},
"policyInEffectNumbers": {
"message": "Zawiera co najmniej jedną cyfrę"
},
"policyInEffectSpecial": {
"message": "Zawiera co najmniej jeden następujący znak specjalny $CHARS$",
"placeholders": {
"chars": {
"content": "$1",
"example": "!@#$%^&*"
}
}
},
"masterPasswordPolicyRequirementsNotMet": {
"message": "Nowe hasło główne nie spełnia wymaganych zasad."
},
"minimumNumberOfWords": {
"message": "Minimalna liczba słów"
},
"defaultType": {
"message": "Domyślny rodzaj"
},
"userPreference": {
"message": "Ustawienie użytkownika"
},
"vaultTimeoutAction": {
"message": "Sposób blokowania sejfu"
},
"vaultTimeoutActionLockDesc": {
"message": "Po zablokowaniu sejfu, musisz ponownie wpisać hasło główne, aby uzyskać do niego dostęp."
},
"vaultTimeoutActionLogOutDesc": {
"message": "Po wylogowaniu się z sejfu, musisz ponownie zalogować się, aby uzyskać do niego dostęp."
},
"lock": {
"message": "Zablokuj",
"description": "Verb form: to make secure or inaccesible by"
},
"trash": {
"message": "Kosz",
"description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted"
},
"searchTrash": {
"message": "Szukaj w koszu"
},
"permanentlyDelete": {
"message": "Usuń trwale"
},
"permanentlyDeleteSelected": {
"message": "Usuń trwale zaznaczone"
},
"permanentlyDeleteItem": {
"message": "Usuń trwale element"
},
"permanentlyDeleteItemConfirmation": {
"message": "Czy na pewno chcesz usunąć trwale ten element?"
},
"permanentlyDeletedItem": {
"message": "Element został trwale usunięty"
},
"permanentlyDeletedItems": {
"message": "Elementy zostały trwale usunięte"
},
"permanentlyDeleteSelectedItemsDesc": {
"message": "Wybrałeś elementy do trwałego usunięcia. Czy na pewno chcesz je wszystkie usunąć trwale?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"permanentlyDeletedItemId": {
"message": "Element $ID$ został trwale usunięty.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"restore": {
"message": "Przywróć"
},
"restoreSelected": {
"message": "Przywróć zaznaczone"
},
"restoreItem": {
"message": "Przywróć element"
},
"restoredItem": {
"message": "Element został przywrócony"
},
"restoredItems": {
"message": "Elementy zostały przywrócone"
},
"restoreItemConfirmation": {
"message": "Czy na pewno chcesz przywrócić ten element?"
},
"restoreItems": {
"message": "Przywróć elementy"
},
"restoreSelectedItemsDesc": {
"message": "Wybrałeś elementy do przywrócenia. Czy na pewno chcesz je wszystkie przywrócić?",
"placeholders": {
"count": {
"content": "$1",
"example": "150"
}
}
},
"restoredItemId": {
"message": "Element $ID$ został przywrócony.",
"placeholders": {
"id": {
"content": "$1",
"example": "Google"
}
}
},
"vaultTimeoutLogOutConfirmation": {
"message": "Po wylogowaniu się z sejfu musisz ponownie zalogować się, aby uzyskać do niego dostęp. Czy na pewno chcesz użyć tego ustawienia?"
},
"vaultTimeoutLogOutConfirmationTitle": {
"message": "Potwierdź sposób blokowania sejfu"
},
"hidePasswords": {
"message": "Ukryj hasła"
},
"countryPostalCodeRequiredDesc": {
"message": "Potrzebujemy tych informacji tylko do obliczenia podatku od sprzedaży i uzupełnienia deklaracji finansowych."
},
"includeVAT": {
"message": "Dołącz identyfikator podatkowy VAT/GST (opcjonalnie)"
},
"taxIdNumber": {
"message": "Identyfikator podatkowy VAT/GST"
},
"taxInfoUpdated": {
"message": "Informacje podatkowe zostały zaktualizowane."
},
"setMasterPassword": {
"message": "Ustaw hasło główne"
},
"ssoCompleteRegistration": {
"message": "W celu zakończenia jednokrotnego logowania SSO, ustaw hasło główne, aby uzyskać dostęp do sejfu."
},
"identifier": {
"message": "Identyfikator"
},
"organizationIdentifier": {
"message": "Identyfikator organizacji"
},
"ssoLogInWithOrgIdentifier": {
"message": "Zaloguj się za pomocą logowania jednokrotnego SSO swojej organizacji. Aby rozpocząć, wpisz swój identyfikator organizacji."
},
"enterpriseSingleSignOn": {
"message": "Logowanie jednokrotne"
},
"ssoHandOff": {
"message": "Możesz teraz zamknąć tę kartę i kontynuować w rozszerzeniu."
},
"includeAllTeamsFeatures": {
"message": "Wszystkie funkcje zespołów oraz:"
},
"includeSsoAuthentication": {
"message": "Logowanie jednokrotne SSO za pomocą protokołu SAML2.0 i OpenID Connect"
},
"includeEnterprisePolicies": {
"message": "Zasady przedsiębiorstwa"
},
"ssoValidationFailed": {
"message": "Weryfikacja logowania jednokrotnego SSO nie powiodła się"
},
"ssoIdentifierRequired": {
"message": "Identyfikator organizacji jest wymagany."
},
"unlinkSso": {
"message": "Odłącz logowanie jednokrotne SSO"
},
"unlinkSsoConfirmation": {
"message": "Czy na pewno chcesz odłączyć logowanie jednokrotne SSO dla tej organizacji?"
},
"linkSso": {
"message": "Połącz logowanie jednokrotne SSO"
},
"singleOrg": {
"message": "Pojedyncza organizacja"
},
"singleOrgDesc": {
"message": "Zablokuj użytkownikom możliwość dołączania do innych organizacji."
},
"singleOrgBlockCreateMessage": {
"message": "Twoja obecna organizacja posiada zasady, które nie pozwalają na dołączanie do więcej niż jednej organizacji. Skontaktuj się z administratorami swojej organizacji lub zarejestruj się z innego konta Bitwarden."
},
"singleOrgPolicyWarning": {
"message": "Członkowie organizacji, którzy nie są właścicielami lub administratorami i są już członkami innej organizacji zostaną usunięci z Twojej organizacji."
},
"requireSso": {
"message": "Uwierzytelnianie logowaniem jednokrotnym"
},
"requireSsoPolicyDesc": {
"message": "Wymagaj używania przez użytkowników logowania jednokrotnego."
},
"prerequisite": {
"message": "Wymaganie wstępne"
},
"requireSsoPolicyReq": {
"message": "Najpierw musisz włączyć zasadę pojedynczej organizacji."
},
"requireSsoPolicyReqError": {
"message": "Zasady pojedynczej organizacji nie są włączone."
},
"requireSsoExemption": {
"message": "Właściciele i administratorzy organizacji są zwolnieni z przestrzegania wymagań zasad."
},
"sendTypeFile": {
"message": "Plik"
},
"sendTypeText": {
"message": "Tekst"
},
"createSend": {
"message": "Utwórz nową wysyłkę",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editSend": {
"message": "Edytuj wysyłkę",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"createdSend": {
"message": "Wysyłka została utworzona",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedSend": {
"message": "Wysyłka została zaktualizowana",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletedSend": {
"message": "Wysyłka została usunięta",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSend": {
"message": "Usuń wysyłkę",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deleteSendConfirmation": {
"message": "Czy na pewno chcesz usunąć tę wysyłkę?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"whatTypeOfSend": {
"message": "Jakiego typu jest to wysyłka?",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"deletionDate": {
"message": "Data usunięcia"
},
"deletionDateDesc": {
"message": "Wysyłka zostanie trwale usunięta w określonym czasie.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDate": {
"message": "Data wygaśnięcia"
},
"expirationDateDesc": {
"message": "Jeśli funkcja jest włączona, dostęp do wysyłki wygaśnie po określonym czasie.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"maxAccessCount": {
"message": "Maksymalna liczba dostępów"
},
"maxAccessCountDesc": {
"message": "Jeśli funkcja jest włączona, po osiągnięciu maksymalnej liczby dostępów, użytkownicy nie będą mieli dostępu do tej wysyłki.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"currentAccessCount": {
"message": "Obecna liczba dostępów"
},
"sendPasswordDesc": {
"message": "Opcjonalne hasło dla użytkownika, aby uzyskać dostęp do wysyłki.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNotesDesc": {
"message": "Prywatne notatki o tej wysyłce.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disabled": {
"message": "Wyłączone"
},
"sendLink": {
"message": "Link wysyłki",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"copySendLink": {
"message": "Kopiuj link wysyłki",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"removePassword": {
"message": "Usuń hasło"
},
"removedPassword": {
"message": "Hasło zostało usunięte"
},
"removePasswordConfirmation": {
"message": "Czy na pewno chcesz usunąć hasło?"
},
"hideEmail": {
"message": "Ukryj mój adres e-mail przed odbiorcami."
},
"disableThisSend": {
"message": "Wyłącz wysyłkę, aby nikt nie miał do niej dostępu.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"allSends": {
"message": "Wszystkie wysyłki"
},
"maxAccessCountReached": {
"message": "Maksymalna liczba dostępów została osiągnięta",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
"pendingDeletion": {
"message": "Oczekiwanie na usunięcie"
},
"expired": {
"message": "Wygasła"
},
"searchSends": {
"message": "Szukaj w wysyłkach",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPassword": {
"message": "Wysyłka jest chroniona hasłem. Wpisz hasło, aby kontynuować.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendProtectedPasswordDontKnow": {
"message": "Nie znasz hasła? Poproś nadawcę o hasło, aby uzyskać dostęp do wysyłki.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendHiddenByDefault": {
"message": "Ta wysyłka jest domyślnie ukryta. Możesz zmienić jej widoczność za pomocą przycisku.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"downloadFile": {
"message": "Pobierz plik"
},
"sendAccessUnavailable": {
"message": "Wysyłka nie istnieje lub nie jest już dostępna.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"missingSendFile": {
"message": "Plik powiązany z wysyłką nie został znaleziony.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"noSendsInList": {
"message": "Brak wysyłek do wyświetlenia.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"emergencyAccess": {
"message": "Dostęp awaryjny"
},
"emergencyAccessDesc": {
"message": "Zarządzaj dostępem awaryjnym dla zaufanych kontaktów. Zaufane kontakty mogą poprosić Cię o przejęcie Twojego konta lub uzyskania dostępu do jego odczytu w awaryjnych przypadkach. Odwiedź naszą stronę pomocy, aby dowiedzieć się jak działa funkcja dostępu awaryjnego."
},
"emergencyAccessOwnerWarning": {
"message": "Jesteś właścicielem co najmniej jednej organizacji. Jeśli kontaktowi awaryjnemu przyznasz dostęp do swojego konta, będzie mógł użyć wszystkich Twoich uprawnień."
},
"trustedEmergencyContacts": {
"message": "Zaufane kontakty awaryjne"
},
"noTrustedContacts": {
"message": "Nie dodałeś nikogo jako kontakt awaryjny. Aby rozpocząć, zaproś zaufany kontakt."
},
"addEmergencyContact": {
"message": "Dodaj kontakt awaryjny"
},
"designatedEmergencyContacts": {
"message": "Wyznaczone kontakty awaryjne"
},
"noGrantedAccess": {
"message": "Nie zostałeś ustawiony jako kontakt awaryjny dla żadnego użytkownika."
},
"inviteEmergencyContact": {
"message": "Zaproś kontakt awaryjny"
},
"editEmergencyContact": {
"message": "Edytuj kontakt awaryjny"
},
"inviteEmergencyContactDesc": {
"message": "Zaproś nowy kontakt awaryjny poprzez wpisanie jego adresu e-mail poniżej. Jeśli nie posiada on jeszcze konta Bitwarden, zostanie poproszony o jego utworzenie."
},
"emergencyAccessRecoveryInitiated": {
"message": "Dostęp awaryjny został zainicjowany"
},
"emergencyAccessRecoveryApproved": {
"message": "Dostęp awaryjny został zatwierdzony"
},
"viewDesc": {
"message": "Może zobaczyć wszystkie elementy w Twoim sejfie."
},
"takeover": {
"message": "Przejęcie"
},
"takeoverDesc": {
"message": "Może zresetować Twoje konto za pomocą nowego hasła głównego."
},
"waitTime": {
"message": "Oczekiwanie"
},
"waitTimeDesc": {
"message": "Czas wymagany do automatycznego przyznania dostępu."
},
"oneDay": {
"message": "1 dzień"
},
"days": {
"message": "$DAYS$ dni",
"placeholders": {
"days": {
"content": "$1",
"example": "1"
}
}
},
"invitedUser": {
"message": "Użytkownik został zaproszony."
},
"acceptEmergencyAccess": {
"message": "Zostałeś zaproszony przez powyższego użytkownika do zostania jego kontaktem awaryjnym. Aby zaakceptować zaproszenie, musisz zalogować się lub utworzyć nowe konto Bitwarden."
},
"emergencyInviteAcceptFailed": {
"message": "Nie można zaakceptować zaproszenia. Poproś użytkownika o wysłanie nowego zaproszenia."
},
"emergencyInviteAcceptFailedShort": {
"message": "Nie można zaakceptować zaproszenia. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must enable 2FA on your user account before you can join this organization."
}
}
},
"emergencyInviteAcceptedDesc": {
"message": "Dostęp do konta tego użytkownika otrzymasz po potwierdzeniu swojej tożsamości. Dostaniesz wtedy wiadomość e-mail."
},
"requestAccess": {
"message": "Poproś o dostęp"
},
"requestAccessConfirmation": {
"message": "Czy na pewno chcesz poprosić o dostęp awaryjny? Dostęp otrzymasz po zatwierdzeniu żądania lub po upływie określonego czasu ustawionego przez użytkownika.",
"placeholders": {
"waittime": {
"content": "$1",
"example": "1"
}
}
},
"requestSent": {
"message": "Poprosiłeś o dostęp awaryjny dla użytkownika $USER$. Po otrzymaniu dostępu, dostaniesz wiadomość e-mail.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"approve": {
"message": "Zatwierdź"
},
"reject": {
"message": "Odrzuć"
},
"approveAccessConfirmation": {
"message": "Czy na pewno chcesz zatwierdzić dostęp awaryjny? Użytkownik $USER$ uzyska uprawnienie do Twojego konta ($ACTION$).",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
},
"action": {
"content": "$2",
"example": "View"
}
}
},
"emergencyApproved": {
"message": "Dostęp awaryjny został zatwierdzony."
},
"emergencyRejected": {
"message": "Dostęp awaryjny został odrzucony"
},
"passwordResetFor": {
"message": "Zresetowałeś hasło użytkownika $USER$. Możesz zalogować się za pomocą nowego hasła.",
"placeholders": {
"user": {
"content": "$1",
"example": "John Smith"
}
}
},
"personalOwnership": {
"message": "Własność osobista"
},
"personalOwnershipPolicyDesc": {
"message": "Wymagaj od użytkowników zapisywanie elementów do kolekcji organizacji, usuwając opcję własności elementów."
},
"personalOwnershipExemption": {
"message": "Właściciele i administratorzy organizacji są zwolnieni z przestrzegania wymagań zasad."
},
"personalOwnershipSubmitError": {
"message": "Ze względu na zasadę przedsiębiorstwa, nie możesz zapisywać elementów w osobistym sejfie. Zmień właściciela elementu na organizację i wybierz jedną z dostępnych kolekcji."
},
"disableSend": {
"message": "Wyłącz wysyłkę"
},
"disableSendPolicyDesc": {
"message": "Nie zezwalaj użytkownikom na tworzenie i edytowanie wysyłek. Usunięcie obecnej wysyłki nadal jest dozwolone.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"disableSendExemption": {
"message": "Użytkownicy organizacji, którzy mogą zarządzać zasadami organizacji są zwolnieni z przestrzegania wymagań zasad."
},
"sendDisabled": {
"message": "Wysyłka została wyłączona",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendDisabledWarning": {
"message": "Ze względu na zasadę przedsiębiorstwa, tylko Ty możesz usunąć obecną wysyłkę.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptions": {
"message": "Opcje wysyłek",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyDesc": {
"message": "Zarządzaj ustawieniami tworzenia i edytowania wysyłek.",
"description": "'Sends' is a plural noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsExemption": {
"message": "Użytkownicy organizacji, którzy mogą zarządzać zasadami organizacji są zwolnieni z przestrzegania wymagań zasad."
},
"disableHideEmail": {
"message": "Nie zezwalaj użytkownikom na ukrywanie ich adresów e-mail przed odbiorcami, podczas tworzenia lub edytowania wysyłek.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendOptionsPolicyInEffect": {
"message": "Obecnie obowiązujące zasady organizacji:"
},
"sendDisableHideEmailInEffect": {
"message": "Użytkownicy nie mogą ukrywać swoich adresów e-mail przed odbiorcami, podczas tworzenia lub edytowania wysyłek.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"modifiedPolicyId": {
"message": "Zasada $ID$ została zaktualizowana.",
"placeholders": {
"id": {
"content": "$1",
"example": "Master Password"
}
}
},
"planPrice": {
"message": "Cena planu"
},
"estimatedTax": {
"message": "Podatek"
},
"custom": {
"message": "Niestandardowe"
},
"customDesc": {
"message": "Umożliwia zaawansowaną kontrolę uprawnień użytkownika."
},
"permissions": {
"message": "Uprawnienia"
},
"accessEventLogs": {
"message": "Dostęp do dziennika zdarzeń"
},
"accessImportExport": {
"message": "Dostęp do importu i eksportu"
},
"accessReports": {
"message": "Dostęp do raportów"
},
"missingPermissions": {
"message": "Nie posiadasz uprawnień do wykonania tej akcji."
},
"manageAllCollections": {
"message": "Zarządzaj wszystkimi kolekcjami"
},
"createNewCollections": {
"message": "Utwórz nowe kolekcje"
},
"editAnyCollection": {
"message": "Edytuj dowolną kolekcję"
},
"deleteAnyCollection": {
"message": "Usuń dowolną kolekcję"
},
"manageAssignedCollections": {
"message": "Zarządzaj przypisanymi kolekcjami"
},
"editAssignedCollections": {
"message": "Edytuj przypisane kolekcje"
},
"deleteAssignedCollections": {
"message": "Usuń przypisane kolekcje"
},
"manageGroups": {
"message": "Zarządzaj grupami"
},
"managePolicies": {
"message": "Zarządzaj zasadami"
},
"manageSso": {
"message": "Zarządzaj logowaniem jednokrotnym SSO"
},
"manageUsers": {
"message": "Zarządzaj użytkownikami"
},
"manageResetPassword": {
"message": "Zarządzaj resetowaniem hasła"
},
"disableRequiredError": {
"message": "Przed wyłączeniem tej zasady, musisz wyłączyć zasadę $POLICYNAME$.",
"placeholders": {
"policyName": {
"content": "$1",
"example": "Single Sign-On Authentication"
}
}
},
"personalOwnershipPolicyInEffect": {
"message": "Zasada organizacji ma wpływ na opcję własności elementów."
},
"personalOwnershipPolicyInEffectImports": {
"message": "Zasada organizacji uniemożliwia importowanie elementów do Twojego sejfu."
},
"personalOwnershipCheckboxDesc": {
"message": "Wyłącz opcję własności osobistej dla użytkowników organizacji"
},
"textHiddenByDefault": {
"message": "Ukryj domyślnie tekst wysyłki",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendNameDesc": {
"message": "Nazwa wysyłki.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendTextDesc": {
"message": "Tekst, który chcesz wysłać."
},
"sendFileDesc": {
"message": "Plik, który chcesz wysłać."
},
"copySendLinkOnSave": {
"message": "Po zapisaniu wysyłki, skopiuj link do schowka."
},
"sendLinkLabel": {
"message": "Link wysyłki",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"send": {
"message": "Wyślij",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineProductDesc": {
"message": "Wysyłaj wrażliwe i krótkotrwałe informacje w łatwy i bezpieczny sposób.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"sendAccessTaglineLearnMore": {
"message": "Dowiedz się więcej o funkcji",
"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": "Udostępniaj teksty i pliki."
},
"sendVaultCardLearnMore": {
"message": "Dowiedz się więcej",
"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": "zobacz",
"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": "jak to działa",
"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": "lub",
"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": "wypróbuj teraz",
"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": "lub",
"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": "zarejestruj się",
"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": ", aby ją wypróbować.",
"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": "Użytkownik Bitwarden $USER_IDENTIFIER$ udostępnił Tobie",
"placeholders": {
"user_identifier": {
"content": "$1",
"example": "An email address"
}
}
},
"viewSendHiddenEmailWarning": {
"message": "Użytkownik Bitwarden, który utworzył wysyłkę, zdecydował ukryć swój adres e-mail. Przed użyciem lub pobraniem treści wysyłki upewnij się, że ufasz źródłu tego linku.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"expirationDateIsInvalid": {
"message": "Data wygaśnięcia nie jest prawidłowa."
},
"deletionDateIsInvalid": {
"message": "Data usunięcia nie jest prawidłowa."
},
"expirationDateAndTimeRequired": {
"message": "Data i czas wygaśnięcia są wymagane."
},
"deletionDateAndTimeRequired": {
"message": "Data i czas usunięcia są wymagane."
},
"dateParsingError": {
"message": "Wystąpił błąd podczas zapisywania dat usunięcia i wygaśnięcia."
},
"webAuthnFallbackMsg": {
"message": "Aby zweryfikować logowanie dwustopniowe, kliknij przycisk poniżej."
},
"webAuthnAuthenticate": {
"message": "Uwierzytelnianie WebAuthn"
},
"webAuthnNotSupported": {
"message": "Ta przeglądarka nie obsługuje uwierzytelniania WebAuthn."
},
"webAuthnSuccess": {
"message": "Uwierzytelnianie WebAuthn zostało zweryfikowane! Możesz zamknąć tę kartę."
},
"hintEqualsPassword": {
"message": "Podpowiedź do hasła nie może być taka sama jak hasło."
},
"enrollPasswordReset": {
"message": "Zarejestruj do resetowania hasła"
},
"enrolledPasswordReset": {
"message": "Użytkownik został zarejestrowany do resetowania hasła"
},
"withdrawPasswordReset": {
"message": "Wyrejestruj z resetowania hasła"
},
"enrollPasswordResetSuccess": {
"message": "Użytkownik został zarejestrowany!"
},
"withdrawPasswordResetSuccess": {
"message": "Użytkownik został wyrejestrowany!"
},
"eventEnrollPasswordReset": {
"message": "Użytkownik $ID$ został zarejestrowany do resetowania hasła.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventWithdrawPasswordReset": {
"message": "Użytkownik $ID$ został wyrejestrowany z resetowania hasła.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventAdminPasswordReset": {
"message": "Hasło główne dla użytkownika $ID$ zostało zresetowane.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"eventResetSsoLink": {
"message": "Resetuj link logowania jednokrotnego SSO dla użytkownika $ID$",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"firstSsoLogin": {
"message": "Użytkownik $ID$ zalogował się po raz pierwszy przy użyciu logowania jednokrotnego SSO",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"resetPassword": {
"message": "Zresetuj hasło"
},
"resetPasswordLoggedOutWarning": {
"message": "Kontynuowanie spowoduje wylogowanie użytkownika $NAME$ z obecnej sesji i będzie musiał zalogować się ponownie. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę.",
"placeholders": {
"name": {
"content": "$1",
"example": "John Smith"
}
}
},
"thisUser": {
"message": "ten użytkownik"
},
"resetPasswordMasterPasswordPolicyInEffect": {
"message": "Co najmniej jedna zasada organizacji wymaga, aby hasło główne spełniało następujące wymagania:"
},
"resetPasswordSuccess": {
"message": "Hasło zostało zresetowane!"
},
"resetPasswordEnrollmentWarning": {
"message": "Rejestracja zezwala administratorom organizacji na zmianę Twojego hasła głównego. Czy na pewno chcesz się zarejestrować?"
},
"resetPasswordPolicy": {
"message": "Zresetowanie hasła głównego"
},
"resetPasswordPolicyDescription": {
"message": "Zezwalaj administratorom organizacji na resetowanie hasła głównego użytkowników."
},
"resetPasswordPolicyWarning": {
"message": "Użytkownicy w organizacji muszą samodzielnie zarejestrować się do resetowania hasła przez administratorów."
},
"resetPasswordPolicyAutoEnroll": {
"message": "Automatyczne rejestrowanie użytkowników"
},
"resetPasswordPolicyAutoEnrollDescription": {
"message": "Wszyscy użytkownicy, po zaakceptowaniu zaproszenia, zostaną automatycznie zarejestrowani do resetowania hasła."
},
"resetPasswordPolicyAutoEnrollWarning": {
"message": "Użytkownicy w organizacji muszą samodzielnie zarejestrować się do resetowania hasła przez administratorów."
},
"resetPasswordPolicyAutoEnrollCheckbox": {
"message": "Automatycznie rejestruj nowych użytkowników"
},
"resetPasswordAutoEnrollInviteWarning": {
"message": "Ta organizacja posługuje się zasadą, która automatycznie rejestruje użytkowników do resetowania hasła. Rejestracja umożliwia administratorom organizacji zmianę Twojego hasła głównego."
},
"resetPasswordOrgKeysError": {
"message": "Odpowiedź kluczy organizacji jest pusta"
},
"resetPasswordDetailsError": {
"message": "Odpowiedź szczegółów zresetowania hasła jest pusta"
},
"trashCleanupWarning": {
"message": "Elementy znajdujące się w koszu ponad 30 dni zostaną automatycznie usunięte."
},
"trashCleanupWarningSelfHosted": {
"message": "Elementy znajdujące się w koszu od dłuższego czasu zostaną automatycznie usunięte."
},
"passwordPrompt": {
"message": "Potwierdź hasłem głównym"
},
"passwordConfirmation": {
"message": "Potwierdź hasło główne"
},
"passwordConfirmationDesc": {
"message": "Ta operacja jest chroniona. Aby kontynuować, wpisz ponownie hasło główne."
},
"reinviteSelected": {
"message": "Wyślij ponownie zaproszenia"
},
"noSelectedUsersApplicable": {
"message": "Ta akcja nie dotyczy żadnych zaznaczonych użytkowników."
},
"removeUsersWarning": {
"message": "Czy na pewno chcesz usunąć następujących użytkowników? Proces może potrwać kilka sekund i nie może zostać przerwany lub anulowany."
},
"theme": {
"message": "Motyw"
},
"themeDesc": {
"message": "Wybierz motyw dla sejfu internetowego."
},
"themeSystem": {
"message": "Użyj motywu systemowego"
},
"themeDark": {
"message": "Ciemny"
},
"themeLight": {
"message": "Jasny"
},
"confirmSelected": {
"message": "Potwierdź zaznaczone"
},
"bulkConfirmStatus": {
"message": "Status akcji zbiorczej"
},
"bulkConfirmMessage": {
"message": "Potwierdzono."
},
"bulkReinviteMessage": {
"message": "Zaproszony ponownie."
},
"bulkRemovedMessage": {
"message": "Usunięto"
},
"bulkFilteredMessage": {
"message": "Wykluczono, nie dotyczy tej akcji."
},
"fingerprint": {
"message": "Unikalny identyfikator konta"
},
"removeUsers": {
"message": "Usuń użytkowników"
},
"error": {
"message": "Błąd"
},
"resetPasswordManageUsers": {
"message": "Zasada \"Zarządzaj użytkownikami\" musi być włączona wraz z uprawnieniem \"Zarządzaj resetowaniem hasła\""
},
"setupProvider": {
"message": "Ustawienia dostawcy"
},
"setupProviderLoginDesc": {
"message": "Zostałeś zaproszony do konfiguracji nowego dostawcy. Aby kontynuować, zaloguj się lub utwórz nowe konto Bitwarden."
},
"setupProviderDesc": {
"message": "Wpisz dane, aby zakończyć konfigurację dostawcy. W razie pytań skontaktuj się z działem obsługi klienta."
},
"providerName": {
"message": "Nazwa dostawcy"
},
"providerSetup": {
"message": "Dostawca został skonfigurowany."
},
"clients": {
"message": "Klienci"
},
"providerAdmin": {
"message": "Administrator dostawcy"
},
"providerAdminDesc": {
"message": "Użytkownik z najwyższym uprawnieniem, który może zarządzać wszystkimi ustawieniami dostawcy oraz uzyskiwać dostęp do organizacji klientów i zarządzać nimi."
},
"serviceUser": {
"message": "Serwisant"
},
"serviceUserDesc": {
"message": "Serwisant może uzyskać dostęp do wszystkich klientów organizacji i nimi zarządzać."
},
"providerInviteUserDesc": {
"message": "Zaproś nowego użytkownika do Twojego dostawcy poprzez wpisanie poniżej jego adresu e-mail. Jeśli nie posiada on jeszcze konta Bitwarden, zostanie poproszony o jego utworzenie."
},
"joinProvider": {
"message": "Dołącz do dostawcy"
},
"joinProviderDesc": {
"message": "Zostałeś zaproszony do dołączenia do poniższego dostawcy. Aby zaakceptować zaproszenie, musisz zalogować się lub utworzyć nowe konto Bitwarden."
},
"providerInviteAcceptFailed": {
"message": "Nie można zaakceptować zaproszenia. Poproś administratora o wysłanie nowego zaproszenia."
},
"providerInviteAcceptedDesc": {
"message": "Dostęp do tego dostawcy otrzymasz po potwierdzeniu członkostwa przez administratora. Dostaniesz wtedy wiadomość e-mail."
},
"providerUsersNeedConfirmed": {
"message": "Posiadasz użytkowników, którzy zaakceptowali zaproszenie, ale muszą jeszcze zostać potwierdzeni. Użytkownicy nie będą posiadali dostępu do dostawcy, dopóki nie zostaną potwierdzeni."
},
"provider": {
"message": "Dostawca"
},
"newClientOrganization": {
"message": "Nowa organizacja klienta"
},
"newClientOrganizationDesc": {
"message": "Utwórz nową organizację klienta, która będzie powiązana z Tobą jako dostawcą. Będziesz miał dostęp do tej organizacji i będziesz mógł nią zarządzać."
},
"addExistingOrganization": {
"message": "Dodaj obecną organizację"
},
"myProvider": {
"message": "Mój dostawca"
},
"addOrganizationConfirmation": {
"message": "Czy na pewno chcesz dodać $ORGANIZATION$ jako organizację klienta do dostawcy $PROVIDER$?",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
},
"provider": {
"content": "$2",
"example": "My Provider Name"
}
}
},
"organizationJoinedProvider": {
"message": "Organizacja została dodana do dostawcy"
},
"accessingUsingProvider": {
"message": "Dostęp do organizacji za pomocą dostawcy $PROVIDER$",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"providerIsDisabled": {
"message": "Dostawca jest wyłączony."
},
"providerUpdated": {
"message": "Dostawca został zaktualizowany"
},
"yourProviderIs": {
"message": "Twój dostawca to $PROVIDER$. Posiada on uprawnienia administracyjne i rozliczeniowe dla Twojej organizacji.",
"placeholders": {
"provider": {
"content": "$1",
"example": "My Provider Name"
}
}
},
"detachedOrganization": {
"message": "Organizacja $ORGANIZATION$ została odłączona od Twojego dostawcy.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"detachOrganizationConfirmation": {
"message": "Czy na pewno chcesz odłączyć tę organizację? Organizacja będzie nadal istnieć, ale nie będzie już zarządzana przez dostawcę."
},
"add": {
"message": "Dodaj"
},
"updatedMasterPassword": {
"message": "Hasło główne zostało zaktualizowane"
},
"updateMasterPassword": {
"message": "Zaktualizuj hasło główne"
},
"updateMasterPasswordWarning": {
"message": "Hasło główne zostało zmienione przez administratora Twojej organizacji. Musisz je zaktualizować, aby uzyskać dostęp do sejfu. Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę."
},
"masterPasswordInvalidWarning": {
"message": "Hasło główne nie spełnia wymagań zasad organizacji. Aby dołączyć do organizacji, musisz zaktualizować je. Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę."
},
"maximumVaultTimeout": {
"message": "Blokowanie sejfu"
},
"maximumVaultTimeoutDesc": {
"message": "Ustaw maksymalny czas blokowania sejfu dla wszystkich użytkowników."
},
"maximumVaultTimeoutLabel": {
"message": "Maksymalny czas blokowania sejfu"
},
"invalidMaximumVaultTimeout": {
"message": "Maksymalny czas blokowania sejfu jest nieprawidłowy."
},
"hours": {
"message": "Godziny"
},
"minutes": {
"message": "Minuty"
},
"vaultTimeoutPolicyInEffect": {
"message": "Zasady organizacji mają wpływ czas blokowania sejfu. Maksymalny dozwolony czas wynosi $HOURS$ godz. i $MINUTES$ min.",
"placeholders": {
"hours": {
"content": "$1",
"example": "5"
},
"minutes": {
"content": "$2",
"example": "5"
}
}
},
"customVaultTimeout": {
"message": "Niestandardowy czas blokowania sejfu"
},
"vaultTimeoutToLarge": {
"message": "Czas blokowania sejfu przekracza limit określony przez organizację."
},
"disablePersonalVaultExport": {
"message": "Wyłącz eksportowanie osobistego sejfu"
},
"disablePersonalVaultExportDesc": {
"message": "Zabrania użytkownikom eksportowania ich prywatnych danych sejfu."
},
"vaultExportDisabled": {
"message": "Eksportowanie sejfu zostało wyłączone"
},
"personalVaultExportPolicyInEffect": {
"message": "Co najmniej jedna zasada organizacji uniemożliwia wyeksportowanie Twojego sejfu."
},
"selectType": {
"message": "Wybierz rodzaj logowania jednokrotnego SSO"
},
"type": {
"message": "Rodzaj"
},
"openIdConnectConfig": {
"message": "Konfiguracja połączenia OpenID"
},
"samlSpConfig": {
"message": "Konfiguracja dostawcy usługi SAML"
},
"samlIdpConfig": {
"message": "Konfiguracja dostawcy tożsamości SAML"
},
"callbackPath": {
"message": "Ścieżka wywołania zwrotnego"
},
"signedOutCallbackPath": {
"message": "Ścieżka wywołania zwrotnego wylogowania"
},
"authority": {
"message": "Dostawca tożsamości"
},
"clientId": {
"message": "Identyfikator klienta"
},
"clientSecret": {
"message": "Sekret"
},
"metadataAddress": {
"message": "Adres metadanych"
},
"oidcRedirectBehavior": {
"message": "Zachowanie przekierowania OIDC"
},
"getClaimsFromUserInfoEndpoint": {
"message": "Uzyskaj elementy Claim od punktu końcowego informacji o użytkowniku"
},
"additionalScopes": {
"message": "Dodatkowe / niestandardowe zakresy (oddzielone przecinkami)"
},
"additionalUserIdClaimTypes": {
"message": "Dodatkowe / niestandardowe elementy Claim identyfikatora użytkownika (oddzielone przecinkami)"
},
"additionalEmailClaimTypes": {
"message": "Dodatkowe / niestandardowe elementy Claim adresu e-mail (oddzielone przecinkami)"
},
"additionalNameClaimTypes": {
"message": "Dodatkowe / niestandardowe elementy Claim nazwy (oddzielone przecinkami)"
},
"acrValues": {
"message": "Żądane wartości referencyjne klasy kontekstu uwierzytelniania (acr_values)"
},
"expectedReturnAcrValue": {
"message": "Oczekiwano wartości \"acr\" elementu Claim w odpowiedzi (weryfikacja acr)"
},
"spEntityId": {
"message": "Identyfikator jednostki SP"
},
"spMetadataUrl": {
"message": "Adres URL metadanych SAML 2.0"
},
"spAcsUrl": {
"message": "Adres URL usługi Assertion Consumer Service (ACS)"
},
"spNameIdFormat": {
"message": "Format identyfikatora nazwy"
},
"spOutboundSigningAlgorithm": {
"message": "Algorytm podpisu wychodzącego"
},
"spSigningBehavior": {
"message": "Zachowanie przy podpisywaniu"
},
"spMinIncomingSigningAlgorithm": {
"message": "Minimalny algorytm podpisu przychodzącego"
},
"spWantAssertionsSigned": {
"message": "Chcę podpisać asercję"
},
"spValidateCertificates": {
"message": "Zweryfikuj certyfikaty"
},
"idpEntityId": {
"message": "Identyfikator jednostki"
},
"idpBindingType": {
"message": "Typ powiązania"
},
"idpSingleSignOnServiceUrl": {
"message": "Adres URL logowania jednokrotnego"
},
"idpSingleLogoutServiceUrl": {
"message": "Adres URL wylogowania jednokrotnego"
},
"idpX509PublicCert": {
"message": "Certyfikat publiczny X509"
},
"idpOutboundSigningAlgorithm": {
"message": "Algorytm podpisu wychodzącego"
},
"idpAllowUnsolicitedAuthnResponse": {
"message": "Zezwalaj na niezamówioną odpowiedź uwierzytelniania"
},
"idpAllowOutboundLogoutRequests": {
"message": "Zezwalaj na wychodzące żądania wylogowania"
},
"idpSignAuthenticationRequests": {
"message": "Podpisz żądanie autoryzacji"
},
"ssoSettingsSaved": {
"message": "Konfiguracja logowania jednokrotnego została zapisana."
},
"sponsoredFamilies": {
"message": "Darmowy plan rodzinny"
},
"sponsoredFamiliesEligible": {
"message": "Ty i Twoja rodzina kwalifikujecie się do darmowego planu rodzinnego. Wykorzystaj swój osobisty adres e-mail, aby zabezpieczyć swoje dane nawet wtedy, gdy nie jesteś w pracy."
},
"sponsoredFamiliesEligibleCard": {
"message": "Zrealizuj swój darmowy plan rodzinny, aby zabezpieczyć swoje dane nawet wtedy, gdy nie jesteś w pracy."
},
"sponsoredFamiliesInclude": {
"message": "Plan rodzinny zawiera"
},
"sponsoredFamiliesPremiumAccess": {
"message": "Konto Premium dla maksymalnie 6 użytkowników"
},
"sponsoredFamiliesSharedCollections": {
"message": "Udostępnione kolekcje dla sekretów rodziny"
},
"badToken": {
"message": "Link nie jest już ważny. Poproś sponsora o ponowne wysłanie oferty."
},
"reclaimedFreePlan": {
"message": "Darmowy plan został odzyskany"
},
"redeem": {
"message": "Zrealizuj"
},
"sponsoredFamiliesSelectOffer": {
"message": "Wybierz organizację, którą chcesz sponsorować"
},
"familiesSponsoringOrgSelect": {
"message": "Jaką darmową ofertę planu rodzinnego chcesz zrealizować?"
},
"sponsoredFamiliesEmail": {
"message": "Wpisz osobisty adres e-mail, aby uzyskać plan rodzinny"
},
"sponsoredFamiliesLeaveCopy": {
"message": "Jeśli opuścisz lub zostaniesz usunięty z organizacji sponsorującej, Twój plan rodzinny wygaśnie z końcem okresu rozliczeniowego."
},
"acceptBitwardenFamiliesHelp": {
"message": "Zaakceptuj ofertę dla obecnej organizacji lub utwórz nową organizację rodzinną."
},
"setupSponsoredFamiliesLoginDesc": {
"message": "Otrzymałeś ofertę darmowego planu rodzinnego. Aby kontynuować, zaloguj się na konto, które otrzymało ofertę."
},
"sponsoredFamiliesAcceptFailed": {
"message": "Nie można zaakceptować oferty. Wyślij ponownie ofertę z konta i spróbuj ponownie."
},
"sponsoredFamiliesAcceptFailedShort": {
"message": "Nie można zaakceptować oferty. $DESCRIPTION$",
"placeholders": {
"description": {
"content": "$1",
"example": "You must have at least one existing Families Organization."
}
}
},
"sponsoredFamiliesOffer": {
"message": "Zaakceptuj darmowy plan rodzinny"
},
"sponsoredFamiliesOfferRedeemed": {
"message": "Oferta rodzinna została zrealizowana"
},
"redeemed": {
"message": "Oferta została zrealizowana"
},
"redeemedAccount": {
"message": "Konto zostało zrealizowane"
},
"revokeAccount": {
"message": "Unieważnij konto $NAME$",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"resendEmailLabel": {
"message": "Wyślij ponownie wiadomość o sponsoringu do użytkownika $NAME$",
"placeholders": {
"name": {
"content": "$1",
"example": "My Sponsorship Name"
}
}
},
"freeFamiliesPlan": {
"message": "Darmowy plan rodzinny"
},
"redeemNow": {
"message": "Zrealizuj teraz"
},
"recipient": {
"message": "Odbiorca"
},
"removeSponsorship": {
"message": "Usuń sponsoring"
},
"removeSponsorshipConfirmation": {
"message": "Po usunięciu sponsoringu, będziesz odpowiedzialny za subskrypcję i powiązane faktury. Czy na pewno chcesz kontynuować?"
},
"sponsorshipCreated": {
"message": "Sponsoring został utworzony"
},
"revoke": {
"message": "Unieważnij"
},
"emailSent": {
"message": "Wiadomość została wysłana"
},
"revokeSponsorshipConfirmation": {
"message": "Po usunięciu konta, właściciel organizacji rodzinnej będzie odpowiedzialny za subskrypcję i powiązane faktury. Czy na pewno chcesz kontynuować?"
},
"removeSponsorshipSuccess": {
"message": "Sponsoring został usunięty"
},
"ssoKeyConnectorUnavailable": {
"message": "Nie można nawiązać połączenia z serwerem Key Connector. Spróbuj ponownie później."
},
"keyConnectorUrl": {
"message": "Adres URL serwera Key Connector"
},
"sendVerificationCode": {
"message": "Wyślij kod weryfikacyjny na adres e-mail"
},
"sendCode": {
"message": "Wyślij kod"
},
"codeSent": {
"message": "Kod został wysłany"
},
"verificationCode": {
"message": "Kod weryfikacyjny"
},
"confirmIdentity": {
"message": "Potwierdź swoją tożsamość, aby kontynuować."
},
"verificationCodeRequired": {
"message": "Kod weryfikacyjny jest wymagany."
},
"invalidVerificationCode": {
"message": "Kod weryfikacyjny jest nieprawidłowy"
},
"convertOrganizationEncryptionDesc": {
"message": "Organizacja $ORGANIZATION$ używa jednokrotnego logowania SSO z własnym serwerem kluczy. Użytkownicy nie muszą logować się za pomocą hasła głównego.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"leaveOrganization": {
"message": "Opuść organizację"
},
"removeMasterPassword": {
"message": "Usuń hasło główne"
},
"removedMasterPassword": {
"message": "Hasło główne zostało usunięte."
},
"allowSso": {
"message": "Zezwalaj na logowanie jednokrotne SSO"
},
"allowSsoDesc": {
"message": "Użytkownicy będą mogli uwierzytelnić się za pomocą danych logowania dostawcy tożsamości."
},
"ssoPolicyHelpStart": {
"message": "Włącz",
"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": "zasadę logowania jednokrotnego 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.'"
},
"ssoPolicyHelpEnd": {
"message": ", aby wymagać od wszystkich użytkowników logowania jednokrotnego 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": "Zasady logowania jednokrotnego SSO i pojedynczej organizacji muszą być włączone, aby skonfigurować serwer Key Connector."
},
"memberDecryptionOption": {
"message": "Opcje odszyfrowania użytkownika"
},
"memberDecryptionPassDesc": {
"message": "Po uwierzytelnieniu użytkownicy odszyfrują dane sejfu za pomocą hasła głównego."
},
"keyConnector": {
"message": "Key Connector"
},
"memberDecryptionKeyConnectorDesc": {
"message": "Połącz logowanie jednokrotne SSO z odszyfrowaniem za pomocą własnego serwera kluczy. Użytkownicy nie będą musieli używać hasła głównego do odszyfrowania sejfu. Aby uzyskać pomoc, skontaktuj się z działem obsługi klienta Bitwarden."
},
"keyConnectorPolicyRestriction": {
"message": "Logowanie jednokrotne SSO z odszyfrowaniem za pomocą serwera Key Connector jest włączone. Ta zasada dotyczy tylko właścicieli i administratorów."
},
"enabledSso": {
"message": "Logowanie jednokrotne SSO zostało włączone"
},
"disabledSso": {
"message": "Logowanie jednokrotne SSO zostało wyłączone"
},
"enabledKeyConnector": {
"message": "Serwer Key Connector został włączony"
},
"disabledKeyConnector": {
"message": "Serwer Key Connector został wyłączony"
},
"keyConnectorWarning": {
"message": "Jeśli użytkownicy zaczną używać serwera Key Connector, organizacja nie będzie mogła powrócić do odszyfrowywania za pomocą hasła głównego. Kontynuuj tylko wtedy, kiedy pewnie wdrażasz i zarządzasz serwerem kluczy."
},
"migratedKeyConnector": {
"message": "Przeniesiony do serwera Key Connector"
},
"paymentSponsored": {
"message": "Dodaj metodę płatności, aby powiązać ją z organizacją. Opłata zostanie pobrana dopiero po wybraniu dodatkowych funkcji lub wygaśnięciu oferty sponsoringu."
},
"orgCreatedSponsorshipInvalid": {
"message": "Oferta sponsoringu wygasła. Możesz usunąć utworzoną organizację, aby uniknąć opłaty na koniec 7-dniowego okresu próbnego. Jeśli chcesz zachować organizację i przyjąć odpowiedzialność za rozliczenia, zamknij ten monit."
},
"newFamiliesOrganization": {
"message": "Nowa organizacja rodzinna"
},
"acceptOffer": {
"message": "Zaakceptuj ofertę"
},
"sponsoringOrg": {
"message": "Organizacja sponsorująca"
},
"keyConnectorTest": {
"message": "Test"
},
"keyConnectorTestSuccess": {
"message": "Połączenie z serwerem Key Connector zostało nawiązane."
},
"keyConnectorTestFail": {
"message": "Nie można nawiązać połączenia z serwerem Key Connector. Sprawdź adres URL."
},
"sponsorshipTokenHasExpired": {
"message": "Oferta sponsoringu wygasła."
},
"freeWithSponsorship": {
"message": "DARMOWY ze sponsoringiem"
},
"formErrorSummaryPlural": {
"message": "$COUNT$ pól powyżej wymaga Twojej uwagi.",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
"formErrorSummarySingle": {
"message": "1 pole powyżej wymaga Twojej uwagi."
},
"fieldRequiredError": {
"message": "Pole $FIELDNAME$ jest wymagane.",
"placeholders": {
"fieldname": {
"content": "$1",
"example": "Full name"
}
}
},
"required": {
"message": "wymagane"
},
"idpSingleSignOnServiceUrlRequired": {
"message": "Wymagane, jeśli identyfikator podmiotu nie jest adres URL."
},
"openIdOptionalCustomizations": {
"message": "Opcjonalne dostosowania"
},
"openIdAuthorityRequired": {
"message": "Wymagane, jeśli organ jest nieprawidłowy."
},
"separateMultipleWithComma": {
"message": "Oddziel je przecinkami."
},
"sessionTimeout": {
"message": "Twoja sesja wygasła. Zaloguj się ponownie."
},
"exportingPersonalVaultTitle": {
"message": "Eksportowanie osobistego sejfu"
},
"exportingOrganizationVaultTitle": {
"message": "Eksportowanie sejfu organizacji"
},
"exportingPersonalVaultDescription": {
"message": "Tylko osobiste elementy sejfu powiązane z adresem $EMAIL$ zostaną wyeksportowane. Elementy sejfu należące do organizacji nie będą uwzględnione.",
"placeholders": {
"email": {
"content": "$1",
"example": "name@example.com"
}
}
},
"exportingOrganizationVaultDescription": {
"message": "Tylko sejf organizacji powiązany z organizacją $ORGANIZATION$ zostanie wyeksportowany. Osobiste elementy sejfu i elementy innych organizacji nie będą uwzględnione.",
"placeholders": {
"organization": {
"content": "$1",
"example": "My Org Name"
}
}
},
"backToReports": {
"message": "Powrót do raportów"
},
"generator": {
"message": "Generator"
},
"whatWouldYouLikeToGenerate": {
"message": "Co chcesz wygenerować?"
},
"passwordType": {
"message": "Rodzaj hasła"
},
"regenerateUsername": {
"message": "Wygeneruj ponownie nazwę użytkownika"
},
"generateUsername": {
"message": "Wygeneruj nazwę użytkownika"
},
"usernameType": {
"message": "Rodzaj nazwy użytkownika"
},
"plusAddressedEmail": {
"message": "Adres e-mail z plusem",
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
},
"plusAddressedEmailDesc": {
"message": "Użyj możliwości dodawania aliasów u swojego dostawcy poczty e-mail."
},
"catchallEmail": {
"message": "Adres catch-all"
},
"catchallEmailDesc": {
"message": "Użyj skonfigurowanej skrzynki catch-all w swojej domenie."
},
"random": {
"message": "Losowo"
},
"randomWord": {
"message": "Losowe słowo"
},
"service": {
"message": "Usługa"
}
}
| bitwarden/web/src/locales/pl/messages.json/0 | {
"file_path": "bitwarden/web/src/locales/pl/messages.json",
"repo_id": "bitwarden",
"token_count": 69827
} | 155 |
import {
Account as BaseAccount,
AccountSettings as BaseAccountSettings,
} from "jslib-common/models/domain/account";
export class AccountSettings extends BaseAccountSettings {
vaultTimeout: number = process.env.NODE_ENV === "development" ? null : 15;
}
export class Account extends BaseAccount {
settings?: AccountSettings = new AccountSettings();
constructor(init: Partial<Account>) {
super(init);
Object.assign(this.settings, {
...new AccountSettings(),
...this.settings,
});
}
}
| bitwarden/web/src/models/account.ts/0 | {
"file_path": "bitwarden/web/src/models/account.ts",
"repo_id": "bitwarden",
"token_count": 158
} | 156 |
.toast-container {
.toast-close-button {
font-size: 18px;
margin-right: 4px;
}
.ngx-toastr {
align-items: center;
background-image: none !important;
border-radius: $border-radius;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
display: flex;
padding: 15px;
.toast-close-button {
position: absolute;
right: 5px;
top: 0;
}
&:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.icon i::before {
float: left;
font-style: normal;
font-family: $icomoon-font-family;
font-size: 25px;
line-height: 20px;
padding-right: 15px;
}
.toast-message {
p {
margin-bottom: 0.5rem;
&:last-child {
margin-bottom: 0;
}
}
}
&.toast-danger,
&.toast-error {
@include themify($themes) {
background-color: themed("danger");
}
&,
&:before,
& .toast-close-button {
@include themify($themes) {
color: themed("textDangerColor") !important;
}
}
.icon i::before {
content: map_get($icons, "error");
}
}
&.toast-warning {
@include themify($themes) {
background-color: themed("warning");
}
&,
&:before,
& .toast-close-button {
@include themify($themes) {
color: themed("textWarningColor") !important;
}
}
.icon i::before {
content: map_get($icons, "exclamation-triangle");
}
}
&.toast-info {
@include themify($themes) {
background-color: themed("info");
}
&,
&:before,
& .toast-close-button {
@include themify($themes) {
color: themed("textInfoColor") !important;
}
}
.icon i:before {
content: map_get($icons, "info-circle");
}
}
&.toast-success {
@include themify($themes) {
background-color: themed("success");
}
&,
&:before,
& .toast-close-button {
@include themify($themes) {
color: themed("textSuccessColor") !important;
}
}
.icon i:before {
content: map_get($icons, "check");
}
}
}
}
| bitwarden/web/src/scss/toasts.scss/0 | {
"file_path": "bitwarden/web/src/scss/toasts.scss",
"repo_id": "bitwarden",
"token_count": 1137
} | 157 |
package com.aitongyi.web.back.conf;
import org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer;
public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplicationInitializer {
} | chwshuang/web/back/src/main/java/com/aitongyi/web/back/conf/SecurityWebApplicationInitializer.java/0 | {
"file_path": "chwshuang/web/back/src/main/java/com/aitongyi/web/back/conf/SecurityWebApplicationInitializer.java",
"repo_id": "chwshuang",
"token_count": 54
} | 158 |
package com.aitongyi.web.dao.mapper;
import com.aitongyi.web.bean.User;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
/**
* 用户数据映射
* Created by admin on 16/8/8.
*/
public interface UserMapper {
@Select(value="select username,password,enabled from users where username = #{username}")
User loadUserByUsername(@Param("username") String username);
@Insert(value="insert into users (username, password, enabled, create_date) value(#{username},#{password},#{enabled},#{createDate})")
void saveUser(User user);
}
| chwshuang/web/dao/src/main/java/com/aitongyi/web/dao/mapper/UserMapper.java/0 | {
"file_path": "chwshuang/web/dao/src/main/java/com/aitongyi/web/dao/mapper/UserMapper.java",
"repo_id": "chwshuang",
"token_count": 213
} | 159 |
package web
import (
"bufio"
"github.com/stretchr/testify/assert"
"net"
"net/http"
"net/http/httptest"
"testing"
"time"
)
type hijackableResponse struct {
Hijacked bool
}
func (h *hijackableResponse) Header() http.Header {
return nil
}
func (h *hijackableResponse) Write(buf []byte) (int, error) {
return 0, nil
}
func (h *hijackableResponse) WriteHeader(code int) {
// no-op
}
func (h *hijackableResponse) Flush() {
// no-op
}
func (h *hijackableResponse) Hijack() (net.Conn, *bufio.ReadWriter, error) {
h.Hijacked = true
return nil, nil, nil
}
func (h *hijackableResponse) CloseNotify() <-chan bool {
return nil
}
type closeNotifyingRecorder struct {
*httptest.ResponseRecorder
closed chan bool
}
func (c *closeNotifyingRecorder) close() {
c.closed <- true
}
func (c *closeNotifyingRecorder) CloseNotify() <-chan bool {
return c.closed
}
func TestResponseWriterWrite(t *testing.T) {
rec := httptest.NewRecorder()
rw := ResponseWriter(&appResponseWriter{ResponseWriter: rec})
assert.Equal(t, rw.Written(), false)
n, err := rw.Write([]byte("Hello world"))
assert.Equal(t, n, 11)
assert.NoError(t, err)
assert.Equal(t, n, 11)
assert.Equal(t, rec.Code, rw.StatusCode())
assert.Equal(t, rec.Code, http.StatusOK)
assert.Equal(t, rec.Body.String(), "Hello world")
assert.Equal(t, rw.Size(), 11)
assert.Equal(t, rw.Written(), true)
}
func TestResponseWriterWriteHeader(t *testing.T) {
rec := httptest.NewRecorder()
rw := ResponseWriter(&appResponseWriter{ResponseWriter: rec})
rw.WriteHeader(http.StatusNotFound)
assert.Equal(t, rec.Code, rw.StatusCode())
assert.Equal(t, rec.Code, http.StatusNotFound)
}
func TestResponseWriterHijack(t *testing.T) {
hijackable := &hijackableResponse{}
rw := ResponseWriter(&appResponseWriter{ResponseWriter: hijackable})
hijacker, ok := rw.(http.Hijacker)
assert.True(t, ok)
_, _, err := hijacker.Hijack()
assert.NoError(t, err)
assert.True(t, hijackable.Hijacked)
}
func TestResponseWriterHijackNotOK(t *testing.T) {
rw := ResponseWriter(&appResponseWriter{ResponseWriter: httptest.NewRecorder()})
_, _, err := rw.Hijack()
assert.Error(t, err)
}
func TestResponseWriterFlush(t *testing.T) {
rw := ResponseWriter(&appResponseWriter{ResponseWriter: httptest.NewRecorder()})
rw.Flush()
}
func TestResponseWriterCloseNotify(t *testing.T) {
rec := &closeNotifyingRecorder{
httptest.NewRecorder(),
make(chan bool, 1),
}
rw := ResponseWriter(&appResponseWriter{ResponseWriter: rec})
closed := false
notifier := rw.(http.CloseNotifier).CloseNotify()
rec.close()
select {
case <-notifier:
closed = true
case <-time.After(time.Second):
}
assert.True(t, closed)
}
| gocraft/web/response_writer_test.go/0 | {
"file_path": "gocraft/web/response_writer_test.go",
"repo_id": "gocraft",
"token_count": 1018
} | 160 |
## URLs
Every resource on the web, whether it's a web page, an image, a video, a [CSS stylesheet](../guides/going-buildless/css.md), some [JavaScript](./javascript.md), or anything else, is accesible via a Uniform Resource Locator, or <dfn><abbr>URL</abbr></dfn>.
A URL (specifically, a ["fully-qualified"](../guides/going-buildless/serving.md#fully-qualified-urls) URL) contains three parts
1. A protocol, e.g. `https`
2. An origin e.g. `developer.mozilla.org`
3. An (optional) path , e.g. `/en-US/docs/Web/API/MutationObserver`
The protocol tells the server how to respond, the origin (containing a domain name and zero, one, or more subdomains) identifies the server to request, and the path specifies the resource to access.
When your browser visits a web page, it essentially asks the server responsible for that page
for an HTML document, which may or may not link to other resources like images, CSS stylesheets or
JavaScript. The browser accesses each of those resources using an [HTTP `GET` request](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/GET). The web server's primary job is to provide that HTML document and its sub-resources to the browser.
For example, when you visited this web page, your browser sent a `GET https://modern-web.dev/docs/guides/standards-based/servers-and-clients/` request
## DNS
Before your `GET` request even reaches the server though, it travels through the **Domain Name System**, or <abbr>DNS</abbr>.
Every web servers has an [IP address](https://developer.mozilla.org/en-US/docs/Glossary/IP_Address),
a unique identifier typically composed of four numbers, each ranging from 0 to 255 e.g. `1.2.3.4`.
Think of an IP address like the street address of a business that only operates via mail.
If you want to conduct business with them, you must visit them at their street address.
Similarly, you must know a web server's IP address if you want to access any of its resources.
IP addresses were useful for computers, but difficult for people to remember and deal with,
so in 1983 Paul Mockapetris and the Internet Engineering Task force invented and implemented the DNS. That way, web server owners could register a human-readable domain name like
`modern-web.dev` that points to their IP address. You can think of the DNS as a vast distributed
table of domain names and their associated IP addresses.
| Name | IP |
| -------------- | ------- |
| google.com | 1.2.3.4 |
| modern-web.dev | 1.3.4.5 |
That way, when you type `modern-web.dev` into your
web browser, what you're actually doing is sending a GET request to the IP address _for_ `modern-web.dev`.
For more information of how the DNS works at a high level, check out the [computerphile video series on DNS](https://www.youtube.com/watch?v=uOfonONtIuk)
### `localhost`
While developing websites, common practise is to start a web server on your local development machine to test out the site, before deploying it to it's production server. Assigning a domain name to your current IP address would be tedious, especially considering that most residential ISPs assign dynamic IP addresses which change every few hours or days, and most office PCs are behind some kind of [NAT](https://www.wikiwand.com/en/Network_address_translation), which assigns them a private, local IP instead of their actual internet-facing IP address.
DNS reserves the special domain name `localhost` to refer to the device that is making the request, in our case, whatever machine you happen to be working on at the time. Operating Systems assign that name to the [loopback](https://www.wikiwand.com/en/Localhost#/Loopback) address `127.0.0.1` in the `hosts` file.
The following commands create a directory `test-server` inside the home directory, add a file there called `index.html` containing the text "Hello, World!", then launch a local web server on port 8000 that opens the default browser.
Run these commands on a UNIX-like operating system (GNU/Linux, macOS, WSL) that has nodejs installed, and you'll see a page containing the text "Hello, World!"
```
mkdir ~/test-server
cd ~/test-server
echo "Hello, World!" > index.html
npx es-dev-server -p 8000 --open .
```
| modernweb-dev/web/docs-drafts/faqs/server.md/0 | {
"file_path": "modernweb-dev/web/docs-drafts/faqs/server.md",
"repo_id": "modernweb-dev",
"token_count": 1140
} | 161 |
# Building ||3
| modernweb-dev/web/docs/docs/building/index.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/building/index.md",
"repo_id": "modernweb-dev",
"token_count": 5
} | 162 |
# Dev Server >> Plugins >> Legacy ||6
Plugin for using the dev server or test runner on legacy browsers, for example on Internet Explorer 11 which does not support modules.
## Usage
```
npm i --save-dev @web/dev-server-legacy
```
Add the plugin to your config:
```js
import { legacyPlugin } from '@web/dev-server-legacy';
export default {
plugins: [
// make sure this plugin is always last
legacyPlugin(),
],
};
```
> Make sure the legacy plugin is always the last one to transform your code. Otherwise it will compile away modules before other tools can process them.
## How it works
The plugin will automatically detect user agents which don't support modules. For those browsers it injects polyfills, transforms code to es5 and polyfills modules using [SystemJS](https://www.npmjs.com/package/systemjs).
## Configuration
The legacy plugins injects common polyfills on the page using [polyfills-loader](https://github.com/open-wc/open-wc/tree/master/packages/polyfills-loader). It's possible to turn off this behavior:
```js
import { legacyPlugin } from '@web/dev-server-legacy';
export default {
plugins: [
// make sure this plugin is always last
legacyPlugin({ polyfills: false }),
],
};
```
You can also turn off only some polyfills, or add custom polyfills:
```js
import { legacyPlugin } from '@web/dev-server-legacy';
export default {
plugins: [
// make sure this plugin is always last
legacyPlugin({
// these are the default values
coreJs: true,
regeneratorRuntime: 'always',
fetch: true,
abortController: true,
webcomponents: true,
intersectionObserver: false,
resizeObserver: false,
// you can also inject custom polyfills:
custom: [
{
// the name, must be unique
name: 'my-feature-polyfill',
// path to the polyfill file
path: require.resolve('my-feature-polyfill'),
// a test that determines when this polyfill should be loaded
// often this is done by checking whether some property of a
// feature exists in the window
test: "!('myFeature' in window)",
// whether your polyfill should be loaded as an es module
module: false,
// some polyfills need to be explicitly initialized
// this can be done with the initializer
initializer: 'window.myFeaturePolyfills.initialize()',
},
],
}),
],
};
```
| modernweb-dev/web/docs/docs/dev-server/plugins/legacy.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/dev-server/plugins/legacy.md",
"repo_id": "modernweb-dev",
"token_count": 846
} | 163 |
# Test Runner >> Browser Launchers >> Chrome ||20
Runs tests with a locally installed instance of Chrome and controls it using [puppeteer-core](https://www.npmjs.com/package/puppeteer-core). This avoids the post-install step of `puppeteer` or `playwright`, speeding up the installation of projects.
Use [Puppeteer](./puppeteer.md) if you don't want to install Chrome globally, for example in a CI environment.
## Usage
When using `@web/test-runner` regularly, the chrome launcher is installed and used by default.
For other projects you can install the browser launcher by running:
```
@web/test-runner-chrome
```
And included in your config:
```js
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
browsers: [chromeLauncher()],
};
```
## Concurrency
You can override the concurrency of this specific browser launcher
```js
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
browsers: [chromeLauncher({ concurrency: 1 })],
};
```
## Customizing launch options
If you want to customize the puppeteer launcher options, you can add the browser launcher in the config.
You can find all possible launch options in the [official documentation](https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#puppeteerlaunchoptions)
```js
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
browsers: [
chromeLauncher({
launchOptions: {
executablePath: '/path/to/executable',
headless: false,
devtools: true,
args: ['--some-flag'],
},
}),
],
};
```
## Customizing browser context and page
You can customize the way the browser context or puppeteer page is created. This allows configuring the test environment. Check the [official documentation](https://github.com/puppeteer/puppeteer/blob/v5.5.0/docs/api.md) for all API options.
```js
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
browsers: [
chromeLauncher({
createBrowserContext: ({ browser, config }) => browser.defaultBrowserContext(),
createPage: ({ context, config }) => context.newPage(),
}),
],
};
```
Some examples:
### Emulate mobile browser
```js
import { chromeLauncher } from '@web/test-runner-chrome';
import { KnownDevices } from 'puppeteer';
export default {
browsers: [
chromeLauncher({
async createPage({ context }) {
const page = await context.newPage();
page.emulate(KnownDevices['Pixel 2']);
return page;
},
}),
],
};
```
### Grant browser permissions
```js
import { chromeLauncher } from '@web/test-runner-chrome';
export default {
browsers: [
chromeLauncher({
async createBrowserContext({ browser }) {
// use default browser context
const context = browser.defaultBrowserContext();
// or create a new browser context if necessary
// const context = await browser.createIncognitoBrowserContext()
// grant the permissions
await context.overridePermissions('http://localhost:8000/', ['geolocation']);
return context;
},
}),
],
};
```
| modernweb-dev/web/docs/docs/test-runner/browser-launchers/chrome.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/test-runner/browser-launchers/chrome.md",
"repo_id": "modernweb-dev",
"token_count": 1032
} | 164 |
# Test Runner >> Reporters >> JUnit ||20
JUnit XML reporter for web test runner
## Configuration
Web test runner JUnit reporter accepts two options:
| Option | Type | Default | Description |
| ------------ | ------- | ---------------------- | --------------------------------------------------------------------------------- |
| `outputPath` | string | `'./test-results.xml'` | file path (including extension) to write results to. Will be resolved from `cwd`. |
| `reportLogs` | boolean | `false` | Whether to report browser logs in the xml file's `system-out` element |
## Example
```js
import { defaultReporter } from '@web/test-runner';
import { junitReporter } from '@web/test-runner-junit-reporter';
export default {
nodeResolve: true,
reporters: [
// use the default reporter only for reporting test progress
defaultReporter({ reportTestResults: false, reportTestProgress: true }),
// use another reporter to report test results
junitReporter({
outputPath: './results/test-results.xml', // default `'./test-results.xml'`
reportLogs: true, // default `false`
}),
],
};
```
| modernweb-dev/web/docs/docs/test-runner/reporters/junit.md/0 | {
"file_path": "modernweb-dev/web/docs/docs/test-runner/reporters/junit.md",
"repo_id": "modernweb-dev",
"token_count": 440
} | 165 |
# Dev Server >> Getting Started ||10
Web Dev Server helps developing for the web, using native browser features like es modules. It is ideal for buildless workflows and has a plugin architecture for light code transformations.
> Web Dev Server is the successor of [es-dev-server](https://www.npmjs.com/package/es-dev-server)
## Working with Web Dev Server
At its core, the dev server acts like a static file server. It tries to not get in the way of regular browser behavior. Additional functionalities are additive, enabled via flags or commands.
## Installing the server
To get started we first need to install the server:
```
npm i --save-dev @web/dev-server
```
We can then run it using the `web-dev-server` or `wds` command.
To view all the available commands, use the `--help` flag or view the [complete docs](../../docs/dev-server/overview.md).
```
npx web-dev-server --help
```
## Creating a simple page
Let's create a simple demo page for our project called `demo/index.html`.
Add the following content:
```html
<!DOCTYPE html>
<html>
<body>
Hello world!
</body>
</html>
```
To view this page with the dev server, we run the command with the `--open` flag and point it to the demo page:
```
npx web-dev-server --open /demo/
```
This should show `Hello world!` on the page.
## Learn more
All the code is available on [github](https://github.com/modernweb-dev/example-projects/tree/master/guides/dev-server).
See the [documentation of @web/dev-server](../../docs/dev-server/overview.md).
| modernweb-dev/web/docs/guides/dev-server/getting-started.md/0 | {
"file_path": "modernweb-dev/web/docs/guides/dev-server/getting-started.md",
"repo_id": "modernweb-dev",
"token_count": 458
} | 166 |
# Test Runner >> Code Coverage ||50
Once you have a decent set of tests you may want to look into what could still be improved.
Code coverage can help to find which code segments have not yet been tested.
Generally it's advised to have a code coverage at above 80% which you will most likely have if you practice Test Driven Development (TDD).
## Getting the code coverage
To see the code coverage of our tests, all we need to do use run the test runner with the `--coverage` flag. It's a bit slower than the regular test run, so we don't enable it by default.
1. Add a script to your `package.json`
```json
{
"scripts": {
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --coverage"
}
}
```
But before we can gather coverage we need to have some source code and tests.
As good citizens we start with the tests first
👉 `test/calc.test.js`
```js
import { expect } from '@esm-bundle/chai';
import { calc } from '../src/calc.js';
it('does plus for 2 numbers', () => {
expect(calc('plus', 1, 1)).to.equal(2);
expect(calc('plus', 3, 12)).to.equal(15);
});
```
and then the actual implementation
```js
export function calc(type, a, b) {
if (type === 'plus') {
return a + b;
}
}
```
And while we are at it we can also add `minus`, I'm sure that will come in handy that at some point as well.
And if we provide a wrong type we should throw an error - better let the user know whats up.
👉 `src/calc.js`
```js
export function calc(type, a, b) {
if (type === 'plus') {
return a + b;
}
if (type === 'minus') {
return a - b;
}
throw new Error(`Invalid type "${type}" only plus or minus is allowed.`);
}
```
So let's run our test
```
$ npm run test
$ web-test-runner "test/**/*.test.js" --node-resolve --coverage
Chrome: |██████████████████████████████| 1/1 test files | 1 passed, 0 failed
Code coverage: 69.45 %
View full coverage report at coverage/lcov-report/index.html
Finished running tests in 1s, all tests passed! 🎉
```
As you can see, our test passed but our `Code coverage` is a bit on the low side.
## What to test
We might have a test, but we don't test all variations that can happen within the function.
In order to see what is missing we can look at the Coverage Report by `Command + Click`-ing on the link (coverage/lcov-report/index.html) in the console.
There, it will show us that `calc.js` has a yellow coverage and if we click on it we can see the detailed code and what is missing.

As you can see, we didn't test `minus` or what happens if an error is thrown.
Let's add some tests for the `minus` function.
```js
it('does minus for 2 numbers', () => {
expect(calc('minus', 3, 1)).to.equal(2);
});
```
It gives use a code coverage of `86.11 %`.
Adding a test for throwing an error will bring it to `100%`.
## Adding more features
Let's add the possibility to `multiply`.
While implementing `Lea` said it's time for a meeting so we put `return; // finish later` for now.
👉 `src/calc.js`
```js
export function calc(type, a, b) {
if (type === 'plus') {
return a + b;
}
if (type === 'minus') {
return a - b;
}
if (type === 'multiply') {
return; // finish later
}
throw new Error(`Invalid type "${type}" only plus, minus or multiply is allowed.`);
}
```
After the meeting it was time for lunch and when we came back to the code you forgot where we left of.
I think it was with the tests
Yeah let's finish those
👉 `test/calc.test.js`
```js
it('does multiply for 2 numbers', () => {
calc('multiply', 3, 3);
});
```
Run it
```
$ npm run test
$ web-test-runner "test/**/*.test.js" --node-resolve --coverage
Chrome: |██████████████████████████████| 1/1 test files | 4 passed, 0 failed
Code coverage: 100 %
View full coverage report at coverage/lcov-report/index.html
Finished running tests in 1s, all tests passed! 🎉
```
uh nice `100%` - but it feels fishy? didn't we have a `finish later` somewhere?
## How come we have 100% code coverage?
Lets first try to understand how code coverage works
The way code coverage gets measured is by applying a form of instrumentation. In short, before our code is executed it gets changed (instrumented) and it behaves something like this:
```js
// Note: This is a super simplified version for illustration purposes.
if (this.value === 'cat') {
console.log('We like cats too :)');
}
// becomes something like this (psoido code)
__instrumented['functionUpdate'] += 1;
if (this.value === 'cat') {
__instrumented['functionUpdateBranch1yes'] += 1;
console.log('We like cats too :)');
} else {
__instrumented['functionUpdateBranch1no'] += 1;
}
```
In short, your code gets littered with many many flags. Based on which flags get trigger a statistic gets created.
So 100% code coverage only means that every line you have in your code was executed at least once after all your tests finished. It does not mean that you tested everything, or if your tests make the correct assertions.
What happened in our case?
We called the `calc` with `multiply` but we forgot to put an assertion. So the correct code branch was executed but that it returned nothing we didn't test.
So we can correct our test
```js
it('does multiply for 2 numbers', () => {
expect(calc('multiply', 3, 3)).to.equal(9);
});
```
```
test/calc.test.js:
❌ does multiply for 2 numbers
at: test/calc.test.js:20:37
AssertionError: expected undefined to equal 9
at n.<anonymous> (test/calc.test.js:20:37)
Chrome: |██████████████████████████████| 1/1 test files | 3 passed, 1 failed
Code coverage: 100 %
View full coverage report at coverage/lcov-report/index.html
```
We now have a failing test but still 100% code coverage.
You should, therefore, see code coverage as a tool that only gives you guidance and help on spotting missing tests, rather than a hard guarantee of code quality.
## Ignoring uncovered lines
In more complex applications, it is likely that you will find yourself creating difficult, if not impossible, to test branches of functionality. While this can absolutely be a pointer to logic that is worth breaking down into more approachable parts, there will be cases where this is not feasible. If so, you may chose to ignore a line of code by using the `/* c8 ignore next */` custom comment. Using this, or more advanced forms of [ignoring uncovered lines](../../../docs/test-runner/writing-tests/code-coverage.md#ignoring-uncovered-lines) while computing code coverage can go a long way in preparing your project for long term maintanence.
## Coverage browser support
The default coverage of the test runner uses the ability of Chromium to do native code coverage instrumentation. This gives us the best speed. When testing multiple browsers this should still be fine, you don't need to get code coverage from all browsers. One browser is usually enough.
If you need to collect coverage from all browsers, or if you're not testing for Chromium at all, you can look into alternative ways of instrumenting your code. Check the [coverage docs](../../../docs/test-runner/writing-tests/code-coverage.md) to learn more about that.
## Learn more
All the code is available on [github](https://github.com/modernweb-dev/example-projects/tree/master/guides/test-runner).
See the [documentation of @web/test-runner](../../../docs/test-runner/overview.md).
| modernweb-dev/web/docs/guides/test-runner/code-coverage/index.md/0 | {
"file_path": "modernweb-dev/web/docs/guides/test-runner/code-coverage/index.md",
"repo_id": "modernweb-dev",
"token_count": 2231
} | 167 |
export default 'moduleFeaturesB';
| modernweb-dev/web/integration/test-runner/tests/basic/browser-tests/module-features-b.js/0 | {
"file_path": "modernweb-dev/web/integration/test-runner/tests/basic/browser-tests/module-features-b.js",
"repo_id": "modernweb-dev",
"token_count": 8
} | 168 |
import { BrowserLauncher, TestRunnerCoreConfig, TestSession } from '@web/test-runner-core';
import { runTests } from '@web/test-runner-core/test-helpers';
import { legacyPlugin } from '@web/dev-server-legacy';
import { resolve } from 'path';
import { expect } from 'chai';
export function runLocationChangeTest(
config: Partial<TestRunnerCoreConfig> & { browsers: BrowserLauncher[] },
) {
describe('location-change', async function () {
const browserCount = config.browsers.length;
let allSessions: TestSession[];
before(async () => {
const result = await runTests(
{
...config,
files: [...(config.files ?? []), resolve(__dirname, 'browser-tests', '*.test.js')],
plugins: [...(config.plugins ?? []), legacyPlugin()],
},
undefined,
{ allowFailure: true, reportErrors: false },
);
allSessions = result.sessions;
expect(allSessions.every(s => s.passed)).to.equal(false, 'All sessions should have failed');
});
it('handles tests which assign to window.location.href', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-location-href.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults).to.equal(undefined);
expect(session.logs).to.eql([]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include(
'Tests were interrupted because the page navigated to',
);
expect(session.errors[0].message).to.include(
'This can happen when clicking a link, submitting a form or interacting with window.location.',
);
}
});
it('handles tests which call window.location.reload()', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-location-reload.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults).to.equal(undefined);
expect(session.logs).to.eql([]);
expect(session.errors).to.eql([
{
message:
'Tests were interrupted because the page was reloaded. This can happen when clicking a link, submitting a form or interacting with window.location.',
},
]);
}
});
it('handles tests which call window.location.replace', () => {
const sessions = allSessions.filter(s =>
s.testFile.endsWith('fail-location-replace.test.js'),
);
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults).to.equal(undefined);
expect(session.logs).to.eql([]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include(
'Tests were interrupted because the page navigated to',
);
expect(session.errors[0].message).to.include('/new-page/');
expect(session.errors[0].message).to.include(
'This can happen when clicking a link, submitting a form or interacting with window.location.',
);
}
});
});
}
| modernweb-dev/web/integration/test-runner/tests/location-change/runLocationChangeTest.ts/0 | {
"file_path": "modernweb-dev/web/integration/test-runner/tests/location-change/runLocationChangeTest.ts",
"repo_id": "modernweb-dev",
"token_count": 1247
} | 169 |
import './non-existing.js';
describe('test 404 import', () => {
it('is never registered because ./x.js does not exist', () => {});
});
| modernweb-dev/web/integration/test-runner/tests/test-failure/browser-tests/fail-404-import.test.js/0 | {
"file_path": "modernweb-dev/web/integration/test-runner/tests/test-failure/browser-tests/fail-404-import.test.js",
"repo_id": "modernweb-dev",
"token_count": 44
} | 170 |
import { BrowserLauncher, TestRunnerCoreConfig, TestSession } from '@web/test-runner-core';
import { runTests } from '@web/test-runner-core/test-helpers';
import { legacyPlugin } from '@web/dev-server-legacy';
import { resolve, sep } from 'path';
import { expect } from 'chai';
const ERROR_NOT_IMPORTABLE = {
message:
'Could not import your test module. Check the browser logs or open the browser in debug mode for more information.',
};
const FAILED_TO_FETCH_MESSAGES = [
// chromium
'Failed to fetch dynamically imported module',
// firefox
'error loading dynamically imported module',
// safari
'Importing a module script failed',
];
function expectFetchModuleFailed(msg: string) {
if (!FAILED_TO_FETCH_MESSAGES.some(m => msg.includes(m))) {
throw new Error(`Expected a failed to fetch module message, but got error message: ${msg}`);
}
}
export function runTestFailureTest(
config: Partial<TestRunnerCoreConfig> & { browsers: BrowserLauncher[] },
) {
describe('test-failure', async function () {
const browserCount = config.browsers.length;
let allSessions: TestSession[];
before(async () => {
const result = await runTests(
{
...config,
files: [...(config.files ?? []), resolve(__dirname, 'browser-tests', '*.test.js')],
plugins: [...(config.plugins ?? []), legacyPlugin()],
},
undefined,
{ allowFailure: true, reportErrors: false },
);
allSessions = result.sessions;
expect(allSessions.every(s => s.passed)).to.equal(false, 'All sessions should have failed');
});
it('handles tests with 404 imports', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-404-import.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.suites.length).to.equal(0);
expect(session.testResults!.tests.length).to.equal(0);
expect(session.request404s).to.eql([
'integration/test-runner/tests/test-failure/browser-tests/non-existing.js',
]);
expect(session.errors).to.eql([ERROR_NOT_IMPORTABLE]);
expect(session.logs.length).to.equal(1);
expectFetchModuleFailed((session.logs[0] as any)[0]);
}
});
it('handles tests that error with a circular reference', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-circular-error.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql(['bad predicate']);
expect(session.passed).to.be.false;
expect(session.testResults!.tests![0].error!.message).to.equal(
"expected { x: 'x', circle: [Circular] } to equal null",
);
}
});
it('handles tests that throw in afterEach', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-after-each.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql([
'true is true',
'true is really true',
]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include('error thrown in afterEach hook');
expect(session.errors[0].stack).to.include(
`test-failure${sep}browser-tests${sep}fail-after-each.test.js`,
);
expect(session.logs).to.eql([]);
}
});
it('handles tests that throw in after', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-after.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql([
'true is true',
'true is really true',
]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include('error thrown in after hook');
expect(session.errors[0].stack).to.include(
`test-failure${sep}browser-tests${sep}fail-after.test.js`,
);
expect(session.logs).to.eql([]);
}
});
it('handles tests that throw in beforeEach', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-before-each.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql([
'true is true',
'true is really true',
]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include('error thrown in beforeEach hook');
expect(session.errors[0].stack).to.include(
`test-failure${sep}browser-tests${sep}fail-before-each.test.js`,
);
expect(session.logs).to.eql([]);
}
});
it('handles tests that throw in before', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-before.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql([
'true is true',
'true is really true',
]);
expect(session.errors.length).to.equal(1);
expect(session.errors[0].message).to.include('error thrown in before hook');
expect(session.errors[0].stack).to.include(
`test-failure${sep}browser-tests${sep}fail-before.test.js`,
);
expect(session.logs).to.eql([]);
}
});
it('handles a custom thrown error', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-custom-error.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.map(t => t.name)).to.eql(['custom error']);
expect(session.testResults!.tests[0].error!.message).to.include('a custom error thrown');
expect(session.testResults!.tests[0].error!.stack).to.include(
`browser-tests${sep}fail-custom-error.test.js`,
);
expect(session.errors).to.eql([]);
expect(session.logs).to.eql([]);
}
});
it('handles an error executing a module', () => {
const sessions = allSessions.filter(s =>
s.testFile.endsWith('fail-error-module-exec.test.js'),
);
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.suites.length).to.equal(0);
expect(session.testResults!.tests.length).to.equal(0);
expect(session.errors).to.eql([ERROR_NOT_IMPORTABLE]);
expect(session.logs[0][0]).to.include('This is thrown before running tests');
}
});
it('handles error stack traces correctly', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-stack-trace.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests.length).to.equal(1);
expect(session.testResults!.tests[0]!.error!.message).to.include('My error');
expect(session.testResults!.tests[0]!.error!.stack).to.include('throwErrorC');
expect(session.testResults!.tests[0]!.error!.stack).to.include('fail-stack-trace-c.js');
expect(session.errors).to.eql([]);
expect(session.logs).to.eql([]);
}
});
it('handles string diffs correctly', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-string-diff.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.tests[0]!.name).to.equal('string diff');
expect(session.testResults!.tests[0]!.error!.message).to.include(
"expected 'foo' to equal 'bar'",
);
expect(session.testResults!.tests[0]!.error!.expected).to.equal('bar');
expect(session.testResults!.tests[0]!.error!.actual).to.equal('foo');
expect(session.testResults!.tests.length).to.equal(1);
expect(session.errors).to.eql([]);
expect(session.logs).to.eql([]);
}
});
it('handles syntax errors', () => {
const sessions = allSessions.filter(s => s.testFile.endsWith('fail-syntax-error.test.js'));
expect(sessions.length === browserCount).to.equal(true);
for (const session of sessions) {
expect(session.testResults!.suites.length).to.eql(0);
expect(session.testResults!.tests.length).to.eql(0);
expect(session.errors).to.eql([ERROR_NOT_IMPORTABLE]);
}
});
});
}
| modernweb-dev/web/integration/test-runner/tests/test-failure/runTestFailureTest.ts/0 | {
"file_path": "modernweb-dev/web/integration/test-runner/tests/test-failure/runTestFailureTest.ts",
"repo_id": "modernweb-dev",
"token_count": 3589
} | 171 |
/* eslint-disable */
const { esbuildPlugin } = require('@web/dev-server-esbuild');
module.exports = {
rootDir: '../..',
nodeResolve: true,
plugins: [esbuildPlugin({ ts: true })],
};
| modernweb-dev/web/packages/browser-logs/web-test-runner.config.js/0 | {
"file_path": "modernweb-dev/web/packages/browser-logs/web-test-runner.config.js",
"repo_id": "modernweb-dev",
"token_count": 69
} | 172 |
export default { foo: 'bar' };
| modernweb-dev/web/packages/config-loader/test/fixtures/package-cjs/module-in-.cjs/my-project.config.cjs/0 | {
"file_path": "modernweb-dev/web/packages/config-loader/test/fixtures/package-cjs/module-in-.cjs/my-project.config.cjs",
"repo_id": "modernweb-dev",
"token_count": 10
} | 173 |
# Dev Server Core
## Projects
- `@web/dev-server-core` implements the basics of the server.
- `@web/dev-server` reads command line args, starts the dev server, and adds default opinionated plugins and logger.
- `@web/config-loader` is used to read the config.
The other `@web/dev-server-` packages are plugins for adding new functionalities. Specifically `@web/dev-server-rollup` contains the adapter for using rollup plugins.
## Middleware
The dev server is based on Koa, we use it's middleware architecture to structure the lifecycle of the server. Most server functionalities are implemented as koa middleware, and some as dev server plugins.
The plugin system is implemented as middleware as well, plugins hooks are called from middleware.
When a request comes in and itis processed by the server's middleware in the order that they are defined. Users can define custom middleware in the config, which run before the built-in middleware.
## Setup
The main entrypoint for dev server is the `DevServer` class. This takes a configuration object and sets up the koa server, middleware and plugins.
The server is started and stopped using the `.start` and `.stop` methods. You can access the underlying koa app, HTTP server and websockets manager from the dev server instance.
```js
import { DevServer } from '@web/dev-server-core';
const server = new DevServer(config, logger);
await server.start();
console.log(server.koaApp);
console.log(server.server);
console.log(server.webSockets);
await server.stop();
```
## Code transformation pipeline
When a file is served by the server we call each plugin with a `transform` hook in the order that they appear.
Normally files are served as a stream to the browser. To make it easier to do code transformation, we drain the stream before we call plugin hooks. This way `context.body` inside a plugin is always a string with the full file content. We skip transform for binary files, like images and videos.
### Transforming module imports
One of the built-in plugins uses the `transform` hook to rewrite es module imports. It runs last after other plugins, it analyzes module imports and calls the `resolveImport` and `transformImport` plugin hooks.
As soon as a plugin returns a result for `resolveImport` we stop, and don't call the hook on the other plugins. This is typically used for resolving bare imports. `transformImport` is always called for each plugin, this is typically used to append URL parameters.
### Transform cache
After transformation we store the result in a cache, keyed by the request URL. When a request for the same file is made again, it's served from this cache. To bust the cache we watch the served files on the file system using the `chokidar` library. When a file is edited, moved or deleted, we remove it from the cache.
By default the transform cache assumed that transformation is the same for any given request URL. Sometimes this isn't the case, for example in the case of the legacy plugin which does a transformation based on the user agent. The `transformCacheKey` hook can be used to define a different key for the transform cache.
## Caching mechanisms
The dev server has two caching mechanisms, the browser cache and the transform cache
The browser cache is based on [etags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag). Each response of the dev server is accompanied with a timestamp of the last time the file was modified. When a file is requested for a second time, for example after a refresh, the browser compares the new timestamp with the previous and if there was no change it will skip downloading and use it from the browser cache.
Etag based caching still reads the file from disk, and potentially triggers transformations. This is why we also have a transform cache, as described above. This way we can serve directly from memory.
A potential improvement could be to use long term caching in the browser, so that it doesn't need to consult the server for any cache validation. This might be useful for packages in node_modules. The challenge to solve here is a smart way of invalidating this cache.
| modernweb-dev/web/packages/dev-server-core/architecture.md/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/architecture.md",
"repo_id": "modernweb-dev",
"token_count": 982
} | 174 |
{
"name": "@web/dev-server-core",
"version": "0.7.1",
"publishConfig": {
"access": "public"
},
"description": "Web dev server core",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/dev-server-core"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/dev-server-core",
"main": "dist/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./dist/index.js"
},
"./dist/dom5": {
"types": "./dist/dom5/index.d.ts",
"require": "./dist/dom5/index.js"
},
"./test-helpers": {
"types": "./test-helpers.d.ts",
"import": "./test-helpers.mjs",
"require": "./dist/test-helpers.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"start:demo": "node demo/basic/start-server.js",
"start:event-stream": "node demo/event-stream/start-server.js",
"start:http2": "node demo/http2/start-server.js",
"start:import-asset": "node demo/import-asset/start-server.js",
"test": "mocha \"test/**/*.test.{ts,js,mjs,cjs}\" --require ts-node/register --exit --reporter dot",
"test:watch": "mocha \"test/**/*.test.{ts,js,mjs,cjs}\" --require ts-node/register --watch --watch-files src,test"
},
"files": [
".self-signed-dev-server-ssl.cert",
".self-signed-dev-server-ssl.key",
"*.d.ts",
"*.mjs",
"dist",
"src"
],
"keywords": [
"web",
"dev",
"server",
"es-dev-server",
"core"
],
"dependencies": {
"@types/koa": "^2.11.6",
"@types/ws": "^7.4.0",
"@web/parse5-utils": "^2.1.0",
"chokidar": "^3.4.3",
"clone": "^2.1.2",
"es-module-lexer": "^1.0.0",
"get-stream": "^6.0.0",
"is-stream": "^2.0.0",
"isbinaryfile": "^5.0.0",
"koa": "^2.13.0",
"koa-etag": "^4.0.0",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"lru-cache": "^8.0.4",
"mime-types": "^2.1.27",
"parse5": "^6.0.1",
"picomatch": "^2.2.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/koa-etag": "^3.0.0",
"@types/koa-static": "^4.0.1",
"@types/parse5": "^6.0.1",
"abort-controller": "^3.0.0",
"express": "^4.18.2",
"nanoid": "^3.1.25",
"portfinder": "^1.0.32"
}
}
| modernweb-dev/web/packages/dev-server-core/package.json/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/package.json",
"repo_id": "modernweb-dev",
"token_count": 1230
} | 175 |
import { Middleware } from 'koa';
import { Plugin } from '../plugins/Plugin';
/**
* Calls fileParsed hook on plugins.
*/
export function pluginFileParsedMiddleware(plugins: Plugin[]): Middleware {
const fileParsedPlugins = plugins.filter(p => 'fileParsed' in p);
if (fileParsedPlugins.length === 0) {
// nothing to call
return (ctx, next) => next();
}
return async (context, next) => {
await next();
if (context.status < 200 || context.status >= 300) {
return undefined;
}
for (const plugin of fileParsedPlugins) {
plugin.fileParsed?.(context);
}
};
}
| modernweb-dev/web/packages/dev-server-core/src/middleware/pluginFileParsedMiddleware.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/src/middleware/pluginFileParsedMiddleware.ts",
"repo_id": "modernweb-dev",
"token_count": 217
} | 176 |
import { Context } from 'koa';
import isStream from 'is-stream';
import getStream from 'get-stream';
import { isBinaryFile } from 'isbinaryfile';
import path from 'path';
const OUTSIDE_ROOT_KEY = '/__wds-outside-root__/';
/**
* Turns a file path into a path suitable for browsers, with a / as seperator.
* @param {string} filePath
* @returns {string}
*/
export function toBrowserPath(filePath: string) {
return filePath.split(path.sep).join('/');
}
/**
* Transforms a file system path to a browser URL. For example windows uses `\` on the file system,
* but it should use `/` in the browser.
*/
export function toFilePath(browserPath: string) {
return browserPath.split('/').join(path.sep);
}
export function getHtmlPath(path: string) {
return path.endsWith('/') ? `${path}index.html` : path;
}
export class RequestCancelledError extends Error {}
/**
* Returns the context body as string or buffer, depending on the content type.
* Response streams can only be read once, the response body is replaced with
* the stream result.
*/
export async function getResponseBody(ctx: Context): Promise<string | Buffer> {
let requestCanceled = false;
ctx.req.on('close', () => {
requestCanceled = true;
});
if (Buffer.isBuffer(ctx.body)) {
const contentLength = Number(ctx.response.get('content-length'));
const canStringify = !(await isBinaryFile(ctx.body, contentLength));
if (requestCanceled) {
throw new RequestCancelledError();
}
if (canStringify) {
ctx.body = ctx.body.toString();
}
return ctx.body as string;
}
if (typeof ctx.body === 'string') {
return ctx.body;
}
if (isStream(ctx.body)) {
// a stream can only be read once, so after reading it assign
// the string response to the body so that it can be accessed
// again later
try {
const bodyBuffer = await getStream.buffer(ctx.body);
ctx.body = bodyBuffer;
// recursive call will stringify the buffer
return getResponseBody(ctx);
} catch (error) {
if (error instanceof RequestCancelledError) {
throw error;
}
if (requestCanceled) {
throw new RequestCancelledError();
}
throw error;
}
}
return ctx.body as string;
}
export function isInlineScriptRequest(contextOrUrl: Context | string) {
const url = typeof contextOrUrl === 'string' ? contextOrUrl : contextOrUrl.url;
return url.includes(`inline-script-`) && url.includes('source');
}
export function getRequestBrowserPath(url: string) {
const urlObj = new URL(url, 'http://localhost:8000/');
let requestPath;
// inline module requests have the source in a query string
if (isInlineScriptRequest(url)) {
requestPath = urlObj.searchParams.get('source')!;
} else {
requestPath = urlObj.pathname;
}
if (requestPath.endsWith('/')) {
return `${requestPath}index.html`;
}
return requestPath;
}
export function getRequestFilePath(contextOrString: Context | string, rootDir: string): string {
const url = typeof contextOrString === 'string' ? contextOrString : contextOrString.url;
const requestPath = getRequestBrowserPath(url);
if (isOutsideRootDir(requestPath)) {
const { normalizedPath, newRootDir } = resolvePathOutsideRootDir(requestPath, rootDir);
const filePath = toFilePath(normalizedPath);
return path.join(newRootDir, filePath);
} else {
const filePath = toFilePath(requestPath);
return path.join(rootDir, filePath);
}
}
export function isOutsideRootDir(browserPath: string) {
return browserPath.startsWith(OUTSIDE_ROOT_KEY);
}
export function resolvePathOutsideRootDir(browserPath: string, rootDir: string) {
const [, , depthString] = browserPath.split('/');
const depth = Number(depthString);
if (depth == null || Number.isNaN(depth)) {
throw new Error(`Invalid wds-root-dir path: ${path}`);
}
const normalizedPath = browserPath.replace(`${OUTSIDE_ROOT_KEY}${depth}`, '');
const newRootDir = path.resolve(rootDir, `..${path.sep}`.repeat(depth));
return { normalizedPath, newRootDir };
}
| modernweb-dev/web/packages/dev-server-core/src/utils.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/src/utils.ts",
"repo_id": "modernweb-dev",
"token_count": 1359
} | 177 |
import path from 'path';
import {
createTestServer as originalCreateTestServer,
timeout,
fetchText,
expectIncludes,
virtualFilesPlugin,
} from '../src/test-helpers.js';
import { DevServerCoreConfig } from '../src/server/DevServerCoreConfig.js';
export function createTestServer(config: Partial<DevServerCoreConfig> = {}) {
return originalCreateTestServer({
rootDir: path.resolve(__dirname, 'fixtures', 'basic'),
...config,
});
}
export { timeout, fetchText, expectIncludes, virtualFilesPlugin };
| modernweb-dev/web/packages/dev-server-core/test/helpers.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-core/test/helpers.ts",
"repo_id": "modernweb-dev",
"token_count": 157
} | 178 |
# @web/dev-server-esbuild
## 1.0.1
### Patch Changes
- e31de569: Update `@web/dev-server-rollup` to latest version
## 1.0.0
### Major Changes
- 8218a0a5: Update ESBuild to latest version.
ESBuild has changed how TypeScript decorators are enabled in preparation for JavaScript decorators to land in browsers. ESBuild now requires the `experimentalDecorators` key to be set to `true` in the `tsconfig.json` for TypeScript decorators to be enabled.
If you are having issues with decorators after updating to this version, try setting the `experimentalDecorators` key in your `tsconfig.json`.
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/dev-server-core@0.7.0
## 0.4.4
### Patch Changes
- ef6b2543: Use split versions for all lit dependencies
## 0.4.3
### Patch Changes
- 640ba85f: added types for main entry point
- Updated dependencies [640ba85f]
- @web/dev-server-core@0.6.2
## 0.4.2
### Patch Changes
- Updated dependencies [7f0f4315]
- @web/dev-server-core@0.6.0
## 0.4.1
### Patch Changes
- c26d3730: Update TypeScript
- Updated dependencies [c26d3730]
- @web/dev-server-core@0.5.1
## 0.4.0
### Minor Changes
- febd9d9d: Set node 16 as the minimum version.
### Patch Changes
- Updated dependencies [ca715faf]
- Updated dependencies [febd9d9d]
- @web/dev-server-core@0.5.0
## 0.3.6
### Patch Changes
- 8128ca53: Update @rollup/plugin-replace
- Updated dependencies [c103f166]
- @web/dev-server-core@0.4.1
## 0.3.5
### Patch Changes
- 0f5631d0: chore(deps): bump ua-parser-js from 1.0.32 to 1.0.33
## 0.3.4
### Patch Changes
- 1b2ae08c: Bump the `esbuild` version to `^0.16 || ^0.17` fix a decorator bug in 0.14
- Updated dependencies [ac05ca5d]
- Updated dependencies [acc0a84c]
- Updated dependencies [81db401b]
- @web/dev-server-core@0.4.0
## 0.3.3
### Patch Changes
- cfc2aa1e: Expose banner/footer as a pass-through to esbuild transform
## 0.3.2
### Patch Changes
- 00da4255: Update es-module-lexer to 1.0.0
- Updated dependencies [00da4255]
- @web/dev-server-core@0.3.19
## 0.3.1
### Patch Changes
- d0e5e3f0: Add a `tsconfig` option which can be pointed towards your tsconfig.json to keep esbuild and typescript in sync.
Usage example:
```js
import { fileURLToPath } from 'url';
esbuildPlugin({
ts: true,
tsconfig: fileURLToPath(new URL('./tsconfig.json', import.meta.url)),
});
```
Note: Without the above code the `tsconfig.json` file will not be used.
## 0.3.0
### Minor Changes
- c1946b04: Relax `esbuild` semver dependency from `^0.12.21` to `^0.12 || ^0.13 || ^0.14`.
## 0.2.16
### Patch Changes
- d406c772: Do not process scripts with non-JS type attribute
- Updated dependencies [b2c081d8]
- @web/dev-server-core@0.3.17
## 0.2.15
### Patch Changes
- 9f4940f0: Update ua-parser-js dependency to 1.0.2
## 0.2.14
### Patch Changes
- bf89ce23: Update dependency @mdn/browser-compat-data to v4
## 0.2.13
### Patch Changes
- 9f96e7be: Update esbuild dependency to ^0.12.21
## 0.2.12
### Patch Changes
- 90375262: Upgrade to esbuild ^0.11.0
- 020917c4: Do not override js loader with esbuild target
- Updated dependencies [780a3520]
- @web/dev-server-core@0.3.10
## 0.2.11
### Patch Changes
- 87705b04: pass `esbuildconfig.define` to esbuild transform function
## 0.2.10
### Patch Changes
- c7f8d271: set esm format for non jslike loaders
- Updated dependencies [375116ad]
- @web/dev-server-core@0.3.2
## 0.2.9
### Patch Changes
- Updated dependencies [0f613e0e]
- @web/dev-server-core@0.3.0
## 0.2.8
### Patch Changes
- 28890a0: update to latest esbuild
## 0.2.6
### Patch Changes
- 46a01fb: filter unsupported sourcemap warnings
## 0.2.5
### Patch Changes
- 8111c2f: upgrade mdn-browser-compat-data to @mdn/browser-compat-data
- 201ffbd: updated esbuild dependency
## 0.2.4
### Patch Changes
- be76d89: exposed strict option for esbuild
## 0.2.3
### Patch Changes
- dc2d689: added esbuild auto and auto-always flags
- bb53e68: add support for JSON loader
## 0.2.2
### Patch Changes
- ce2a2e6: align dependencies
## 0.2.1
### Patch Changes
- aa65fd1: run build before publishing
- Updated dependencies [aa65fd1]
- @web/dev-server-core@0.2.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 [62ff8b2]
- Updated dependencies [9be1f95]
- @web/dev-server-core@0.2.0
## 0.1.5
### Patch Changes
- 5a33916: support .js extensions in TS imports
## 0.1.4
### Patch Changes
- 38a8505: improve esbuild syntax error logging
- Updated dependencies [8596276]
- @web/dev-server-core@0.1.5
## 0.1.3
### Patch Changes
- 8b94b03: update to esbuild 0.6.x
## 0.1.2
### Patch Changes
- 339722c: don't compile class fields when transforming ts
## 0.1.1
### Patch Changes
- 89214f0: update to latest esbuild
- Updated dependencies [59d3efe]
- @web/dev-server-core@0.1.1
## 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.5
### Patch Changes
- 5da18d7: compile class fields strictly
- d1cc35c: set transform cache key
- Updated dependencies [9302247]
- @web/dev-server-core@0.0.3
## 0.0.4
### Patch Changes
- a4d32b3: add auto compatibility mode
## 0.0.3
### Patch Changes
- 271ef35: allow setting loader for file extension
## 0.0.2
### Patch Changes
- bffc09b: fix package json main
## 0.0.1
### Patch Changes
- 52803c0: add esbuild plugin
| modernweb-dev/web/packages/dev-server-esbuild/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-esbuild/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 2459
} | 179 |
import { Plugin } from '@web/dev-server-core';
import { Loader } from 'esbuild';
import { EsbuildPlugin } from './EsbuildPlugin.js';
export interface EsBuildPluginArgs {
target?: string | string[];
js?: boolean;
ts?: boolean;
json?: boolean;
jsx?: boolean;
tsx?: boolean;
jsxFactory?: string;
jsxFragment?: string;
loaders?: Record<string, Loader>;
define?: { [key: string]: string };
tsconfig?: string;
banner?: string;
footer?: string;
}
export function esbuildPlugin(args: EsBuildPluginArgs = {}): Plugin {
const target = args.target ?? 'auto';
const loaders: Record<string, Loader> = {};
for (const [key, value] of Object.entries(args.loaders ?? {})) {
loaders[key.startsWith('.') ? key : `.${key}`] = value;
}
if (args.ts) {
loaders['.ts'] = 'ts';
}
if (args.jsx) {
loaders['.jsx'] = 'jsx';
}
if (args.tsx) {
loaders['.tsx'] = 'tsx';
}
if (args.json) {
loaders['.json'] = 'json';
}
if (args.js) {
loaders['.js'] = 'js';
}
if (
!Object.prototype.hasOwnProperty.call(loaders, '.js') &&
(typeof args.target === 'string' || Array.isArray(args.target))
) {
loaders['.js'] = 'js';
}
const handledExtensions = Object.keys(loaders);
const tsFileExtensions: string[] = [];
for (const [extension, loader] of Object.entries(loaders)) {
if (loader === 'ts' || loader === 'tsx') {
tsFileExtensions.push(extension);
}
}
return new EsbuildPlugin({
loaders,
target,
handledExtensions,
tsFileExtensions,
jsxFactory: args.jsxFactory,
jsxFragment: args.jsxFragment,
define: args.define,
tsconfig: args.tsconfig,
banner: args.banner,
footer: args.footer,
});
}
| modernweb-dev/web/packages/dev-server-esbuild/src/esbuildPluginFactory.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-esbuild/src/esbuildPluginFactory.ts",
"repo_id": "modernweb-dev",
"token_count": 674
} | 180 |
import { expect } from 'chai';
import { expectIncludes, createTestServer } from '@web/dev-server-core/test-helpers';
import { esbuildPlugin } from '../src/index.js';
describe('esbuildPlugin JSON', function () {
it('transforms .json files', async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
{
name: 'test',
serve(context) {
if (context.path === '/foo.json') {
return '{ "foo": "bar" }';
}
},
},
esbuildPlugin({ json: true }),
],
});
try {
const response = await fetch(`${host}/foo.json`);
const text = await response.text();
expect(response.status).to.equal(200);
expect(response.headers.get('content-type')).to.equal(
'application/javascript; charset=utf-8',
);
expectIncludes(text, 'var foo = "bar";');
expectIncludes(text, 'var foo_default = { foo };');
expectIncludes(text, 'export {');
expectIncludes(text, 'foo_default as default');
expectIncludes(text, 'foo');
expectIncludes(text, '}');
} finally {
server.stop();
}
});
});
| modernweb-dev/web/packages/dev-server-esbuild/test/json.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-esbuild/test/json.test.ts",
"repo_id": "modernweb-dev",
"token_count": 506
} | 181 |
import { hmrPlugin } from '../../index.mjs';
export default {
rootDir: '.',
open: 'demo/vanilla/',
plugins: [hmrPlugin()],
};
| modernweb-dev/web/packages/dev-server-hmr/demo/vanilla/server.config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-hmr/demo/vanilla/server.config.mjs",
"repo_id": "modernweb-dev",
"token_count": 53
} | 182 |
// this file is autogenerated with the generate-mjs-dts-entrypoints script
import cjsEntrypoint from './dist/index.js';
const { importMapsPlugin } = cjsEntrypoint;
export { importMapsPlugin };
| modernweb-dev/web/packages/dev-server-import-maps/index.mjs/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-import-maps/index.mjs",
"repo_id": "modernweb-dev",
"token_count": 59
} | 183 |
# @web/dev-server-legacy
## 2.1.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/polyfills-loader@2.2.0
- @web/dev-server-core@0.7.0
## 2.0.3
### Patch Changes
- 640ba85f: added types for main entry point
- Updated dependencies [640ba85f]
- @web/polyfills-loader@2.1.3
- @web/dev-server-core@0.6.2
## 2.0.2
### Patch Changes
- Updated dependencies [7f0f4315]
- @web/dev-server-core@0.6.0
## 2.0.1
### Patch Changes
- 7bb523fa: Update various dependencies
## 2.0.0
### Major Changes
- febd9d9d: Set node 16 as the minimum version.
### Patch Changes
- Updated dependencies [ca715faf]
- Updated dependencies [febd9d9d]
- @web/dev-server-core@0.5.0
- @web/polyfills-loader@2.0.0
## 1.0.3
### Patch Changes
- 817d674b: Update `browserslist-useragent`
- Updated dependencies [c103f166]
- @web/dev-server-core@0.4.1
## 1.0.2
### Patch Changes
- Updated dependencies [ac05ca5d]
- Updated dependencies [acc0a84c]
- Updated dependencies [81db401b]
- @web/dev-server-core@0.4.0
## 1.0.1
### Patch Changes
- 00da4255: Update es-module-lexer to 1.0.0
- Updated dependencies [00da4255]
- @web/dev-server-core@0.3.19
## 1.0.0
### Major Changes
- 9b0b7a91: Migrate to @web/polyfills-loader
### Patch Changes
- Updated dependencies [16f33e3e]
- Updated dependencies [283c9258]
- Updated dependencies [642d5253]
- @web/polyfills-loader@1.3.2
## 0.1.7
### Patch Changes
- Updated dependencies [0f613e0e]
- @web/dev-server-core@0.3.0
## 0.1.6
### Patch Changes
- 7aabb52: only transform modules to systemjs
- Updated dependencies [e8ebfcc]
- @web/dev-server-core@0.2.13
## 0.1.5
### Patch Changes
- 7901081: Include URL parameters in inline scripts cache
## 0.1.4
### Patch Changes
- 71348e2: make polyfills configurable
## 0.1.3
### Patch Changes
- abf42a3: fixed incorrect source filename when transforming inline scripts with babel
## 0.1.2
### Patch Changes
- ce2a2e6: align dependencies
## 0.1.1
### Patch Changes
- aa65fd1: run build before publishing
- Updated dependencies [aa65fd1]
- @web/dev-server-core@0.2.1
## 0.1.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
- Updated dependencies [96dd279]
- Updated dependencies [62ff8b2]
- Updated dependencies [9be1f95]
- @web/dev-server-core@0.2.0
## 0.0.3
### Patch Changes
- 5fada4a: improve logging and error reporting
## 0.0.2
### Patch Changes
- db5baff: cleanup and sort dependencies
- Updated dependencies [db5baff]
- @web/dev-server-core@0.1.4
## 0.0.1
### Patch Changes
- 2a25595: first release
| modernweb-dev/web/packages/dev-server-legacy/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-legacy/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 1162
} | 184 |
import { expect } from 'chai';
import { createTestServer } from '@web/dev-server-core/test-helpers';
import { fetchText, expectIncludes, expectNotIncludes } from '@web/dev-server-core/test-helpers';
import { legacyPlugin } from '../src/legacyPlugin.js';
import { modernUserAgents, legacyUserAgents } from './userAgents.js';
const modernCode = `
class Foo {
}
async function doImport() {
await import('./xyz.js');
}
console.log(window?.foo?.bar);`;
describe('legacyPlugin - transform js', function () {
this.timeout(10000);
for (const [name, userAgent] of Object.entries(modernUserAgents)) {
it(`does not do any work on ${name}`, async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
{
name: 'test',
serve(context) {
if (context.path === '/app.js') {
return modernCode;
}
},
},
legacyPlugin(),
],
});
const text = await fetchText(`${host}/app.js`, {
headers: { 'user-agent': userAgent },
});
expect(text.trim()).to.equal(modernCode.trim());
server.stop();
});
}
for (const [name, userAgent] of Object.entries(legacyUserAgents)) {
it(`transforms to es5 on ${name}`, async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
{
name: 'test',
serve(context) {
if (context.path === '/app.js') {
return modernCode;
}
},
},
legacyPlugin(),
],
});
const text = await fetchText(`${host}/app.js`, {
headers: { 'user-agent': userAgent },
});
expectNotIncludes(text, 'System.register(');
expectIncludes(text, "import('./xyz.js?systemjs=true');");
expectIncludes(text, 'function asyncGeneratorStep');
expectIncludes(text, 'function _classCallCheck(instance');
expectIncludes(text, '_asyncToGenerator');
expectIncludes(
text,
'console.log((_window = window) === null || _window === void 0 || (_window = _window.foo) === null || _window === void 0 ? void 0 : _window.bar);',
);
server.stop();
});
it(`transforms to SystemJS when systemjs paramater is given ${name}`, async () => {
const { server, host } = await createTestServer({
rootDir: __dirname,
plugins: [
{
name: 'test',
serve(context) {
if (context.path === '/app.js') {
return modernCode;
}
},
},
legacyPlugin(),
],
});
const text = await fetchText(`${host}/app.js?systemjs=true`, {
headers: { 'user-agent': userAgent },
});
expectIncludes(text, 'System.register(');
expectIncludes(text, "_context.import('./xyz.js?systemjs=true');");
expectIncludes(text, 'function asyncGeneratorStep');
expectIncludes(text, 'function _classCallCheck(instance');
expectIncludes(text, '_asyncToGenerator');
expectIncludes(
text,
'console.log((_window = window) === null || _window === void 0 || (_window = _window.foo) === null || _window === void 0 ? void 0 : _window.bar);',
);
server.stop();
});
}
});
| modernweb-dev/web/packages/dev-server-legacy/test/transform-js.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-legacy/test/transform-js.test.ts",
"repo_id": "modernweb-dev",
"token_count": 1495
} | 185 |
import { InputOptions, Plugin as RollupPlugin } from 'rollup';
import { rollupAdapter } from './rollupAdapter.js';
type FnArgs = readonly unknown[];
type RollupPluginFn<T extends FnArgs> = (...args: T) => RollupPlugin;
export interface FromRollupOptions {
throwOnUnresolvedImport?: boolean;
}
export function fromRollup<T extends FnArgs>(
rollupPluginFn: RollupPluginFn<T>,
rollupInputOptions: Partial<InputOptions> = {},
options: FromRollupOptions = {},
) {
if (typeof rollupPluginFn !== 'function') {
throw new Error(
`fromRollup should be called with a rollup plugin function. Received: ${rollupPluginFn}`,
);
}
// return a function wrapper which intercepts creation of the rollup plugin
return function wrappedRollupPluginFn(...args: T) {
// call the original plugin function
const rollupPlugin = rollupPluginFn(...args);
// wrap the rollup plugin in an adapter for web dev server
return rollupAdapter(rollupPlugin, rollupInputOptions, options);
};
}
| modernweb-dev/web/packages/dev-server-rollup/src/fromRollup.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/src/fromRollup.ts",
"repo_id": "modernweb-dev",
"token_count": 315
} | 186 |
export default 'd';
| modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/bundle-basic/src/foo/d.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/bundle-basic/src/foo/d.js",
"repo_id": "modernweb-dev",
"token_count": 6
} | 187 |
<html>
<body>
<script type="module">
import 'my-app/internal-a.js';
</script>
</body>
</html>
| modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/private-imports/import-private-directly.html/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/test/node/fixtures/private-imports/import-private-directly.html",
"repo_id": "modernweb-dev",
"token_count": 53
} | 188 |
import rollupReplace from '@rollup/plugin-replace';
import { createTestServer, fetchText, expectIncludes } from '../test-helpers.js';
import { fromRollup } from '../../../src/index.js';
const replace = fromRollup(rollupReplace as any);
describe('@rollup/plugin-replace', () => {
it('can resolve imports', async () => {
const { server, host } = await createTestServer({
plugins: [
{
name: 'test',
serve() {
return 'if (__buildEnv__ === "production") { console.log("foo"); }';
},
},
replace({ __buildEnv__: '"production"' }),
],
});
try {
const text = await fetchText(`${host}/foo.js`);
expectIncludes(text, 'if ("production" === "production") { console.log("foo"); }');
} finally {
server.stop();
}
});
});
| modernweb-dev/web/packages/dev-server-rollup/test/node/plugins/replace.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-rollup/test/node/plugins/replace.test.ts",
"repo_id": "modernweb-dev",
"token_count": 337
} | 189 |
module.exports = {
stories: ['../stories/**/*.stories.@(md|mdx)', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
rollupConfig(config) {
// console.log('rollup config', config);
},
};
| modernweb-dev/web/packages/dev-server-storybook/demo/wc/.storybook/main.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/demo/wc/.storybook/main.js",
"repo_id": "modernweb-dev",
"token_count": 77
} | 190 |
import { createRequire } from 'node:module';
import { Plugin, RollupOptions, RollupLog } from 'rollup';
import { nodeResolve as resolve } from '@rollup/plugin-node-resolve';
import { babel } from '@rollup/plugin-babel';
import { rollupPluginHTML as html } from '@web/rollup-plugin-html';
import { polyfillsLoader } from '@web/rollup-plugin-polyfills-loader';
import { DEFAULT_EXTENSIONS } from '@babel/core';
import terser from '@rollup/plugin-terser';
import { mdxPlugin } from './mdxPlugin.js';
import { mdjsPlugin } from './mdjsPlugin.js';
import { injectExportsOrderPlugin } from './injectExportsOrderPlugin.js';
const require = createRequire(import.meta.url);
const prebuiltDir = require
.resolve('@web/storybook-prebuilt/package.json')
.replace('/package.json', '');
const ignoredWarnings = ['EVAL', 'THIS_IS_UNDEFINED'];
function onwarn(warning: RollupLog, warn: (msg: RollupLog) => void) {
if (ignoredWarnings.includes(warning.code!)) {
return;
}
warn(warning);
}
interface CreateRollupConfigParams {
type: string;
outputDir: string;
indexFilename: string;
indexHtmlString: string;
storyFilePaths?: string[];
}
export function createRollupConfig(params: CreateRollupConfigParams): RollupOptions {
const { outputDir, indexFilename, indexHtmlString, storyFilePaths } = params;
const options: RollupOptions = {
preserveEntrySignatures: false,
onwarn,
output: {
entryFileNames: '[hash].js',
chunkFileNames: '[hash].js',
assetFileNames: '[hash][extname]',
format: 'system',
dir: outputDir,
},
plugins: [
resolve({
moduleDirectories: ['node_modules', 'web_modules'],
}),
babel({
babelHelpers: 'bundled',
babelrc: false,
configFile: false,
extensions: [...DEFAULT_EXTENSIONS, 'md', 'mdx'],
exclude: `${prebuiltDir}/**`,
sourceMaps: true,
// @ts-ignore The provided types are wrong. See https://babeljs.io/docs/options#inputsourcemap
inputSourceMap: false,
presets: [
[
require.resolve('@babel/preset-env'),
{
targets: [
'last 3 Chrome major versions',
'last 3 ChromeAndroid major versions',
'last 3 Firefox major versions',
'last 3 Edge major versions',
'last 3 Safari major versions',
'last 3 iOS major versions',
'ie 11',
],
useBuiltIns: false,
shippedProposals: true,
modules: false,
bugfixes: true,
},
],
],
plugins: [
[require.resolve('babel-plugin-bundled-import-meta'), { importStyle: 'baseURI' }],
[
require.resolve('babel-plugin-template-html-minifier'),
{
modules: {
// this is web component specific, but has no effect on other project styles
'lit-html': ['html'],
'lit-element': ['html', { name: 'css', encapsulation: 'style' }],
'@web/storybook-prebuilt/web-components': [
'html',
{ name: 'css', encapsulation: 'style' },
],
'@web/storybook-prebuilt/web-components.js': [
'html',
{ name: 'css', encapsulation: 'style' },
],
'@open-wc/testing': ['html', { name: 'css', encapsulation: 'style' }],
'@open-wc/testing-helpers': ['html', { name: 'css', encapsulation: 'style' }],
},
logOnError: true,
failOnError: false,
strictCSS: true,
htmlMinifier: {
collapseWhitespace: true,
conservativeCollapse: true,
removeComments: true,
caseSensitive: true,
minifyCSS: true,
},
},
],
],
}) as Plugin,
html({ input: { name: indexFilename, html: indexHtmlString } }) as Plugin,
polyfillsLoader({
polyfills: {
coreJs: true,
fetch: true,
abortController: true,
regeneratorRuntime: 'always',
webcomponents: true,
intersectionObserver: true,
resizeObserver: true,
},
}) as Plugin,
// @ts-ignore the provided type is wrong
terser({ format: { comments: false } }) as Plugin,
],
};
if (storyFilePaths && storyFilePaths.length > 0 && Array.isArray(options.plugins)) {
// plugins we need to inject only in the preview
options.plugins!.unshift(injectExportsOrderPlugin(storyFilePaths));
options.plugins!.unshift(mdxPlugin());
options.plugins!.unshift(mdjsPlugin(params.type));
}
return options;
}
| modernweb-dev/web/packages/dev-server-storybook/src/build/rollup/createRollupConfig.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/src/build/rollup/createRollupConfig.ts",
"repo_id": "modernweb-dev",
"token_count": 2215
} | 191 |
{
"extends": "../../tsconfig.node-base.json",
"compilerOptions": {
"module": "node16",
"moduleResolution": "node16",
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"allowJs": true
},
"references": [
{
"path": "../parse5-utils/tsconfig.json"
},
{
"path": "../polyfills-loader/tsconfig.json"
},
{
"path": "../rollup-plugin-html/tsconfig.json"
},
{
"path": "../browser-logs/tsconfig.json"
},
{
"path": "../dev-server-core/tsconfig.json"
},
{
"path": "../test-runner-core/tsconfig.json"
},
{
"path": "../test-runner-coverage-v8/tsconfig.json"
},
{
"path": "../test-runner-mocha/tsconfig.json"
},
{
"path": "../test-runner-chrome/tsconfig.json"
},
{
"path": "../config-loader/tsconfig.json"
},
{
"path": "../dev-server-rollup/tsconfig.json"
},
{
"path": "../rollup-plugin-polyfills-loader/tsconfig.json"
},
{
"path": "../dev-server/tsconfig.json"
}
],
"include": [
"src",
"types"
],
"exclude": [
"src/browser",
"tests",
"dist"
]
}
| modernweb-dev/web/packages/dev-server-storybook/tsconfig.json/0 | {
"file_path": "modernweb-dev/web/packages/dev-server-storybook/tsconfig.json",
"repo_id": "modernweb-dev",
"token_count": 590
} | 192 |
module.exports = {
http2: true,
};
| modernweb-dev/web/packages/dev-server/demo/http2/server.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/demo/http2/server.js",
"repo_id": "modernweb-dev",
"token_count": 16
} | 193 |
window.__moduleLoaded = true;
| modernweb-dev/web/packages/dev-server/demo/static/module.js/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/demo/static/module.js",
"repo_id": "modernweb-dev",
"token_count": 10
} | 194 |
import { DevServerCoreConfig } from '@web/dev-server-core';
import { RollupNodeResolveOptions } from '@web/dev-server-rollup';
export interface DevServerConfig extends DevServerCoreConfig {
/**
* Whether to resolve module imports using node resolve.
*/
nodeResolve?: boolean | RollupNodeResolveOptions;
/**
* Whether to preserve symlinks when resolving module imports.
*/
preserveSymlinks?: boolean;
/**
* Whether to catch the file system and reload the brower on changes.
*/
watch?: boolean;
/**
* Whether to clear the terminal when watch mode reloads the browser.
* Defaults to true.
*/
clearTerminalOnReload?: boolean;
/**
* JS language target to compile down to using esbuild. Recommended value is "auto", which compiles based on user agent. Check the docs for more options.
*/
esbuildTarget?: string | string[];
/**
* Whether to open the browser on start. This can be a boolean, or a path to open the browser on.
* If the `appIndex` option is set, setting `open` to true will use the app index value as open path.
*/
open?: string | boolean;
/**
* Whether to log debug messages.
*/
debug?: boolean;
}
| modernweb-dev/web/packages/dev-server/src/config/DevServerConfig.ts/0 | {
"file_path": "modernweb-dev/web/packages/dev-server/src/config/DevServerConfig.ts",
"repo_id": "modernweb-dev",
"token_count": 344
} | 195 |
# @web/mocks
## 1.1.1
### Patch Changes
- 17906853: workaround for MSW breaking change
## 1.1.0
### Minor Changes
- a42c4fcf: feat: remove local sw.js, use the service worker as exported by msw instead so the integrity checksums of the SW and browser code are always aligned
## 1.0.1
### Patch Changes
- dee9a56b: fix: sw ts
- 01bd7c45: fix: sw integrity checksum
## 1.0.0
### Major Changes
- 3b0040ac: Initial release
## 0.1.14
### Patch Changes
- ef6b2543: Use split versions for all lit dependencies
## 0.1.13
### Patch Changes
- 99855b24: fix: lock dep
## 0.1.12
### Patch Changes
- 7320d233: support Storybook 7
- Updated dependencies [7320d233]
- @web/storybook-utils@1.0.0
## 0.1.11
### Patch Changes
- 06f917ff: Fix/msw safari issue
## 0.1.10
### Patch Changes
- 69bf1091: fix: api prefix
- 68bf3293: fix: types
## 0.1.9
### Patch Changes
- 1633a764: fix: error message
## 0.1.8
### Patch Changes
- bec7bfe1: fix: add missing handler message
## 0.1.7
### Patch Changes
- 49b85fe2: fix: msw improvements
## 0.1.6
### Patch Changes
- 8cf9fcc1: Export types like Mock & handler as well via the `types.js` entrypoint.
Example:
```js
// in TS
import { Mock } from '@web/mocks/types.js';
// or in JsDoc
/**
* Gets mocks by given status
* @param {number} status - response code status
* @returns {import('@web/mocks/types.js').Mock[]}
*/
export function getMocksByStatus(status) {}
```
## 0.1.5
### Patch Changes
- c2a9df28: fix: flatten mocks correctly
## 0.1.4
### Patch Changes
- fd7cb03e: fix: content type
## 0.1.3
### Patch Changes
- f2362bbf: Trigger pipeline
## 0.1.2
### Patch Changes
- e9c77e06: Version Packages
## 0.1.1
### Patch Changes
- 78f76396: Publish Types
## 0.1.0
### Minor Changes
- a2fb64aa: Adds support for node.js request mocking, as well as some breaking changes:
1. Add support for request mocking in node js via `@web/mocks/node.js`
2. rename `rest` to `http` -> not all requests/apis are RESTful, but all requests are http requests
3. `withMocks()` to `withMocks` (no function call)
4. move plugins from `node.js` to `plugins.js`
5. separate `registerMockRoutes` from loading storybook code; when using `registerMockRoutes` in tests, we dont need to import storybook code
6. remove `./msw.js`, moved into `browser.js` directly
7. moved `storybook-decorator.js` to `@web/mocks/storybook/decorator.js`, this also leaves some space for the storybook UI addon (`@web/mocks/storybook/addon.js`), and if we decide to move the `storyFixture` (`@web/mocks/storybook/fixture.js`) in here as well
## 0.0.13
### Patch Changes
- 2062d628: chore: update sw
## 0.0.12
### Patch Changes
- 6d765f22: chore: bump msw and remove process.env shim
## 0.0.11
### Patch Changes
- e2189387: fix: default value for opts
## 0.0.10
### Patch Changes
- 1b8b7792: chore: add comment to injected code
## 0.0.9
### Patch Changes
- e2e0bf97: feat: request interceptor
## 0.0.8
### Patch Changes
- 626daf60: feat: bypass sw
## 0.0.7
### Patch Changes
- 1dcec76b: fix: mock rollup plugin
## 0.0.6
### Patch Changes
- 1354dd07: Docs/mocks
- b0d8a907: fix: type: module, and add missing file
## 0.0.5
### Patch Changes
- d952332b: docs: msw
## 0.0.4
### Patch Changes
- 7ef5114f: fix: missing file
## 0.0.3
### Patch Changes
- 6451a7f8: fix: publish correct files
## 0.0.2
### Patch Changes
- 7c27731b: feat: mocks
| modernweb-dev/web/packages/mocks/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/mocks/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 1324
} | 196 |
// @ts-nocheck
import { registerMockRoutes } from '../../browser.js';
export function createDecorator(addons, makeDecorator) {
addons.getChannel().on('mocks:edited', data => {
const url = new URL(window.location);
const mocks = encodeURIComponent(JSON.stringify(data));
url.searchParams.set('mocks', mocks);
window.location.href = url.href;
});
return makeDecorator({
name: 'withMocks',
parameterName: 'mocks',
wrapper: (getStory, context) => {
const mocks = context.parameters?.mocks ?? context.story?.parameters?.mocks ?? [];
const editedMocks = getEditedMocks() ?? [];
if (Array.isArray(mocks)) {
const finalizedMocks = mocks.map(mock => {
const editedMock = editedMocks.find(
edited => edited.method === mock.method && edited.endpoint === mock.endpoint,
);
return editedMock
? {
...editedMock,
handler: () =>
new Response(JSON.stringify(editedMock.data), {
headers: {
'Content-Type': 'application/json',
},
status: editedMock.status,
}),
}
: mock;
});
if (finalizedMocks) {
addons.getChannel().emit('mocks:loaded', finalizedMocks.flat(Infinity));
registerMockRoutes(finalizedMocks);
}
}
return getStory(context);
},
});
}
function getEditedMocks() {
const url = new URL(window.location);
if (!url.searchParams.has('mocks')) {
return null;
}
const param = url.searchParams.get('mocks');
url.searchParams.delete('mocks');
window.history.replaceState(null, '', `${url.search}`);
try {
return JSON.parse(decodeURIComponent(param));
} catch (error) {
throw new Error(`Cannot parse mocks: ${error.message}`);
}
}
| modernweb-dev/web/packages/mocks/storybook/addon/create-decorator.js/0 | {
"file_path": "modernweb-dev/web/packages/mocks/storybook/addon/create-decorator.js",
"repo_id": "modernweb-dev",
"token_count": 858
} | 197 |
const { expect } = require('chai');
const { parse, serialize } = require('parse5');
const { getAttribute, getTextContent, findElement } = require('../src/index');
const utils = require('../src/index');
describe('parse5-utils', () => {
describe('createElement', () => {
it('creates an element', () => {
const doc = parse('');
const el = utils.createElement('my-element');
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal(
'<html><head></head><body></body></html><my-element></my-element>',
);
});
it('creates an element with attributes', () => {
const doc = parse('');
const el = utils.createElement('my-element', { foo: 'bar', x: '' });
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal(
'<html><head></head><body></body></html><my-element foo="bar" x=""></my-element>',
);
});
});
describe('createScript', () => {
it('create a script', () => {
const doc = parse('');
const el = utils.createScript();
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal('<html><head></head><body></body></html><script></script>');
});
it('create a script with attributes', () => {
const doc = parse('');
const el = utils.createScript({ type: 'module' });
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal(
'<html><head></head><body></body></html><script type="module"></script>',
);
});
it('create a script with text content', () => {
const doc = parse('');
const el = utils.createScript({ type: 'module' }, 'console.log("x");');
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal(
'<html><head></head><body></body></html><script type="module">console.log("x");</script>',
);
});
});
describe('isHtmlFragment()', () => {
it('returns whether a HTML string is a fragment', () => {
expect(utils.isHtmlFragment('<my-element></my-element>')).to.equal(true);
expect(utils.isHtmlFragment('')).to.equal(true);
expect(utils.isHtmlFragment('foo')).to.equal(true);
expect(utils.isHtmlFragment('<div></div>')).to.equal(true);
expect(utils.isHtmlFragment('<!-- COMMENT --><!DOCTYPE><my-element></my-element>')).to.equal(
false,
);
expect(
utils.isHtmlFragment(`<!--
COMMENT
--><!DOCTYPE><my-element></my-element>`),
).to.equal(false);
expect(utils.isHtmlFragment('<!DOCTYPE><my-element></my-element>')).to.equal(false);
expect(utils.isHtmlFragment(' <!DOCTYPE><my-element></my-element>')).to.equal(false);
expect(utils.isHtmlFragment(' <html><my-element></my-element></html>')).to.equal(false);
expect(utils.isHtmlFragment(' <body><my-element></my-element></body>')).to.equal(false);
expect(utils.isHtmlFragment(' <head><my-element></my-element></head>')).to.equal(false);
});
});
describe('getAttributes()', () => {
it('returns the attributes of an element', () => {
const el = utils.createElement('my-element', { foo: 'bar', x: '' });
expect(utils.getAttributes(el)).to.eql({ foo: 'bar', x: '' });
});
it('returns an empty object if there are no attributes', () => {
const el = utils.createElement('my-element');
expect(utils.getAttributes(el)).to.eql({});
});
});
describe('getAttribute()', () => {
it('returns a single attribute', () => {
const el = utils.createElement('my-element', { foo: 'bar', x: '' });
expect(utils.getAttribute(el, 'foo')).to.eql('bar');
});
it('returns undefined if the attribute was not found', () => {
const el = utils.createElement('my-element', { foo: 'bar', x: '' });
expect(utils.getAttribute(el, 'y')).to.eql(undefined);
});
});
describe('setAttribute()', () => {
it('can set the attribute on an element', () => {
const doc = parse('');
const el = utils.createElement('my-element');
utils.appendChild(doc, el);
utils.setAttribute(el, 'foo', 'bar');
expect(serialize(doc)).to.eql(
'<html><head></head><body></body></html><my-element foo="bar"></my-element>',
);
});
it('can overwrite an existing attribute', () => {
const doc = parse('');
const el = utils.createElement('my-element', { foo: 'bar' });
utils.appendChild(doc, el);
utils.setAttribute(el, 'foo', 'not-bar');
expect(serialize(doc)).to.eql(
'<html><head></head><body></body></html><my-element foo="not-bar"></my-element>',
);
});
});
describe('setAttributes()', () => {
it('can set multiple attributes on an element', () => {
const doc = parse('');
const el = utils.createElement('my-element');
utils.appendChild(doc, el);
utils.setAttributes(el, { foo: 'bar', lorem: 'ipsum', x: undefined });
expect(serialize(doc)).to.eql(
'<html><head></head><body></body></html><my-element foo="bar" lorem="ipsum"></my-element>',
);
});
});
describe('removeAttribute()', () => {
it('removes attribute from an element', () => {
const doc = parse('');
const el = utils.createElement('my-element', { foo: 'bar', x: 'y' });
utils.appendChild(doc, el);
utils.removeAttribute(el, 'x');
expect(serialize(doc)).to.eql(
'<html><head></head><body></body></html><my-element foo="bar"></my-element>',
);
});
});
describe('getTextContent()', () => {
it('returns the node text', () => {
const doc = parse('<html><body><div id="myDiv">Hello world</div></body></html>');
const myDiv = utils.findElement(doc, e => getAttribute(e, 'id') === 'myDiv');
if (!myDiv) throw new Error();
expect(getTextContent(myDiv)).to.equal('Hello world');
});
it('returns multiple nodes text', () => {
const doc = parse(
'<html><body><div id="myDiv">Top level<div>Before<div>A</div><div>B</div>After</div></div></body></html>',
);
const myDiv = utils.findElement(doc, e => getAttribute(e, 'id') === 'myDiv');
if (!myDiv) throw new Error();
expect(getTextContent(myDiv)).to.equal('Top levelBeforeABAfter');
});
});
describe('setTextContent()', () => {
it('sets the text of an element', () => {
const doc = parse('<html><body></body></html>');
const el = utils.createElement('script');
utils.setTextContent(el, 'foo bar');
utils.appendChild(doc, el);
expect(serialize(doc)).to.equal(
'<html><head></head><body></body></html><script>foo bar</script>',
);
});
});
describe('remove()', () => {
it('removes element from the AST', () => {
const doc = parse('<html><body><div id="myDiv"></div></body></html>');
const div = findElement(doc, e => utils.getAttribute(e, 'id') === 'myDiv');
if (!div) throw new Error('element not found');
utils.remove(div);
expect(serialize(doc)).to.equal('<html><head></head><body></body></html>');
});
});
describe('findElement()', () => {
it('returns a matching element', () => {
const doc = parse(`
<html>
<body>
<div foo="1"></div>
<div foo="2"></div>
<div foo="3"></div>
</body>
</html>
`);
const found = utils.findElement(doc, el => utils.getAttribute(el, 'foo') === '2');
if (!found) {
throw new Error('No element found.');
}
expect(utils.getAttribute(found, 'foo')).to.equal('2');
});
it('returns the first match', () => {
const doc = parse(`
<html>
<body>
<div index="1" foo="bar"></div>
<div index="2" foo="bar"></div>
<div index="3" foo="bar"></div>
</body>
</html>
`);
const found = utils.findElement(doc, el => utils.getAttribute(el, 'foo') === 'bar');
if (!found) {
throw new Error('No element found.');
}
expect(utils.getAttribute(found, 'foo')).to.equal('bar');
expect(utils.getAttribute(found, 'index')).to.equal('1');
});
it('returns nested elements', () => {
const doc = parse(`
<html>
<body>
<div>
<div>
<div id="foo">Hello world</div>
</div>
<div></div>
</div>
<div></div>
<div></div>
<div></div>
</body>
</html>
`);
const found = utils.findElement(doc, el => utils.getAttribute(el, 'id') === 'foo');
if (!found) {
throw new Error('No element found.');
}
expect(found).to.exist;
});
});
describe('findElements()', () => {
it('returns a single matched element', () => {
const doc = parse(`
<html>
<body>
<div foo="1"></div>
<div foo="2"></div>
<div foo="3"></div>
</body>
</html>
`);
const found = utils.findElements(doc, el => utils.getAttribute(el, 'foo') === '2');
expect(found.length).to.equal(1);
expect(utils.getAttribute(found[0], 'foo')).to.equal('2');
});
it('returns multiple matched elements', () => {
const doc = parse(`
<html>
<body>
<div index="1" foo="bar"></div>
<div index="2" foo="bar"></div>
<div index="3" foo="bar"></div>
</body>
</html>
`);
const found = utils.findElements(doc, el => utils.getAttribute(el, 'foo') === 'bar');
expect(found.length).to.equal(3);
const indices = found.map(f => utils.getAttribute(f, 'index'));
expect(indices).to.eql(['1', '2', '3']);
});
it('returns an empty array when there are no matches', () => {
const doc = parse(`
<html>
<body>
<div foo="1"></div>
<div foo="2"></div>
<div foo="3"></div>
</body>
</html>
`);
const found = utils.findElements(doc, el => utils.hasAttribute(el, 'non-existing'));
expect(found.length).to.equal(0);
});
it('returns child elements within template elements', () => {
const doc = parse(`
<html>
<body>
<template>
<img src="foo.png" />
</template>
</body>
</html>
`);
const found = utils.findElements(doc, el => utils.hasAttribute(el, 'src'));
expect(found.length).to.equal(1);
});
});
describe('prependToDocument', () => {
it('injects a HTML snippet to the document', () => {
const document = '<html><head></head><body></body></html>';
const result = utils.prependToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal('<html><head><div>Hello world</div></head><body></body></html>');
});
it('injects before other elements', () => {
const document =
'<html><head><div>A</div><div>B</div></head><body><div>C</div></body></html>';
const result = utils.prependToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal(
'<html><head><div>Hello world</div><div>A</div><div>B</div></head><body><div>C</div></body></html>',
);
});
it('injects into body if there is no head', () => {
const document = '<html><body><div>A</div></body></html>';
const result = utils.prependToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal('<html><body><div>Hello world</div><div>A</div></body></html>');
});
it('uses AST manipulation if there is no head or body', () => {
const document = '<html></html>';
const result = utils.prependToDocument(document, '<div>A</div><div>B</div>');
expect(result).to.equal('<html><head><div>A</div><div>B</div></head><body></body></html>');
});
});
describe('appendToDocument', () => {
it('injects a HTML snippet to the document', () => {
const document = '<html><head></head><body></body></html>';
const result = utils.appendToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal('<html><head></head><body><div>Hello world</div></body></html>');
});
it('injects after other elements', () => {
const document =
'<html><head><script>A</script></head><body><script>B</script><script>C</script></body></html>';
const result = utils.appendToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal(
'<html><head><script>A</script></head><body><script>B</script><script>C</script><div>Hello world</div></body></html>',
);
});
it('injects into head if there is no body', () => {
const document = '<html><head><script>A</script></head></html>';
const result = utils.appendToDocument(document, '<div>Hello world</div>');
if (!result) throw new Error();
expect(result).to.equal('<html><head><script>A</script><div>Hello world</div></head></html>');
});
it('returns null if there is no head or body', () => {
const document = '<html></html>';
const result = utils.appendToDocument(document, '<div>A</div><div>B</div>');
expect(result).to.equal('<html><head></head><body><div>A</div><div>B</div></body></html>');
});
});
});
| modernweb-dev/web/packages/parse5-utils/test/index.test.js/0 | {
"file_path": "modernweb-dev/web/packages/parse5-utils/test/index.test.js",
"repo_id": "modernweb-dev",
"token_count": 5602
} | 198 |
console.log('polyfill b');
| modernweb-dev/web/packages/polyfills-loader/test/custom-polyfills/polyfill-b.js/0 | {
"file_path": "modernweb-dev/web/packages/polyfills-loader/test/custom-polyfills/polyfill-b.js",
"repo_id": "modernweb-dev",
"token_count": 9
} | 199 |
{
"name": "@web/rollup-plugin-copy",
"version": "0.5.1",
"publishConfig": {
"access": "public"
},
"description": "Rollup plugin which copies asset files while retaining the relative folder structure.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/rollup-plugin-copy"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/rollup-plugin-copy",
"bugs": {
"url": "https://github.com/modernweb-dev/web/issues"
},
"main": "src/copy.js",
"module": "index.mjs",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./src/copy.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test:node": "mocha test/**/*.test.js --reporter dot",
"test:watch": "mocha test/**/*.test.js --watch --watch-files src,test --reporter dot"
},
"files": [
"*.d.ts",
"*.js",
"*.mjs",
"dist",
"src"
],
"keywords": [
"rollup",
"plugin",
"copy"
],
"dependencies": {
"glob": "^10.0.0"
},
"devDependencies": {
"@types/glob": "^8.1.0"
},
"types": "dist/copy.d.ts"
}
| modernweb-dev/web/packages/rollup-plugin-copy/package.json/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-copy/package.json",
"repo_id": "modernweb-dev",
"token_count": 558
} | 200 |
# @web/rollup-plugin-html
## 2.3.0
### Minor Changes
- 6207e413: glob patterns exclusion for external assets
## 2.2.1
### Patch Changes
- a1f09793: fix: output assets locations
## 2.2.0
### Minor Changes
- c3dc21aa: feat(rollup-plugin-html): resolves assets in styles
## 2.1.2
### Patch Changes
- 1c0088de: Update Rollup to version 4.
## 2.1.1
### Patch Changes
- b6d8bcf2: Update the `glob` dependency
## 2.1.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/parse5-utils@2.1.0
## 2.0.1
### Patch Changes
- f6ba53f0: Export types with package
## 2.0.0
### Major 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 [febd9d9d]
- @web/parse5-utils@2.0.0
## 1.11.1
### Patch Changes
- 18a16bb0: Update `html-minifier-terser`
- Updated dependencies [18a16bb0]
- @web/parse5-utils@1.3.1
## 1.11.0
### Minor Changes
- ab5295e9: Detect `<source src="*">` tags as assets which means videos get copied and hashed.
```html
<video controls>
<source src="./my-video.mp4" type="video/mp4" />
</video>
```
## 1.10.3
### Patch Changes
- e9508a24: fix: support node 17 & 18 by using md5 hashing
## 1.10.2
### Patch Changes
- d1c2ff91: fix(rollup-plugin-html): dont pass index.html to rollup input
## 1.10.1
### Patch Changes
- 516ecd3f: Fix html-minimier-terser call to use await
## 1.10.0
### Minor Changes
- b57f36de: Update dependency html-minifier-terser to 6.0.0
## 1.9.1
### Patch Changes
- ca749b0e: Update dependency @types/parse5 to v6
- Updated dependencies [ca749b0e]
- @web/parse5-utils@1.3.0
## 1.9.0
### Minor Changes
- 075afcf9: Add `exclude` option. Used e.g. to ignore html file assets when bundling.
## 1.8.0
### Minor Changes
- 7c4dd6cd: Support `picture` tags by handling `source` tags with `srcset` attributes.
Example of supported html
```html
<picture>
<source type="image/avif" srcset="small.avif 30w, big.avif 60w" sizes="30px" />
<source type="image/jpeg" srcset="small.jpeg 30w, big.jpeg 60w" sizes="30px" />
<img alt="..." src="small.jpeg" width="30" height="15" loading="lazy" decoding="async" />
</picture>
```
## 1.7.0
### Minor Changes
- be919633: add minify option
### Patch Changes
- e331e429: fix(rollup-plugin-html): fix linked assets not being prefixed with configured publicPath. See https://github.com/modernweb-dev/web/issues/1302
## 1.6.0
### Minor Changes
- 7d0e28c2: Preserve attributes on html script tags.
Input:
```html
<script type="module" src="..." some="attribute">
```
Output before:
```html
<script type="module" src="...">
```
Output now:
```html
<script type="module" src="..." some="attribute">
```
## 1.5.0
### Minor Changes
- 5688eb5b: Add option to scan for inline scripts in HTML assets, and insert a CSP meta tag to allow them executing with strict CSP rules.
### Patch Changes
- Updated dependencies [a07f4aef]
- @web/parse5-utils@1.2.2
## 1.4.0
### Minor Changes
- 58d78c33: Add option `absolutePathPrefix` to support subfolders deployments if absolute urls are used
## 1.3.3
### Patch Changes
- 1f4a2ab3: Adds an `injectServiceWorker` and `serviceWorkerPath` option which if provided will inject a service worker registration script into html files.
## 1.3.2
### Patch Changes
- 05dd36f: fix entryoint for node v10
## 1.3.1
### Patch Changes
- 53ba8db: ignore scripts with absolute paths
## 1.3.0
### Minor Changes
- ac2e832: Allow for an `absoluteBaseUrl` setting which will convert absolute URLs to full absolute URLs for the following tags.
```html
<!-- FROM -->
<meta property="og:image" content="./images/image-social.png" />
<link rel="canonical" href="/guides/" />
<meta property="og:url" content="/guides/" />
<!-- TO -->
<meta property="og:image" content="https://domain.com/assets/image-social-xxx.png" />
<link rel="canonical" href="https://domain.com/guides/" />
<meta property="og:url" content="https://domain.com/guides/" />
```
### Patch Changes
- de5d396: Identify `<meta property="og:image"` as an asset
## 1.2.1
### Patch Changes
- cfdeb98: - do not touch `<script>` tags with inline content/code
- treat `<script src="...">` tags as assets
## 1.2.0
### Minor Changes
- 23fadf2: allow disabling default inject behavior
### Patch Changes
- Updated dependencies [a7c9af6]
- @web/parse5-utils@1.1.2
## 1.1.1
### Patch Changes
- d804089: don't hash social media and browser assets
- 717c415: Prevent remote URLs from counting as assets
- 9e18d84: write asset paths relative to HTML file
## 1.1.0
### Minor Changes
- 50ba2d6: watch referenced assets
## 1.0.2
### Patch Changes
- d130352: bundle referenced HTML assets
## 1.0.1
### Patch Changes
- 12da341: remove prepublish script
## 1.0.0
### Major Changes
- 3121966: First release
### Patch Changes
- Updated dependencies [3121966]
- @web/parse5-utils@1.1.0
| modernweb-dev/web/packages/rollup-plugin-html/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 1851
} | 201 |
console.log('my-app.js');
setTimeout(() => import('./lazy-1.js'), 100);
setTimeout(() => import('./lazy-2.js'), 1000);
| modernweb-dev/web/packages/rollup-plugin-html/demo/spa/src/my-app.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/demo/spa/src/my-app.js",
"repo_id": "modernweb-dev",
"token_count": 50
} | 202 |
import { PluginContext } from 'rollup';
import path from 'path';
import { transform } from 'lightningcss';
import fs from 'fs';
import { InputAsset, InputData } from '../input/InputData';
import { createAssetPicomatchMatcher } from '../assets/utils.js';
import { RollupPluginHTMLOptions, TransformAssetFunction } from '../RollupPluginHTMLOptions';
export interface EmittedAssets {
static: Map<string, string>;
hashed: Map<string, string>;
}
const allowedFileExtensions = [
/.*\.svg/,
/.*\.png/,
/.*\.jpg/,
/.*\.jpeg/,
/.*\.webp/,
/.*\.gif/,
/.*\.avif/,
/.*\.woff2/,
/.*\.woff/,
];
function shouldHandleAsset(url: string) {
return (
allowedFileExtensions.some(f => f.test(url)) &&
!url.startsWith('http') &&
!url.startsWith('data') &&
!url.startsWith('#') &&
!url.startsWith('/')
);
}
export async function emitAssets(
this: PluginContext,
inputs: InputData[],
options: RollupPluginHTMLOptions,
) {
const emittedStaticAssets = new Map<string, string>();
const emittedHashedAssets = new Map<string, string>();
const emittedStaticAssetNames = new Set();
const transforms: TransformAssetFunction[] = [];
if (options.transformAsset) {
if (Array.isArray(options.transformAsset)) {
transforms.push(...options.transformAsset);
} else {
transforms.push(options.transformAsset);
}
}
const staticAssets: InputAsset[] = [];
const hashedAssets: InputAsset[] = [];
for (const input of inputs) {
for (const asset of input.assets) {
if (asset.hashed) {
hashedAssets.push(asset);
} else {
staticAssets.push(asset);
}
}
}
// ensure static assets are last because of https://github.com/rollup/rollup/issues/3853
const allAssets = [...hashedAssets, ...staticAssets];
for (const asset of allAssets) {
const map = asset.hashed ? emittedHashedAssets : emittedStaticAssets;
if (!map.has(asset.filePath)) {
let source: Buffer = asset.content;
// run user's transform functions
for (const transform of transforms) {
const result = await transform(asset.content, asset.filePath);
if (result != null) {
source = typeof result === 'string' ? Buffer.from(result, 'utf-8') : result;
}
}
let ref: string;
let basename = path.basename(asset.filePath);
const isExternal = createAssetPicomatchMatcher(options.externalAssets);
const emittedExternalAssets = new Map();
if (asset.hashed) {
if (basename.endsWith('.css') && options.bundleAssetsFromCss) {
let updatedCssSource = false;
const { code } = await transform({
filename: basename,
code: asset.content,
minify: false,
visitor: {
Url: url => {
// Support foo.svg#bar
// https://www.w3.org/TR/html4/types.html#:~:text=ID%20and%20NAME%20tokens%20must,tokens%20defined%20by%20other%20attributes.
const [filePath, idRef] = url.url.split('#');
if (shouldHandleAsset(filePath) && !isExternal(filePath)) {
// Read the asset file, get the asset from the source location on the FS using asset.filePath
const assetLocation = path.resolve(path.dirname(asset.filePath), filePath);
const assetContent = fs.readFileSync(assetLocation);
// Avoid duplicates
if (!emittedExternalAssets.has(assetLocation)) {
const fontFileRef = this.emitFile({
type: 'asset',
name: path.join('assets', path.basename(filePath)),
source: assetContent,
});
const emittedAssetFilePath = path.basename(this.getFileName(fontFileRef));
emittedExternalAssets.set(assetLocation, emittedAssetFilePath);
// Update the URL in the original CSS file to point to the emitted asset file
url.url = `assets/${
idRef ? `${emittedAssetFilePath}#${idRef}` : emittedAssetFilePath
}`;
} else {
const emittedAssetFilePath = emittedExternalAssets.get(assetLocation);
url.url = `assets/${
idRef ? `${emittedAssetFilePath}#${idRef}` : emittedAssetFilePath
}`;
}
}
updatedCssSource = true;
return url;
},
},
});
if (updatedCssSource) {
source = Buffer.from(code);
}
}
ref = this.emitFile({ type: 'asset', name: basename, source });
} else {
// ensure the output filename is unique
let i = 1;
while (emittedStaticAssetNames.has(basename)) {
const ext = path.extname(basename);
basename = `${basename.replace(ext, '')}${i}${ext}`;
i += 1;
}
emittedStaticAssetNames.add(basename);
const fileName = `assets/${basename}`;
ref = this.emitFile({ type: 'asset', name: basename, fileName, source });
}
map.set(asset.filePath, this.getFileName(ref));
}
}
return { static: emittedStaticAssets, hashed: emittedHashedAssets };
}
| modernweb-dev/web/packages/rollup-plugin-html/src/output/emitAssets.ts/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/src/output/emitAssets.ts",
"repo_id": "modernweb-dev",
"token_count": 2370
} | 203 |
<svg xmlns="http://www.w3.org/2000/svg"><path d="M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627"></path></svg>
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/assets/image-a.svg/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/assets/image-a.svg",
"repo_id": "modernweb-dev",
"token_count": 59
} | 204 |
{ "message": "hello world" }
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/assets/webmanifest.json/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/assets/webmanifest.json",
"repo_id": "modernweb-dev",
"token_count": 10
} | 205 |
<html>
<body>
<p>inject a service worker into /sub-page/index.html</p>
<script type="module" src="./sub-js.js"></script>
</body>
</html>
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/inject-service-worker/sub-with-js/index.html/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/inject-service-worker/sub-with-js/index.html",
"repo_id": "modernweb-dev",
"token_count": 64
} | 206 |
import './shared-module.js';
console.log('module-b.js');
| modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/modules/module-b.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/fixtures/rollup-plugin-html/modules/module-b.js",
"repo_id": "modernweb-dev",
"token_count": 22
} | 207 |
import { expect } from 'chai';
import path from 'path';
import { getInputData } from '../../../src/input/getInputData.js';
import { InputData } from '../../../src/input/InputData.js';
const rootDir = path.join(__dirname, '..', '..', 'fixtures', 'basic');
function cleanupHtml(str: string) {
return str.replace(/(\r\n|\n|\r| )/gm, '');
}
function cleanupResult(result: InputData[]) {
return result.map(item => ({
...item,
inlineModules: Array.from(item.inlineModules.entries()),
html: cleanupHtml(item.html),
}));
}
describe('getInputData()', () => {
it('supports setting input as string', () => {
const result = getInputData({ input: 'index.html', rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('supports setting input as object', () => {
const result = getInputData({ input: { path: 'index.html' }, rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('supports changing file name', () => {
const result = getInputData({ input: { path: 'index.html', name: 'foo.html' }, rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'foo.html',
},
]);
});
it('supports setting multiple inputs', () => {
const result = getInputData({
input: [{ path: 'index.html' }, { path: 'not-index.html' }],
rootDir,
});
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
{
filePath: path.join(rootDir, 'not-index.html'),
html: '<html><head></head><body><p>not-index.html</p></body></html>',
inlineModules: [],
moduleImports: [],
assets: [],
name: 'not-index.html',
},
]);
});
it('resolves modules relative to HTML file', () => {
const result = getInputData({ input: 'src/index.html', rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'src/index.html'),
html: '<html><head></head><body><p>Foo</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'src', 'foo.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('supports setting input as rollup input string', () => {
const result = getInputData({ rootDir }, 'index.html');
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('supports setting input as rollup input array', () => {
const result = getInputData({ rootDir }, ['index.html']);
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('supports setting input as rollup input array', () => {
const result = getInputData({ rootDir }, ['index.html', 'not-index.html']);
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
{
filePath: path.join(rootDir, 'not-index.html'),
html: '<html><head></head><body><p>not-index.html</p></body></html>',
inlineModules: [],
moduleImports: [],
assets: [],
name: 'not-index.html',
},
]);
});
it('supports setting input as rollup input object', () => {
const result = getInputData(
{ rootDir },
{ 'a.html': 'index.html', 'b.html': 'not-index.html' },
);
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'a.html',
},
{
filePath: path.join(rootDir, 'not-index.html'),
html: '<html><head></head><body><p>not-index.html</p></body></html>',
inlineModules: [],
moduleImports: [],
assets: [],
name: 'b.html',
},
]);
});
it('plugin input takes presedence over rollup input', () => {
const result = getInputData({ input: 'index.html', rootDir }, 'not-index.html');
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'index.html'),
html: '<html><head></head><body><p>Helloworld</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('can set html string as input', () => {
const html = `
<html>
<body>
<p>HTML as string</p>
<script type="module" src="./app.js"></script>
</body>
</html>
`;
const result = getInputData({ input: { html }, rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: undefined,
html: '<html><head></head><body><p>HTMLasstring</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: 'index.html',
},
]);
});
it('can set multiple html strings as input', () => {
const html1 = `
<html>
<body>
<p>HTML1</p>
<script type="module" src="./app.js"></script>
</body>
</html>
`;
const html2 = `
<html>
<body>
<p>HTML2</p>
</body>
</html>
`;
const result = getInputData({
input: [
{ html: html1, name: '1.html' },
{ html: html2, name: '2.html' },
],
rootDir,
});
expect(cleanupResult(result)).to.eql([
{
filePath: undefined,
html: '<html><head></head><body><p>HTML1</p></body></html>',
inlineModules: [],
moduleImports: [{ importPath: path.join(rootDir, 'app.js'), attributes: [] }],
assets: [],
name: '1.html',
},
{
filePath: undefined,
html: '<html><head></head><body><p>HTML2</p></body></html>',
inlineModules: [],
moduleImports: [],
assets: [],
name: '2.html',
},
]);
});
it('supports setting input to a glob', () => {
const result = getInputData({ input: 'pages/**/*.html', rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'pages', 'page-c.html'),
html: '<html><head></head><body><p>page-c.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-c.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: 'page-c.html',
},
{
filePath: path.join(rootDir, 'pages', 'page-b.html'),
html: '<html><head></head><body><p>page-b.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-b.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: 'page-b.html',
},
{
filePath: path.join(rootDir, 'pages', 'page-a.html'),
html: '<html><head></head><body><p>page-a.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-a.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: 'page-a.html',
},
]);
});
it('supports not flattening output directories', () => {
const result = getInputData({ input: 'pages/**/*.html', flattenOutput: false, rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: path.join(rootDir, 'pages', 'page-c.html'),
html: '<html><head></head><body><p>page-c.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-c.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: `pages${path.sep}page-c.html`,
},
{
filePath: path.join(rootDir, 'pages', 'page-b.html'),
html: '<html><head></head><body><p>page-b.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-b.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: `pages${path.sep}page-b.html`,
},
{
filePath: path.join(rootDir, 'pages', 'page-a.html'),
html: '<html><head></head><body><p>page-a.html</p></body></html>',
inlineModules: [],
moduleImports: [
{ importPath: path.join(rootDir, 'pages', 'page-a.js'), attributes: [] },
{ importPath: path.join(rootDir, 'pages', 'shared.js'), attributes: [] },
],
assets: [],
name: `pages${path.sep}page-a.html`,
},
]);
});
it('supports pure HTML files', () => {
const html = `
<html>
<body>
<p>pure HTML</p>
</body>
</html>
`;
const result = getInputData({ input: { html }, rootDir });
expect(cleanupResult(result)).to.eql([
{
filePath: undefined,
html: '<html><head></head><body><p>pureHTML</p></body></html>',
inlineModules: [],
moduleImports: [],
assets: [],
name: 'index.html',
},
]);
});
it('throws when no files or html is given', () => {
expect(() => getInputData({ rootDir })).to.throw();
});
});
| modernweb-dev/web/packages/rollup-plugin-html/test/src/input/InputData.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-html/test/src/input/InputData.test.ts",
"repo_id": "modernweb-dev",
"token_count": 5305
} | 208 |
export const nameThree = 'three-name';
export const imageThree = new URL('../../../three.svg', import.meta.url).href;
| modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/fixtures/one/two/three/three.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/fixtures/one/two/three/three.js",
"repo_id": "modernweb-dev",
"token_count": 36
} | 209 |
const nameOne = 'one-name';
const imageOne = new URL(new URL('assets/one-ZInu4dBJ.svg', import.meta.url).href, import.meta.url).href;
const nameTwo = 'two-name';
const imageTwo = new URL(new URL('assets/two--yckvrYd.svg', import.meta.url).href, import.meta.url).href;
const nameThree = 'three-name';
const imageThree = new URL(new URL('assets/three-CDdgprDC.svg', import.meta.url).href, import.meta.url).href;
const nameFour = 'four-name';
const imageFour = new URL(new URL('assets/four-lJVunLww.svg', import.meta.url).href, import.meta.url).href;
console.log({
[nameOne]: imageOne,
[nameTwo]: imageTwo,
[nameThree]: imageThree,
[nameFour]: imageFour,
});
| modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/snapshots/multi-level-bundle.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-import-meta-assets/test/snapshots/multi-level-bundle.js",
"repo_id": "modernweb-dev",
"token_count": 248
} | 210 |
console.log('hello workbox');
| modernweb-dev/web/packages/rollup-plugin-workbox/demo/main.js/0 | {
"file_path": "modernweb-dev/web/packages/rollup-plugin-workbox/demo/main.js",
"repo_id": "modernweb-dev",
"token_count": 9
} | 211 |
import { normalizeStories } from '@storybook/core-common';
import type { CoreConfig, Options } from '@storybook/types';
import { readFile } from 'fs-extra';
import { virtualAppFilename } from './virtual-file-names.js';
export type PreviewHtml = string | undefined;
export async function generateIframeHtml(options: Options): Promise<string> {
const iframeHtmlTemplate = await readFile(
require.resolve('../static/iframe-template.html'),
'utf-8',
);
const { configType, features, presets, serverChannelUrl } = options;
const frameworkOptions = await presets.apply<Record<string, any> | null>('frameworkOptions');
const headHtmlSnippet = await presets.apply<PreviewHtml>('previewHead');
const bodyHtmlSnippet = await presets.apply<PreviewHtml>('previewBody');
const logLevel = await presets.apply('logLevel', undefined);
// const docsOptions = await presets.apply<DocsOptions>('docs');
const coreOptions = await presets.apply<CoreConfig>('core');
const stories = normalizeStories(await options.presets.apply('stories', [], options), {
configDir: options.configDir,
workingDir: process.cwd(),
}).map(specifier => ({
...specifier,
importPathMatcher: specifier.importPathMatcher.source,
}));
return (
iframeHtmlTemplate
.replace('[CONFIG_TYPE HERE]', configType || '')
.replace('[LOGLEVEL HERE]', logLevel || '')
.replace(`'[FRAMEWORK_OPTIONS HERE]'`, JSON.stringify(frameworkOptions))
.replace(
`'[CHANNEL_OPTIONS HERE]'`,
JSON.stringify(coreOptions && coreOptions.channelOptions ? coreOptions.channelOptions : {}),
)
.replace(`'[FEATURES HERE]'`, JSON.stringify(features || {}))
.replace(`'[STORIES HERE]'`, JSON.stringify(stories || {}))
// .replace(`'[DOCS_OPTIONS HERE]'`, JSON.stringify(docsOptions || {}))
.replace(`'[SERVER_CHANNEL_URL HERE]'`, JSON.stringify(serverChannelUrl))
.replace('<!-- [HEAD HTML SNIPPET HERE] -->', headHtmlSnippet || '')
.replace('<!-- [BODY HTML SNIPPET HERE] -->', bodyHtmlSnippet || '')
.replace(`[APP MODULE SRC HERE]`, virtualAppFilename)
);
}
| modernweb-dev/web/packages/storybook-builder/src/generate-iframe-html.ts/0 | {
"file_path": "modernweb-dev/web/packages/storybook-builder/src/generate-iframe-html.ts",
"repo_id": "modernweb-dev",
"token_count": 732
} | 212 |
export class Preview {
/**
* @param {import('@playwright/test').Page} page
*/
constructor(page) {
this.page = page;
}
previewIframe() {
return this.page.frameLocator('#storybook-preview-iframe');
}
storyParent() {
return this.previewIframe().locator('#storybook-root > #root-inner');
}
}
| modernweb-dev/web/packages/storybook-framework-web-components/tests/preview.js/0 | {
"file_path": "modernweb-dev/web/packages/storybook-framework-web-components/tests/preview.js",
"repo_id": "modernweb-dev",
"token_count": 119
} | 213 |
export { browserstackLauncher } from './browserstackLauncher.js';
| modernweb-dev/web/packages/test-runner-browserstack/src/index.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-browserstack/src/index.ts",
"repo_id": "modernweb-dev",
"token_count": 18
} | 214 |
import { TestRunnerPlugin } from '@web/test-runner-core';
import type { ChromeLauncher, puppeteerCore } from '@web/test-runner-chrome';
import type { PlaywrightLauncher, playwright } from '@web/test-runner-playwright';
export type A11ySnapshotPayload = { selector?: string };
export function a11ySnapshotPlugin(): TestRunnerPlugin<A11ySnapshotPayload> {
return {
name: 'a11y-snapshot-command',
async executeCommand({ command, payload, session }): Promise<any> {
if (command === 'a11y-snapshot') {
// handle specific behavior for playwright
if (session.browser.type === 'playwright') {
const page = (session.browser as PlaywrightLauncher).getPage(session.id);
const options: {
root?: playwright.ElementHandle;
} = {};
if (payload && payload.selector) {
const root = await page.$(payload.selector);
if (root) {
options.root = root;
}
}
const snapshot = await page.accessibility.snapshot(options);
return snapshot;
}
// handle specific behavior for puppeteer
if (session.browser.type === 'puppeteer') {
const page = (session.browser as ChromeLauncher).getPage(session.id);
const options: {
root?: puppeteerCore.ElementHandle;
} = {};
if (payload && payload.selector) {
// @ts-ignore
const root = await page.$(payload.selector);
if (root) {
options.root = root;
}
}
// @ts-ignore
const snapshot = await page.accessibility.snapshot(options);
return snapshot;
}
// you might not be able to support all browser launchers
throw new Error(
`Acessibility snapshot is not supported for browser type ${session.browser.type}.`,
);
}
},
};
}
| modernweb-dev/web/packages/test-runner-commands/src/a11ySnapshotPlugin.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/src/a11ySnapshotPlugin.ts",
"repo_id": "modernweb-dev",
"token_count": 822
} | 215 |
import { emulateMedia } from '../../browser/commands.mjs';
import { expect } from '../chai.js';
it('can emulate reduced motion', async () => {
await emulateMedia({ reducedMotion: 'reduce' });
expect(matchMedia('(prefers-reduced-motion: reduce)').matches).to.be.true;
await emulateMedia({ reducedMotion: 'no-preference' });
expect(matchMedia('(prefers-reduced-motion: no-preference)').matches).to.be.true;
});
| modernweb-dev/web/packages/test-runner-commands/test/emulate-media/prefers-reduced-motion-test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/test/emulate-media/prefers-reduced-motion-test.js",
"repo_id": "modernweb-dev",
"token_count": 137
} | 216 |
import { setViewport } from '../../browser/commands.mjs';
import { expect } from '../chai.js';
it('can resize to a small viewport', async () => {
await setViewport({ height: 200, width: 100 });
expect(window.innerHeight).to.equal(200);
expect(window.innerWidth).to.equal(100);
});
it('can resize to a medium viewport', async () => {
await setViewport({ height: 400, width: 200 });
expect(window.innerHeight).to.equal(400);
expect(window.innerWidth).to.equal(200);
});
it('can resize to a large viewport', async () => {
await setViewport({ height: 1600, width: 1400 });
expect(window.innerHeight).to.equal(1600);
expect(window.innerWidth).to.equal(1400);
});
| modernweb-dev/web/packages/test-runner-commands/test/set-viewport/browser-test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-commands/test/set-viewport/browser-test.js",
"repo_id": "modernweb-dev",
"token_count": 222
} | 217 |
import { CoverageMapData } from 'istanbul-lib-coverage';
import { TestRunnerCoreConfig } from '../config/TestRunnerCoreConfig';
import { TestResultError } from '../test-session/TestSession';
export interface SessionResult {
testCoverage?: CoverageMapData;
errors?: TestResultError[];
browserLogs?: any[][];
}
export interface BrowserLauncher {
/**
* A human friendly name to identify this browser. Doesn't need to be unique.
*/
name: string;
/**
* A unique identifier for the type of browser launcher.
*/
type: string;
/**
* Optional concurrency for this browser launcher only. Overwrites a globally
* configured concurrency option.
*/
concurrency?: number;
__experimentalWindowFocus__?: boolean;
/**
* One time startup for the browser launcher. Called when the test runner
* starts. Use this for async initialization work.
* @param config
*/
initialize?(config: TestRunnerCoreConfig, testFiles: string[]): void | Promise<void>;
/**
* Called after running tests when not in watch mode. Called when the test runner
* shuts down when in watch mode.
*/
stop?(): Promise<void>;
/**
* Start a single test sessions in a single browser page or tab. This should
* open the browser for the given URL.
*
* This function can be called multiple times in parallel, implementations which cannot
* handle opening browser pages in parallel should set up a queuing system.
* @param session
*/
startSession(sessionId: string, url: string): Promise<void>;
/**
* Returns whether this session is currently active. If it is active, stopSession
* can be called.
* @param session
*/
isActive(sessionId: string): boolean;
/**
* Returns the current browser URL for the test session. This is used for example to
* detect browser navigations.
*/
getBrowserUrl(sessionId: string): string | undefined | Promise<string | undefined>;
/**
* Stops a single test session. There is no mandatory action to be taken here.
* Implementations can use this for example to recycle inactive tabs instead of
* creating new ones.
* @param session
*/
stopSession(sessionId: string): Promise<SessionResult>;
/**
* Starts a debug session. This should start a session like startSession, but
* without headless. If the implementation does not support debugging,
* it can throw an error.
* @param session
*/
startDebugSession(sessionId: string, url: string): Promise<void>;
}
| modernweb-dev/web/packages/test-runner-core/src/browser-launcher/BrowserLauncher.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/browser-launcher/BrowserLauncher.ts",
"repo_id": "modernweb-dev",
"token_count": 697
} | 218 |
import { createSessionUrl } from './createSessionUrl.js';
import { TestRunnerCoreConfig } from '../config/TestRunnerCoreConfig.js';
import { TestSessionManager } from '../test-session/TestSessionManager.js';
import { TestSession, TestResultError } from '../test-session/TestSession.js';
import { SESSION_STATUS } from '../test-session/TestSessionStatus.js';
import { withTimeout } from '../utils/async.js';
import { TestSessionTimeoutHandler } from './TestSessionTimeoutHandler.js';
import { BrowserLauncher } from '../browser-launcher/BrowserLauncher.js';
export class TestScheduler {
private config: TestRunnerCoreConfig;
private sessions: TestSessionManager;
private timeoutHandler: TestSessionTimeoutHandler;
private browsers: BrowserLauncher[];
private finishedBrowsers = new Set<BrowserLauncher>();
private stopPromises = new Set<Promise<unknown>>();
private browserStartTimeoutMsg: string;
constructor(
config: TestRunnerCoreConfig,
sessions: TestSessionManager,
browsers: BrowserLauncher[],
) {
this.config = config;
this.sessions = sessions;
this.browsers = [...browsers].sort(
(a, b) => (a.__experimentalWindowFocus__ ? 1 : 0) - (b.__experimentalWindowFocus__ ? 1 : 0),
);
this.timeoutHandler = new TestSessionTimeoutHandler(this.config, this.sessions, this);
this.browserStartTimeoutMsg =
`The browser was unable to create and start a test page after ${this.config.browserStartTimeout}ms. ` +
'You can increase this timeout with the browserStartTimeout option.';
sessions.on('session-status-updated', async session => {
if (session.status === SESSION_STATUS.TEST_STARTED) {
this.timeoutHandler.waitForTestsFinished(session.testRun, session.id);
return;
}
if (session.status === SESSION_STATUS.TEST_FINISHED) {
// the session finished executing tests, close the browser page
await this.stopSession(session);
return;
}
if (session.status === SESSION_STATUS.FINISHED) {
this.timeoutHandler.clearTimeoutsForSession(session);
setTimeout(() => {
// run next scheduled after a timeout, so that other actors on status change can
// do their work first
this.runNextScheduled();
});
}
});
}
/**
* Schedules a session for execution. Execution is batched, the session
* will be queued until there is a browser page available.
*/
schedule(testRun: number, sessionsToSchedule: Iterable<TestSession>) {
for (const session of sessionsToSchedule) {
this.sessions.updateStatus(
{ ...session, testRun, request404s: [] },
SESSION_STATUS.SCHEDULED,
);
}
this.runNextScheduled();
}
stop(): Promise<unknown> {
this.timeoutHandler.clearAllTimeouts();
return Promise.all(Array.from(this.stopPromises));
}
/** Runs the next batch of scheduled sessions, if any. */
private runNextScheduled() {
let runningBrowsers = 0;
for (const browser of this.browsers) {
if (runningBrowsers >= 1 && browser.__experimentalWindowFocus__) {
return;
}
if (runningBrowsers >= this.config.concurrentBrowsers) {
// do not boot up more than the allowed concurrent browsers
return;
}
const unfinishedCount = this.getUnfinishedSessions(browser).length;
if (unfinishedCount > 0) {
// this browser has not finished running all tests
runningBrowsers += 1;
const runningCount = this.getRunningSessions(browser).length;
let maxBudget;
if (browser.__experimentalWindowFocus__) {
maxBudget = 1;
} else {
maxBudget = browser.concurrency ?? this.config.concurrency;
}
const runBudget = Math.max(0, maxBudget - runningCount);
if (runBudget !== 0) {
// we have budget to schedule new sessions for this browser
const allScheduled = this.getScheduledSessions(browser);
const toRun = allScheduled.slice(0, runBudget);
for (const session of toRun) {
this.startSession(session);
}
}
}
}
}
private async startSession(session: TestSession) {
const updatedSession = { ...session, status: SESSION_STATUS.INITIALIZING };
this.sessions.updateStatus(updatedSession, SESSION_STATUS.INITIALIZING);
let browserStarted = false;
// browser should be started within the specified milliseconds
const timeoutId = setTimeout(() => {
if (!browserStarted && !this.timeoutHandler.isStale(updatedSession)) {
this.setSessionFailed(this.sessions.get(updatedSession.id)!, {
message: this.browserStartTimeoutMsg,
});
}
}, this.config.browserStartTimeout!);
this.timeoutHandler.addTimeoutId(updatedSession.id, timeoutId);
try {
await withTimeout(
updatedSession.browser.startSession(
updatedSession.id,
createSessionUrl(this.config, updatedSession),
),
this.browserStartTimeoutMsg,
this.config.browserStartTimeout,
);
// when the browser started, wait for session to ping back on time
this.timeoutHandler.waitForTestsStarted(updatedSession.testRun, updatedSession.id);
} catch (e) {
const error = e as Error;
if (this.timeoutHandler.isStale(updatedSession)) {
// something else has changed the test session, such as a the browser timeout
// or a re-run in watch mode. in that was we just log the error
if (error.message !== this.browserStartTimeoutMsg) {
this.config.logger.error(error);
}
} else {
this.setSessionFailed(updatedSession, { message: error.message, stack: error.stack });
}
} finally {
browserStarted = true;
}
}
private setSessionFailed(session: TestSession, ...errors: TestResultError[]) {
this.stopSession(session, errors);
}
async stopSession(session: TestSession, errors: TestResultError[] = []) {
if (this.timeoutHandler.isStale(session)) {
return;
}
const sessionErrors = [...errors];
const updatedSession = { ...session };
try {
if (session.browser.isActive(session.id)) {
const { testCoverage, errors } = await withTimeout(
session.browser.stopSession(session.id),
'Timed out stopping the browser page',
this.config.testsFinishTimeout,
);
updatedSession.errors = [...(updatedSession.errors ?? []), ...(errors ?? [])];
updatedSession.testCoverage = testCoverage;
}
} catch (error) {
sessionErrors.push(error as Error);
} finally {
if (sessionErrors.length > 0) {
// merge with existing erors
updatedSession.errors = [...(updatedSession.errors ?? []), ...sessionErrors];
updatedSession.passed = false;
}
this.sessions.updateStatus(updatedSession, SESSION_STATUS.FINISHED);
const remaining = this.getUnfinishedSessions(session.browser);
if (
!this.config.watch &&
!this.finishedBrowsers.has(session.browser) &&
remaining.length === 0
) {
if (session.browser.stop) {
this.finishedBrowsers.add(session.browser);
const stopPromise = session.browser
.stop()
.catch(error => {
console.error(error);
})
.then(() => {
this.stopPromises.delete(stopPromise);
});
this.stopPromises.add(stopPromise);
}
}
}
}
private getScheduledSessions(browser: BrowserLauncher) {
return Array.from(
this.sessions.filtered(s => s.browser === browser && s.status === SESSION_STATUS.SCHEDULED),
);
}
private getRunningSessions(browser: BrowserLauncher) {
return Array.from(
this.sessions.filtered(
s =>
s.browser === browser &&
[
SESSION_STATUS.INITIALIZING,
SESSION_STATUS.TEST_STARTED,
SESSION_STATUS.TEST_FINISHED,
].includes(s.status),
),
);
}
private getUnfinishedSessions(browser: BrowserLauncher) {
return Array.from(
this.sessions.filtered(s => s.browser === browser && s.status !== SESSION_STATUS.FINISHED),
);
}
}
| modernweb-dev/web/packages/test-runner-core/src/runner/TestScheduler.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/runner/TestScheduler.ts",
"repo_id": "modernweb-dev",
"token_count": 3187
} | 219 |
import { Context, getRequestFilePath } from '@web/dev-server-core';
import { PARAM_SESSION_ID, PARAM_TEST_FILE } from '../../utils/constants.js';
import { TestRunnerCoreConfig } from '../../config/TestRunnerCoreConfig.js';
import { createTestFileImportPath } from '../utils.js';
import { trackBrowserLogs } from './trackBrowserLogs.js';
import { TestSessionManager } from '../../test-session/TestSessionManager.js';
import { TestRunnerGroupConfig } from '../../config/TestRunnerGroupConfig.js';
const iframeModePage = `
<!DOCTYPE html>
<html>
<head>
<style>
iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body></body>
</html>
`;
async function getManualListItem(config: TestRunnerCoreConfig, context: Context, testFile: string) {
const testImportPath = await createTestFileImportPath(config, context, testFile);
const displayedPath = testImportPath.split('?')[0].substring(1);
const pagename = displayedPath.endsWith('.html') ? displayedPath : '/';
const href = `${pagename}?${PARAM_TEST_FILE}=${encodeURIComponent(testImportPath)}`;
return `<li><a href="${href}">${displayedPath}</a></li>`;
}
async function createManualDebugPage(
config: TestRunnerCoreConfig,
context: Context,
testFiles: string[],
) {
const listItems = (
await Promise.all(testFiles.map(file => getManualListItem(config, context, file)))
).join('\n');
return `<!DOCTYPE html>
<html>
<head>
<style>
p {
max-width: 600px;
}
</style>
</head>
<body>
<h1>Web Test Runner</h1>
<p>Select a file to debug manually in a custom browser not controlled by Web Test Runner.</p>
<p>
Advanced functionalities such commands for changing viewport and screenshots don't work here.
Use the regular debug option to debug in a controlled browser.
</p>
<h2>Test files</h2>
<ul>
${listItems}
</ul>
</body>
</html>
`;
}
function getInjectIndex(html: string) {
const headIndex = html.indexOf('<head>');
if (headIndex !== -1) return '<head>'.length + headIndex;
const bodyIndex = html.indexOf('<body>');
if (bodyIndex !== -1) return '<body>'.length + bodyIndex;
return 0;
}
function injectRuntime(
html: string,
config: Record<string, unknown>,
browserLogs: boolean,
preloadedModule?: string,
) {
const preloadLink = preloadedModule
? `<link rel="preload" as="script" crossorigin="anonymous" href="${preloadedModule}">`
: '';
const configScript = `<script type="module">window.__WTR_CONFIG__ = ${JSON.stringify(
config,
)}</script>`;
const injectedHtml = `${preloadLink}${browserLogs ? `${trackBrowserLogs}` : ''}${configScript}`;
const injectLocation = getInjectIndex(html);
return `${html.substring(0, injectLocation)}${injectedHtml}${html.substring(injectLocation)}`;
}
function createTestRunnerHtml(
testFrameworkImport: string,
config: TestRunnerCoreConfig,
groupConfig?: TestRunnerGroupConfig,
) {
let body: string;
if (groupConfig?.testRunnerHtml) {
// there is a group in scope, regular test or debug
body = groupConfig.testRunnerHtml(testFrameworkImport, config, groupConfig);
} else if (config.testRunnerHtml) {
// there is no group in scope, ex. when manually debugging
body = config.testRunnerHtml(testFrameworkImport, config);
} else {
// no user defined test runner HTML
body = `<!DOCTYPE html><html><head></head><body><script type="module" src="${testFrameworkImport}"></script></body></html>`;
}
return { body, type: 'html' };
}
export function serveTestRunnerHtmlPlugin(
config: TestRunnerCoreConfig,
testFiles: string[],
sessions: TestSessionManager,
testFrameworkImport?: string,
) {
return {
name: 'wtr-test-runner-html',
async serve(context: Context) {
if (!testFrameworkImport) {
throw new Error('Cannot test javascript files without a testFramework configured.');
}
if (context.path === '/') {
const { searchParams } = context.URL;
if (searchParams.has(PARAM_TEST_FILE)) {
return createTestRunnerHtml(testFrameworkImport, config);
}
const sessionId = searchParams.get(PARAM_SESSION_ID);
if (sessionId) {
const session = sessions.get(sessionId) ?? sessions.getDebug(sessionId);
if (!session) {
throw new Error(`Could not find session ${sessionId}`);
}
return createTestRunnerHtml(testFrameworkImport, config, session.group);
}
if (searchParams.get('mode') === 'iframe') {
return {
type: 'html',
body: iframeModePage,
};
}
return {
type: 'html',
body: await createManualDebugPage(config, context, testFiles),
};
}
},
async transform(context: Context) {
if (!context.response.is('html')) {
return;
}
const isTestRunnerHtml = context.path === '/';
if (
!isTestRunnerHtml &&
!testFiles.includes(getRequestFilePath(context.url, config.rootDir))
) {
return;
}
const { searchParams } = context.URL;
const sessionId = searchParams.get(PARAM_SESSION_ID);
if (sessionId) {
const session = sessions.get(sessionId) ?? sessions.getDebug(sessionId);
if (!session) {
throw new Error(`Could not find session ${sessionId}`);
}
const testFile = await createTestFileImportPath(
config,
context,
session.testFile,
sessionId,
);
const runtimeConfig = {
testFile,
watch: !!config.watch,
debug: session.debug,
testFrameworkConfig: config.testFramework?.config,
};
context.body = injectRuntime(
context.body as string,
runtimeConfig,
!!config.browserLogs,
isTestRunnerHtml ? testFile : undefined,
);
return;
}
const testFile = searchParams.get(PARAM_TEST_FILE);
if (testFile) {
const runtimeConfig = {
testFile,
watch: !!config.watch,
debug: true,
testFrameworkConfig: config.testFramework?.config,
};
context.body = injectRuntime(
context.body as string,
runtimeConfig,
!!config.browserLogs,
isTestRunnerHtml ? testFile : undefined,
)!;
return;
}
},
};
}
| modernweb-dev/web/packages/test-runner-core/src/server/plugins/serveTestRunnerHtmlPlugin.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/server/plugins/serveTestRunnerHtmlPlugin.ts",
"repo_id": "modernweb-dev",
"token_count": 2637
} | 220 |
import { request as httpRequest, RequestOptions, IncomingMessage } from 'http';
import { request as httpsRequest, RequestOptions as HttpsRequestOptions } from 'https';
export interface Response {
response: IncomingMessage;
body?: string;
}
export function request(options: RequestOptions): Promise<Response> {
const isHttps = options.protocol === 'https:';
const requestFn = isHttps ? httpsRequest : httpRequest;
if (isHttps) {
(options as HttpsRequestOptions).rejectUnauthorized = false;
}
return new Promise((resolve, reject) => {
const req = requestFn(options, response => {
let body = '';
response.on('data', chunk => {
body += chunk;
});
response.on('end', () => {
resolve({ response, body });
});
});
req.on('error', err => {
reject(err);
});
req.end();
});
}
| modernweb-dev/web/packages/test-runner-core/src/utils/request.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/src/utils/request.ts",
"repo_id": "modernweb-dev",
"token_count": 304
} | 221 |
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="Chrome_puppeteer_/packages/test-runner-junit-reporter/test/fixtures/nested/nested-test.js" id="0" tests="1" skipped="0" errors="0" failures="0" time="<<computed>>">
<properties>
<property name="test.fileName" value="packages/test-runner-junit-reporter/test/fixtures/nested/nested-test.js"/>
<property name="browser.name" value="Chrome"/>
<property name="browser.launcher" value="puppeteer"/>
</properties>
<testcase name="is equivalent to map (f.g) f a" time="<<computed>>" classname="given a functor f and a function a -> b map f map g f a" file="packages/test-runner-junit-reporter/test/fixtures/nested/nested-test.js"/>
</testsuite>
</testsuites> | modernweb-dev/web/packages/test-runner-junit-reporter/test/fixtures/nested/expected.xml/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-junit-reporter/test/fixtures/nested/expected.xml",
"repo_id": "modernweb-dev",
"token_count": 285
} | 222 |
const { runTests } = require('@web/test-runner-core/test-helpers');
const { chromeLauncher } = require('@web/test-runner-chrome');
const { resolve } = require('path');
const { expect } = require('chai');
it('can run tests with autorun', async function () {
this.timeout(50000);
const { sessions } = await runTests(
{
files: [resolve(__dirname, 'fixtures', 'autorun.js')],
browsers: [chromeLauncher()],
concurrency: 10,
},
[],
{ allowFailure: true, reportErrors: false },
);
expect(sessions.length).to.equal(1);
expect(sessions[0].passed).to.equal(false);
expect(sessions[0].testResults.tests.length).to.equal(2);
expect(sessions[0].testResults.tests[0].name).to.equal('test 1');
expect(sessions[0].testResults.tests[0].passed).to.equal(true);
expect(sessions[0].testResults.tests[1].name).to.equal('test 2');
expect(sessions[0].testResults.tests[1].passed).to.equal(false);
expect(sessions[0].testResults.tests[1].error.message).to.equal('test 2 error');
expect(sessions[0].testResults.suites.length).to.equal(1);
expect(sessions[0].testResults.suites[0].tests.length).to.equal(2);
expect(sessions[0].testResults.suites[0].tests[0].name).to.equal('test a 1');
expect(sessions[0].testResults.suites[0].tests[0].passed).to.equal(true);
expect(sessions[0].testResults.suites[0].tests[1].name).to.equal('test a 2');
expect(sessions[0].testResults.suites[0].tests[1].passed).to.equal(false);
expect(sessions[0].testResults.suites[0].tests[1].error.message).to.equal('test a 2 error');
expect(sessions[0].testResults.suites[0].suites.length).to.equal(1);
expect(sessions[0].testResults.suites[0].suites[0].tests.length).to.equal(2);
expect(sessions[0].testResults.suites[0].suites[0].tests[0].name).to.equal('test b 1');
expect(sessions[0].testResults.suites[0].suites[0].tests[0].passed).to.equal(true);
expect(sessions[0].testResults.suites[0].suites[0].tests[1].name).to.equal('test b 2');
expect(sessions[0].testResults.suites[0].suites[0].tests[1].passed).to.equal(true);
});
| modernweb-dev/web/packages/test-runner-mocha/test/autorun.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-mocha/test/autorun.test.js",
"repo_id": "modernweb-dev",
"token_count": 782
} | 223 |
import { getCurrentHour } from 'time-library/hour';
export function getTimeOfDay() {
const hour = getCurrentHour();
if (hour < 6 || hour > 18) {
return 'night';
}
return 'day';
}
| modernweb-dev/web/packages/test-runner-module-mocking/test/fixtures/bare/fixture/getTimeOfDay.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-module-mocking/test/fixtures/bare/fixture/getTimeOfDay.js",
"repo_id": "modernweb-dev",
"token_count": 66
} | 224 |
{
"name": "@web/test-runner-playwright",
"version": "0.11.0",
"publishConfig": {
"access": "public"
},
"description": "Playwright browser launcher for Web Test Runner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/test-runner-playwright"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/test-runner-playwright",
"main": "dist/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"test:node": "mocha test/**/*.test.ts --require ts-node/register --reporter dot",
"test:watch": "mocha test/**/*.test.ts --require ts-node/register --watch --watch-files src,test"
},
"files": [
"*.d.ts",
"*.js",
"*.mjs",
"dist",
"src"
],
"keywords": [
"web",
"test",
"runner",
"testrunner",
"playwright",
"browser",
"launcher"
],
"dependencies": {
"@web/test-runner-core": "^0.13.0",
"@web/test-runner-coverage-v8": "^0.8.0",
"playwright": "^1.22.2"
},
"devDependencies": {
"@web/test-runner-mocha": "^0.9.0",
"portfinder": "^1.0.32"
}
}
| modernweb-dev/web/packages/test-runner-playwright/package.json/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-playwright/package.json",
"repo_id": "modernweb-dev",
"token_count": 614
} | 225 |
# @web/test-runner-visual-regression
## 0.9.0
### Minor Changes
- c185cbaa: Set minimum node version to 18
### Patch Changes
- Updated dependencies [c185cbaa]
- @web/test-runner-commands@0.9.0
- @web/test-runner-core@0.13.0
## 0.8.3
### Patch Changes
- Updated dependencies [43be7391]
- @web/test-runner-core@0.12.0
- @web/test-runner-commands@0.8.3
## 0.8.2
### Patch Changes
- 048fe6ff: Added types to exports in package.json
- be17bde1: Update pngjs
## 0.8.1
### Patch Changes
- Updated dependencies [0c87f59e]
- @web/test-runner-commands@0.8.0
## 0.8.0
### Minor Changes
- febd9d9d: Set node 16 as the minimum version.
- b7d8ee66: Update mocha from version 8.2.0 to version 10.2.0
### Patch Changes
- Updated dependencies [febd9d9d]
- Updated dependencies [b7d8ee66]
- @web/test-runner-commands@0.7.0
- @web/test-runner-core@0.11.0
## 0.7.1
### Patch Changes
- bd12ff9b: Update `rollup/plugin-replace`
- 8128ca53: Update @rollup/plugin-replace
- Updated dependencies [cdeafe4a]
- Updated dependencies [1113fa09]
- Updated dependencies [817d674b]
- Updated dependencies [445b20e6]
- Updated dependencies [bd12ff9b]
- Updated dependencies [8128ca53]
- @web/test-runner-core@0.10.29
- @web/test-runner-commands@0.6.6
## 0.7.0
### Minor Changes
- e98d97f2: Add visual regression config option to set a failure threshold in pixels or percent
## 0.6.6
### Patch Changes
- b25d3fd3: Update `@web/test-runner-webdriver` dependency to `^0.5.1`.
- Updated dependencies [b25d3fd3]
- @web/test-runner-commands@0.6.4
## 0.6.5
### Patch Changes
- Updated dependencies [36a06160]
- Updated dependencies [064b9dde]
- @web/test-runner-commands@0.6.0
## 0.6.4
### Patch Changes
- 7ed9355a: improve output in visual regression tests when very small differences from baseline
## 0.6.3
### Patch Changes
- 395c605d: Supply testFile to extensibility points in visualDiffPlugin, making it easy to store snapshot images alongside test files
- e56d2db0: Output diff file path to console on snapshot mismatch, making it easier to inspect results.
## 0.6.2
### Patch Changes
- 33ada3d8: Align @web/test-runner-core version
- Updated dependencies [33ada3d8]
- @web/test-runner-commands@0.5.10
## 0.6.1
### Patch Changes
- Updated dependencies [c3ead4fa]
- @web/test-runner-commands@0.5.0
## 0.6.0
### Minor Changes
- 2c06f31e: Update puppeteer and puppeteer-core to 8.0.0
### Patch Changes
- Updated dependencies [a6a018da]
- @web/test-runner-commands@0.4.4
## 0.5.1
### Patch Changes
- aea269c9: Capture visual regressions across changing screenshot sizes.
## 0.5.0
### Minor Changes
- b146365a: Add `buildCache` option to the visual regression config to support always saving the "current" screenshot.
Make the `update` option in the visual regression config _strict_, and only save "current" shots as "baseline" when it is set to `true`.
### Patch Changes
- Updated dependencies [b146365a]
- @web/test-runner-core@0.10.13
## 0.4.1
### Patch Changes
- e3314b02: update dependency on core
- Updated dependencies [e3314b02]
- @web/test-runner-commands@0.4.1
## 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 [1dd7cd0e]
- Updated dependencies [a7d74fdc]
- Updated dependencies [1dd7cd0e]
- @web/test-runner-core@0.10.0
- @web/test-runner-commands@0.4.0
## 0.3.0
### Minor Changes
- 6e313c18: merged @web/test-runner-cli package into @web/test-runner
### Patch Changes
- Updated dependencies [6e313c18]
- Updated dependencies [0f613e0e]
- @web/test-runner-core@0.9.0
- @web/test-runner-commands@0.3.0
## 0.2.3
### Patch Changes
- c0633e4: Fixing bugs related to writing failed and diff images
## 0.2.2
### Patch Changes
- f4aedf6: Add Webdriver launcher support
## 0.2.1
### Patch Changes
- 416c0d2: Update dependencies
- Updated dependencies [416c0d2]
- Updated dependencies [aadf0fe]
- @web/test-runner-commands@0.2.1
- @web/test-runner-core@0.8.4
## 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-commands@0.2.0
- @web/test-runner-core@0.8.0
## 0.1.6
### Patch Changes
- ab97aa8: publish browser folder
- Updated dependencies [ab97aa8]
- @web/test-runner-core@0.7.13
- @web/test-runner-commands@0.1.6
## 0.1.5
### Patch Changes
- 632eb67: export browser and node types
- Updated dependencies [632eb67]
- @web/test-runner-commands@0.1.4
## 0.1.4
### Patch Changes
- 05094dc: first implementation
| modernweb-dev/web/packages/test-runner-visual-regression/CHANGELOG.md/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-visual-regression/CHANGELOG.md",
"repo_id": "modernweb-dev",
"token_count": 1796
} | 226 |
import path from 'path';
import mkdirp from 'mkdirp';
import pixelmatch from 'pixelmatch';
import { readFile, writeFile, fileExists } from './fs.js';
import { pixelMatchDiff } from './pixelMatchDiff.js';
type PixelMatchParams = Parameters<typeof pixelmatch>;
type PixelMatchOptions = PixelMatchParams[5];
export interface GetNameArgs {
browser: string;
name: string;
testFile: string;
}
export interface ImageArgs {
filePath: string;
baseDir: string;
name: string;
}
export interface SaveImageArgs extends ImageArgs {
content: Buffer;
}
export type OptionalImage = Buffer | undefined | Promise<Buffer | undefined>;
export interface DiffResult {
diffPercentage: number;
diffPixels: number;
diffImage: Buffer;
error: string;
}
export interface DiffArgs {
name: string;
baselineImage: Buffer;
image: Buffer;
options: PixelMatchOptions;
}
export interface VisualRegressionPluginOptions {
/**
* Whether to update the baseline image instead of comparing
* the image with the current baseline.
*/
update: boolean;
/**
* Whether to build a new cache separate from the baseline
* of the new/failed images. Useful for removed and/or
* purposely updated tests.
*/
buildCache: boolean;
/**
* The base directory to write images to.
*/
baseDir: string;
/**
* Options to use when diffing images.
*/
diffOptions: PixelMatchOptions;
/**
* The threshold after which a diff is considered a failure, depending on the failureThresholdType.
* For `failureThresholdType` of "percentage", this should be a number between 0-100.
* For `failureThresholdType` of "pixels", this should be a positive integer.
*/
failureThreshold: number;
/**
* The type of threshold that would trigger a failure.
*/
failureThresholdType: 'percent' | 'pixel';
/**
* Returns the name of the baseline image file. The name
* is a path relative to the baseDir
*/
getBaselineName: (args: GetNameArgs) => string;
/**
* Returns the name of the image file representing the difference
* between the baseline and the new image. The name is a path
* relative to the baseDir
*/
getDiffName: (args: GetNameArgs) => string;
/**
* Returns the name of the failed image file. The name is a path
* relative to the baseDir
*/
getFailedName: (args: GetNameArgs) => string;
/**
* Returns the baseline image.
*/
getBaseline: (args: ImageArgs) => OptionalImage;
/**
* Saves the baseline image.
*/
saveBaseline: (args: SaveImageArgs) => void | Promise<void>;
/**
* Saves the image representing the difference between the
* baseline and the new image.
*/
saveDiff: (args: SaveImageArgs) => void | Promise<void>;
/**
* Saves the failed image file.
*/
saveFailed: (args: SaveImageArgs) => void | Promise<void>;
/**
* Gets the difference between two images.
*/
getImageDiff: (args: DiffArgs) => DiffResult | Promise<DiffResult>;
}
async function getImage({ filePath }: ImageArgs) {
if (await fileExists(filePath)) {
return readFile(filePath);
}
}
async function saveImage({ filePath, content }: SaveImageArgs) {
await mkdirp(path.dirname(filePath));
await writeFile(filePath, content);
}
export const defaultOptions: VisualRegressionPluginOptions = {
update: false,
buildCache: false,
baseDir: 'screenshots',
diffOptions: {},
failureThreshold: 0,
failureThresholdType: 'percent',
getBaselineName: ({ browser, name }) => path.join(browser, 'baseline', name),
getDiffName: ({ browser, name }) => path.join(browser, 'failed', `${name}-diff`),
getFailedName: ({ browser, name }) => path.join(browser, 'failed', name),
getBaseline: getImage,
saveBaseline: saveImage,
saveDiff: saveImage,
saveFailed: saveImage,
getImageDiff: pixelMatchDiff,
};
| modernweb-dev/web/packages/test-runner-visual-regression/src/config.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-visual-regression/src/config.ts",
"repo_id": "modernweb-dev",
"token_count": 1185
} | 227 |
import { TestRunnerCoreConfig } from '@web/test-runner-core';
import { Browser, Element } from 'webdriverio';
import { validateBrowserResult } from './coverage.js';
/**
* Manages tests to be executed in one session (concurrency: 1).
*/
export class SessionManager {
private config: TestRunnerCoreConfig;
private driver: Browser;
private locked?: Promise<unknown>;
private isIE: boolean;
private urlMap = new Map<string, string>();
constructor(config: TestRunnerCoreConfig, driver: Browser, isIE: boolean) {
this.config = config;
this.driver = driver;
this.isIE = isIE;
}
isActive(id: string) {
return this.urlMap.has(id);
}
async getBrowserUrl(id: string): Promise<string | undefined> {
return this.urlMap.get(id);
}
private async scheduleCommand<T>(fn: () => Promise<T>) {
if (!this.isIE) {
return fn();
}
while (this.locked) {
await this.locked;
}
const fnPromise = fn();
this.locked = fnPromise;
const result = await fnPromise;
this.locked = undefined;
return result;
}
async queueStartSession(id: string, url: string) {
this.scheduleCommand(() => this.startSession(id, url));
}
private async startSession(id: string, url: string) {
this.urlMap.set(id, url);
await this.driver.navigateTo(url);
}
async queueStopSession(id: string) {
return this.scheduleCommand(() => this.stopSession(id));
}
async stopSession(id: string) {
// Retrieve test results from iframe. Note: IIFE is used to prevent
// WebdriverIO from crashing failure with Puppeteer (default mode):
// Error: Evaluation failed: SyntaxError: Illegal return statement
// See https://github.com/webdriverio/webdriverio/pull/4829
const returnValue = await this.driver.execute(`
return (function() {
return { testCoverage: window.__coverage__ };
})();
`);
if (!validateBrowserResult(returnValue)) {
throw new Error();
}
const { testCoverage } = returnValue;
// navigate to an empty page to kill any running code on the page
await this.driver.navigateTo('about:blank');
this.urlMap.delete(id);
return { testCoverage: this.config.coverage ? testCoverage : undefined };
}
async performActions(_: string, actions: object[]) {
return this.driver.performActions(actions);
}
async sendKeys(_: string, keys: string[]) {
return this.driver.keys(keys);
}
async takeScreenshot(_: string, locator: string): Promise<Buffer> {
const elementData = (await this.driver.execute(locator, [])) as Element;
const element = await this.driver.$(elementData);
let base64 = '';
try {
base64 = await this.driver.takeElementScreenshot(element.elementId);
} catch (err) {
console.log('Failed to take a screenshot:', err);
}
return Buffer.from(base64, 'base64');
}
}
| modernweb-dev/web/packages/test-runner-webdriver/src/SessionManager.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-webdriver/src/SessionManager.ts",
"repo_id": "modernweb-dev",
"token_count": 986
} | 228 |
export default 'moduleFeaturesB';
| modernweb-dev/web/packages/test-runner-webdriver/test/fixtures/module-features-b.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-webdriver/test/fixtures/module-features-b.js",
"repo_id": "modernweb-dev",
"token_count": 8
} | 229 |
import { legacyPlugin } from '@web/dev-server-legacy';
export default {
nodeResolve: true,
rootDir: '../../..',
middleware: [
(ctx, next) => {
ctx.headers['user-agent'] = '<removed user agent to trigger legacy>';
return next();
},
],
plugins: [legacyPlugin()],
};
| modernweb-dev/web/packages/test-runner/demo/legacy.config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/legacy.config.mjs",
"repo_id": "modernweb-dev",
"token_count": 114
} | 230 |
import 'chai/chai.js';
export const expect = window.chai.expect;
export const assert = window.chai.assert;
| modernweb-dev/web/packages/test-runner/demo/test/chai.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/chai.js",
"repo_id": "modernweb-dev",
"token_count": 37
} | 231 |
import {
neverCalled,
neverCalledWithTrue,
calledTwice,
calledThrice,
PublicClass,
} from './pass-coverage.js';
neverCalledWithTrue();
calledTwice();
calledThrice();
const publicClass = new PublicClass();
publicClass.calledTwice();
publicClass.calledThrice();
| modernweb-dev/web/packages/test-runner/demo/test/pass-coverage-b.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/pass-coverage-b.test.js",
"repo_id": "modernweb-dev",
"token_count": 89
} | 232 |
import { a } from './a.js';
a();
| modernweb-dev/web/packages/test-runner/demo/test/virtual-files/a.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/virtual-files/a.test.js",
"repo_id": "modernweb-dev",
"token_count": 16
} | 233 |
import './shared-a.js';
import './shared-b.js';
| modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-10.test.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-10.test.d.ts",
"repo_id": "modernweb-dev",
"token_count": 20
} | 234 |
import './shared-a.js';
import './shared-b.js';
| modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-7.test.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-7.test.d.ts",
"repo_id": "modernweb-dev",
"token_count": 20
} | 235 |
export { expect } from '@esm-bundle/chai';
| modernweb-dev/web/packages/test-runner/demo/tsc/test/chai.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/test/chai.ts",
"repo_id": "modernweb-dev",
"token_count": 16
} | 236 |
import { TestRunnerStartError } from '../TestRunnerStartError.js';
/* eslint-disable @typescript-eslint/no-var-requires */
const puppeteerBrowsers = ['chrome', 'firefox'];
const playwrightBrowsers = ['chromium', 'firefox', 'webkit'];
function loadLauncher(name: string) {
const pkg = `@web/test-runner-${name}`;
try {
const path = require.resolve(pkg, { paths: [__dirname, process.cwd()] });
return require(path);
} catch (error) {
if ((error as NodeJS.ErrnoException).code === 'MODULE_NOT_FOUND') {
throw new TestRunnerStartError(
`You need to add ${pkg} as a dependency of your project to use the --${name} flag.`,
);
} else {
throw error;
}
}
}
export function puppeteerLauncher(browsers: string[] = ['chrome']) {
for (const browser of browsers) {
if (!puppeteerBrowsers.includes(browser)) {
throw new TestRunnerStartError(
`Unknown puppeteer browser: ${browser}. ` +
`Supported browsers: ${puppeteerBrowsers.join(', ')}`,
);
}
}
const launcher = loadLauncher('puppeteer').puppeteerLauncher;
return browsers.map(product => launcher({ launchOptions: { product } }));
}
export function playwrightLauncher(browsers: string[] = ['chromium']) {
for (const browser of browsers) {
if (!playwrightBrowsers.includes(browser)) {
throw new TestRunnerStartError(
`Unknown playwright browser: ${browser}. ` +
`Supported browsers: ${playwrightBrowsers.join(', ')}`,
);
}
}
const launcher = loadLauncher('playwright').playwrightLauncher;
return browsers.map(product => launcher({ product }));
}
| modernweb-dev/web/packages/test-runner/src/config/loadLauncher.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/src/config/loadLauncher.ts",
"repo_id": "modernweb-dev",
"token_count": 591
} | 237 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.