mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
Merge branch 'master' into feature/endUserVaultRefresh
This commit is contained in:
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -137,6 +137,9 @@ jobs:
|
||||
else
|
||||
docker tag bitwarden/web:$_BRANCH_NAME $REGISTRY/web:$_RELEASE_VERSION
|
||||
docker tag bitwarden/web:$_BRANCH_NAME $REGISTRY/web:latest
|
||||
|
||||
docker tag bitwarden/web:$_BRANCH_NAME $REGISTRY/web-sh:$_RELEASE_VERSION
|
||||
docker tag bitwarden/web:$_BRANCH_NAME $REGISTRY/web-sh:latest
|
||||
fi
|
||||
|
||||
- name: Push version and latest image
|
||||
@@ -147,6 +150,9 @@ jobs:
|
||||
docker push $REGISTRY/web:$_RELEASE_VERSION
|
||||
docker push $REGISTRY/web:latest
|
||||
|
||||
docker push $REGISTRY/web-sh:$_RELEASE_VERSION
|
||||
docker push $REGISTRY/web-sh:latest
|
||||
|
||||
- name: Log out of Docker
|
||||
run: docker logout
|
||||
|
||||
@@ -182,7 +188,7 @@ jobs:
|
||||
git config --global url."https://".insteadOf ssh://
|
||||
|
||||
- name: Download latest cloud asset
|
||||
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783
|
||||
uses: bitwarden/gh-actions/download-artifacts@c1fa8e09871a860862d6bbe36184b06d2c7e35a8
|
||||
with:
|
||||
workflow: build.yml
|
||||
workflow_conclusion: success
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"buttonAction": "https://www.sandbox.paypal.com/cgi-bin/webscr"
|
||||
},
|
||||
"dev": {
|
||||
"port": 8080,
|
||||
"allowedHosts": "auto"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,9 @@
|
||||
{}
|
||||
{
|
||||
"dev": {
|
||||
"proxyApi": "http://localhost:4001",
|
||||
"proxyIdentity": "http://localhost:33657",
|
||||
"proxyEvents": "http://localhost:46274",
|
||||
"proxyNotifications": "http://localhost:61841",
|
||||
"port": 8081
|
||||
}
|
||||
}
|
||||
|
||||
2
jslib
2
jslib
Submodule jslib updated: 65efc948ad...66ec7e0cd8
814
package-lock.json
generated
814
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -98,7 +98,6 @@
|
||||
"jszip": "^3.7.1",
|
||||
"ngx-infinite-scroll": "^10.0.1",
|
||||
"ngx-toastr": "14.1.4",
|
||||
"node-forge": "^0.10.0",
|
||||
"popper.js": "1.16.1",
|
||||
"qrious": "4.0.2",
|
||||
"rxjs": "^7.4.0",
|
||||
|
||||
@@ -34,14 +34,13 @@ import { EmergencyAccessComponent } from "./settings/emergency-access.component"
|
||||
import { OrganizationsComponent } from "./settings/organizations.component";
|
||||
import { PreferencesComponent } from "./settings/preferences.component";
|
||||
import { PremiumComponent } from "./settings/premium.component";
|
||||
import { SecurityComponent } from "./settings/security.component";
|
||||
import { SettingsComponent } from "./settings/settings.component";
|
||||
import { SponsoredFamiliesComponent } from "./settings/sponsored-families.component";
|
||||
import { UserBillingComponent } from "./settings/user-billing.component";
|
||||
import { UserSubscriptionComponent } from "./settings/user-subscription.component";
|
||||
import { ExportComponent } from "./tools/export.component";
|
||||
import { GeneratorComponent } from "./tools/generator.component";
|
||||
import { ImportComponent } from "./tools/import.component";
|
||||
import { PasswordGeneratorComponent } from "./tools/password-generator.component";
|
||||
import { ToolsComponent } from "./tools/tools.component";
|
||||
import { VaultComponent } from "./vault/vault.component";
|
||||
|
||||
@@ -211,8 +210,8 @@ const routes: Routes = [
|
||||
{ path: "export", component: ExportComponent, data: { titleId: "exportVault" } },
|
||||
{
|
||||
path: "generator",
|
||||
component: PasswordGeneratorComponent,
|
||||
data: { titleId: "passwordGenerator" },
|
||||
component: GeneratorComponent,
|
||||
data: { titleId: "generator" },
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -57,6 +57,7 @@ import { BadgeModule, ButtonModule, CalloutModule } from "@bitwarden/components"
|
||||
import { InfiniteScrollModule } from "ngx-infinite-scroll";
|
||||
import { ToastrModule } from "ngx-toastr";
|
||||
|
||||
import { VerifyMasterPasswordComponent } from "jslib-angular/components/verify-master-password.component";
|
||||
import { JslibModule } from "jslib-angular/jslib.module";
|
||||
|
||||
import { AcceptEmergencyComponent } from "./accounts/accept-emergency.component";
|
||||
@@ -198,9 +199,9 @@ import { UserSubscriptionComponent } from "./settings/user-subscription.componen
|
||||
import { VaultTimeoutInputComponent } from "./settings/vault-timeout-input.component";
|
||||
import { VerifyEmailComponent } from "./settings/verify-email.component";
|
||||
import { ExportComponent } from "./tools/export.component";
|
||||
import { GeneratorComponent } from "./tools/generator.component";
|
||||
import { ImportComponent } from "./tools/import.component";
|
||||
import { PasswordGeneratorHistoryComponent } from "./tools/password-generator-history.component";
|
||||
import { PasswordGeneratorComponent } from "./tools/password-generator.component";
|
||||
import { ToolsComponent } from "./tools/tools.component";
|
||||
import { AddEditCustomFieldsComponent } from "./vault/add-edit-custom-fields.component";
|
||||
import { AddEditComponent } from "./vault/add-edit.component";
|
||||
@@ -281,8 +282,11 @@ registerLocaleData(localeZhTw, "zh-TW");
|
||||
ButtonModule,
|
||||
CalloutModule,
|
||||
ToastrModule,
|
||||
BadgeModule,
|
||||
ButtonModule,
|
||||
],
|
||||
declarations: [
|
||||
PremiumBadgeComponent,
|
||||
AcceptEmergencyComponent,
|
||||
AcceptOrganizationComponent,
|
||||
AccessComponent,
|
||||
@@ -378,7 +382,7 @@ registerLocaleData(localeZhTw, "zh-TW");
|
||||
OrgUserGroupsComponent,
|
||||
OrgVaultComponent,
|
||||
OrgWeakPasswordsReportComponent,
|
||||
PasswordGeneratorComponent,
|
||||
GeneratorComponent,
|
||||
PasswordGeneratorHistoryComponent,
|
||||
PasswordGeneratorPolicyComponent,
|
||||
PasswordRepromptComponent,
|
||||
@@ -439,6 +443,7 @@ registerLocaleData(localeZhTw, "zh-TW");
|
||||
VaultTimeoutInputComponent,
|
||||
VerifyEmailComponent,
|
||||
VerifyEmailTokenComponent,
|
||||
VerifyMasterPasswordComponent,
|
||||
VerifyRecoverDeleteComponent,
|
||||
WeakPasswordsReportComponent,
|
||||
],
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
import "core-js/stable";
|
||||
require("zone.js/dist/zone");
|
||||
|
||||
// IE11 fix, ref: https://github.com/angular/angular/issues/24769
|
||||
if (!Element.prototype.matches && (Element.prototype as any).msMatchesSelector) {
|
||||
Element.prototype.matches = (Element.prototype as any).msMatchesSelector;
|
||||
}
|
||||
|
||||
if (process.env.NODE_ENV === "production") {
|
||||
// Production
|
||||
} else {
|
||||
|
||||
@@ -6,6 +6,7 @@ import { CryptoService } from "jslib-common/abstractions/crypto.service";
|
||||
import { CryptoFunctionService } from "jslib-common/abstractions/cryptoFunction.service";
|
||||
import { I18nService } from "jslib-common/abstractions/i18n.service";
|
||||
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
||||
import { SEND_KDF_ITERATIONS } from "jslib-common/enums/kdfType";
|
||||
import { SendType } from "jslib-common/enums/sendType";
|
||||
import { Utils } from "jslib-common/misc/utils";
|
||||
import { SendAccess } from "jslib-common/models/domain/sendAccess";
|
||||
@@ -140,7 +141,7 @@ export class AccessComponent implements OnInit {
|
||||
this.password,
|
||||
keyArray,
|
||||
"sha256",
|
||||
100000
|
||||
SEND_KDF_ITERATIONS
|
||||
);
|
||||
this.accessRequest.password = Utils.fromBufferToB64(passwordHash);
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
<div class="col-12">
|
||||
<div class="form-group">
|
||||
<div class="small form-text text-muted">
|
||||
<p>{{ "kdfIterationsDesc" | i18n: (100000 | number) }}</p>
|
||||
<p>{{ "kdfIterationsDesc" | i18n: (recommendedKdfIterations | number) }}</p>
|
||||
<strong>{{ "warning" | i18n }}</strong
|
||||
>: {{ "kdfIterationsWarning" | i18n: (50000 | number) }}
|
||||
</div>
|
||||
|
||||
@@ -7,7 +7,7 @@ import { LogService } from "jslib-common/abstractions/log.service";
|
||||
import { MessagingService } from "jslib-common/abstractions/messaging.service";
|
||||
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
||||
import { StateService } from "jslib-common/abstractions/state.service";
|
||||
import { KdfType } from "jslib-common/enums/kdfType";
|
||||
import { DEFAULT_KDF_ITERATIONS, KdfType } from "jslib-common/enums/kdfType";
|
||||
import { KdfRequest } from "jslib-common/models/request/kdfRequest";
|
||||
|
||||
@Component({
|
||||
@@ -20,6 +20,7 @@ export class ChangeKdfComponent implements OnInit {
|
||||
kdf = KdfType.PBKDF2_SHA256;
|
||||
kdfOptions: any[] = [];
|
||||
formPromise: Promise<any>;
|
||||
recommendedKdfIterations = DEFAULT_KDF_ITERATIONS;
|
||||
|
||||
constructor(
|
||||
private apiService: ApiService,
|
||||
|
||||
341
src/app/tools/generator.component.html
Normal file
341
src/app/tools/generator.component.html
Normal file
@@ -0,0 +1,341 @@
|
||||
<div class="page-header">
|
||||
<h1>{{ "generator" | i18n }}</h1>
|
||||
</div>
|
||||
<app-callout type="info" *ngIf="enforcedPasswordPolicyOptions?.inEffect() && type === 'password'">
|
||||
{{ "passwordGeneratorPolicyInEffect" | i18n }}
|
||||
</app-callout>
|
||||
<div class="card card-generated bg-light my-4">
|
||||
<div class="card-body">
|
||||
<div
|
||||
*ngIf="type === 'password'"
|
||||
class="generated-wrapper"
|
||||
[innerHTML]="password | colorPassword"
|
||||
appSelectCopy
|
||||
></div>
|
||||
<div
|
||||
*ngIf="type === 'username'"
|
||||
class="generated-wrapper"
|
||||
[innerHTML]="username | colorPassword"
|
||||
appSelectCopy
|
||||
></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="d-block">{{ "whatWouldYouLikeToGenerate" | i18n }}</label>
|
||||
<div class="form-check form-check-inline" *ngFor="let o of typeOptions">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="radio"
|
||||
[(ngModel)]="type"
|
||||
name="Type_{{ o.value }}"
|
||||
id="type_{{ o.value }}"
|
||||
[value]="o.value"
|
||||
(change)="typeChanged()"
|
||||
[checked]="type === o.value"
|
||||
/>
|
||||
<label class="form-check-label" for="type_{{ o.value }}">
|
||||
{{ o.name }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<ng-container *ngIf="type === 'password'">
|
||||
<div class="form-group">
|
||||
<label class="d-block">{{ "passwordType" | i18n }}</label>
|
||||
<div class="form-check form-check-inline" *ngFor="let o of passTypeOptions">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="radio"
|
||||
[(ngModel)]="passwordOptions.type"
|
||||
name="PasswordType_{{ o.value }}"
|
||||
id="passwordType_{{ o.value }}"
|
||||
[value]="o.value"
|
||||
(change)="savePasswordOptions()"
|
||||
[checked]="passwordOptions.type === o.value"
|
||||
/>
|
||||
<label class="form-check-label" for="passwordType_{{ o.value }}">
|
||||
{{ o.name }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<ng-container *ngIf="passwordOptions.type === 'passphrase'">
|
||||
<div class="row">
|
||||
<div class="form-group col-4">
|
||||
<label for="num-words">{{ "numWords" | i18n }}</label>
|
||||
<input
|
||||
id="num-words"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="3"
|
||||
max="20"
|
||||
[(ngModel)]="passwordOptions.numWords"
|
||||
(blur)="savePasswordOptions()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="word-separator">{{ "wordSeparator" | i18n }}</label>
|
||||
<input
|
||||
id="word-separator"
|
||||
class="form-control"
|
||||
type="text"
|
||||
maxlength="1"
|
||||
[(ngModel)]="passwordOptions.wordSeparator"
|
||||
(blur)="savePasswordOptions()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<label class="d-block">{{ "options" | i18n }}</label>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="capitalize"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.capitalize"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.capitalize"
|
||||
/>
|
||||
<label for="capitalize" class="form-check-label">{{ "capitalize" | i18n }}</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="include-number"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.includeNumber"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.includeNumber"
|
||||
/>
|
||||
<label for="include-number" class="form-check-label">{{ "includeNumber" | i18n }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="passwordOptions.type === 'password'">
|
||||
<div class="row">
|
||||
<div class="form-group col-4">
|
||||
<label for="length">{{ "length" | i18n }}</label>
|
||||
<input
|
||||
id="length"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="5"
|
||||
max="128"
|
||||
[(ngModel)]="passwordOptions.length"
|
||||
(blur)="savePasswordOptions()"
|
||||
(change)="lengthChanged()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="min-number">{{ "minNumbers" | i18n }}</label>
|
||||
<input
|
||||
id="min-number"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="0"
|
||||
max="9"
|
||||
(blur)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.minNumber"
|
||||
(change)="minNumberChanged()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="min-special">{{ "minSpecial" | i18n }}</label>
|
||||
<input
|
||||
id="min-special"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="0"
|
||||
max="9"
|
||||
(blur)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.minSpecial"
|
||||
(change)="minSpecialChanged()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<label class="d-block">{{ "options" | i18n }}</label>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="uppercase"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.uppercase"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.useUppercase"
|
||||
/>
|
||||
<label for="uppercase" class="form-check-label">A-Z</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="lowercase"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.lowercase"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.useLowercase"
|
||||
/>
|
||||
<label for="lowercase" class="form-check-label">a-z</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="numbers"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.number"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.useNumbers"
|
||||
/>
|
||||
<label for="numbers" class="form-check-label">0-9</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="special"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="passwordOptions.special"
|
||||
[disabled]="enforcedPasswordPolicyOptions?.useSpecial"
|
||||
/>
|
||||
<label for="special" class="form-check-label">!@#$%^&*</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="ambiguous"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="savePasswordOptions()"
|
||||
[(ngModel)]="avoidAmbiguous"
|
||||
/>
|
||||
<label for="ambiguous" class="form-check-label">{{ "ambiguous" | i18n }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<div class="d-flex">
|
||||
<div>
|
||||
<button type="button" class="btn btn-primary" (click)="regenerate()">
|
||||
{{ "regeneratePassword" | i18n }}
|
||||
</button>
|
||||
<button type="button" class="btn btn-outline-secondary" (click)="copy()">
|
||||
{{ "copyPassword" | i18n }}
|
||||
</button>
|
||||
</div>
|
||||
<div class="ml-auto">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline-secondary"
|
||||
(click)="history()"
|
||||
appA11yTitle="{{ 'passwordHistory' | i18n }}"
|
||||
>
|
||||
<i class="bwi bwi-clock bwi-lg" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="type === 'username'">
|
||||
<div class="form-group">
|
||||
<div class="d-block">
|
||||
<label>{{ "usernameType" | i18n }}</label>
|
||||
<a
|
||||
class="ml-auto"
|
||||
href="https://bitwarden.com/help/generator/#username-types"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
appA11yTitle="{{ 'learnMore' | i18n }}"
|
||||
>
|
||||
<i class="bwi bwi-question-circle" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="form-check" *ngFor="let o of usernameTypeOptions">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="radio"
|
||||
[(ngModel)]="usernameOptions.type"
|
||||
name="UsernameType_{{ o.value }}"
|
||||
id="usernameType_{{ o.value }}"
|
||||
[value]="o.value"
|
||||
(change)="saveUsernameOptions()"
|
||||
[checked]="usernameOptions.type === o.value"
|
||||
/>
|
||||
<label class="form-check-label" for="usernameType_{{ o.value }}">
|
||||
{{ o.name }}
|
||||
<div class="small text-muted">{{ o.desc }}</div>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" *ngIf="usernameOptions.type === 'forwarded'">
|
||||
<div class="form-check form-check-inline" *ngFor="let o of forwardOptions">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="radio"
|
||||
[(ngModel)]="usernameOptions.forwardedService"
|
||||
name="ForwardType_{{ o.value }}"
|
||||
id="forwardtype_{{ o.value }}"
|
||||
[value]="o.value"
|
||||
(change)="saveUsernameOptions()"
|
||||
[checked]="usernameOptions.forwardedService === o.value"
|
||||
/>
|
||||
<label class="form-check-label" for="forwardtype_{{ o.value }}">
|
||||
{{ o.name }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" *ngIf="usernameOptions.type === 'subaddress'">
|
||||
<div class="form-group col-4">
|
||||
<label for="subaddress-email">{{ "emailAddress" | i18n }}</label>
|
||||
<input
|
||||
id="subaddress-email"
|
||||
class="form-control"
|
||||
type="text"
|
||||
[(ngModel)]="usernameOptions.subaddressEmail"
|
||||
(blur)="saveUsernameOptions()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" *ngIf="usernameOptions.type === 'catchall'">
|
||||
<div class="form-group col-4">
|
||||
<label for="catchall-domain">{{ "domainName" | i18n }}</label>
|
||||
<input
|
||||
id="catchall-domain"
|
||||
class="form-control"
|
||||
type="text"
|
||||
[(ngModel)]="usernameOptions.catchallDomain"
|
||||
(blur)="saveUsernameOptions()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<ng-container *ngIf="usernameOptions.type === 'word'">
|
||||
<label class="d-block">{{ "options" | i18n }}</label>
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="capitalizeUsername"
|
||||
type="checkbox"
|
||||
(change)="saveUsernameOptions()"
|
||||
[(ngModel)]="usernameOptions.wordCapitalize"
|
||||
/>
|
||||
<label for="capitalizeUsername" class="form-check-label">{{ "capitalize" | i18n }}</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="includeNumberUsername"
|
||||
type="checkbox"
|
||||
(change)="saveUsernameOptions()"
|
||||
[(ngModel)]="usernameOptions.wordIncludeNumber"
|
||||
/>
|
||||
<label for="includeNumberUsername" class="form-check-label">{{
|
||||
"includeNumber" | i18n
|
||||
}}</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<div>
|
||||
<button type="button" class="btn btn-primary" (click)="regenerate()">
|
||||
{{ "regenerateUsername" | i18n }}
|
||||
</button>
|
||||
<button type="button" class="btn btn-outline-secondary" (click)="copy()">
|
||||
{{ "copyUsername" | i18n }}
|
||||
</button>
|
||||
</div>
|
||||
</ng-container>
|
||||
<ng-template #historyTemplate></ng-template>
|
||||
@@ -1,28 +1,42 @@
|
||||
import { Component, ViewChild, ViewContainerRef } from "@angular/core";
|
||||
import { ActivatedRoute } from "@angular/router";
|
||||
|
||||
import { PasswordGeneratorComponent as BasePasswordGeneratorComponent } from "jslib-angular/components/password-generator.component";
|
||||
import { GeneratorComponent as BaseGeneratorComponent } from "jslib-angular/components/generator.component";
|
||||
import { ModalService } from "jslib-angular/services/modal.service";
|
||||
import { I18nService } from "jslib-common/abstractions/i18n.service";
|
||||
import { PasswordGenerationService } from "jslib-common/abstractions/passwordGeneration.service";
|
||||
import { PlatformUtilsService } from "jslib-common/abstractions/platformUtils.service";
|
||||
import { StateService } from "jslib-common/abstractions/state.service";
|
||||
import { UsernameGenerationService } from "jslib-common/abstractions/usernameGeneration.service";
|
||||
|
||||
import { PasswordGeneratorHistoryComponent } from "./password-generator-history.component";
|
||||
|
||||
@Component({
|
||||
selector: "app-password-generator",
|
||||
templateUrl: "password-generator.component.html",
|
||||
selector: "app-generator",
|
||||
templateUrl: "generator.component.html",
|
||||
})
|
||||
export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
|
||||
export class GeneratorComponent extends BaseGeneratorComponent {
|
||||
@ViewChild("historyTemplate", { read: ViewContainerRef, static: true })
|
||||
historyModalRef: ViewContainerRef;
|
||||
|
||||
constructor(
|
||||
passwordGenerationService: PasswordGenerationService,
|
||||
usernameGenerationService: UsernameGenerationService,
|
||||
stateService: StateService,
|
||||
platformUtilsService: PlatformUtilsService,
|
||||
i18nService: I18nService,
|
||||
route: ActivatedRoute,
|
||||
private modalService: ModalService
|
||||
) {
|
||||
super(passwordGenerationService, platformUtilsService, i18nService, window);
|
||||
super(
|
||||
passwordGenerationService,
|
||||
usernameGenerationService,
|
||||
platformUtilsService,
|
||||
stateService,
|
||||
i18nService,
|
||||
route,
|
||||
window
|
||||
);
|
||||
}
|
||||
|
||||
async history() {
|
||||
@@ -17,7 +17,7 @@
|
||||
<li class="list-group-item d-flex" *ngFor="let h of history">
|
||||
<div class="password-row">
|
||||
<div
|
||||
class="text-monospace password-wrapper"
|
||||
class="text-monospace generated-wrapper"
|
||||
[innerHTML]="h.password | colorPassword"
|
||||
appSelectCopy
|
||||
></div>
|
||||
|
||||
@@ -1,199 +0,0 @@
|
||||
<div class="page-header">
|
||||
<h1>{{ "passwordGenerator" | i18n }}</h1>
|
||||
</div>
|
||||
<app-callout type="info" *ngIf="enforcedPolicyOptions?.inEffect()">
|
||||
{{ "passwordGeneratorPolicyInEffect" | i18n }}
|
||||
</app-callout>
|
||||
<div class="card card-password bg-light my-4">
|
||||
<div class="card-body">
|
||||
<div class="password-wrapper" [innerHTML]="password | colorPassword" appSelectCopy></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="form-check form-check-inline" *ngFor="let o of passTypeOptions">
|
||||
<input
|
||||
class="form-check-input"
|
||||
type="radio"
|
||||
[(ngModel)]="options.type"
|
||||
name="Type_{{ o.value }}"
|
||||
id="type_{{ o.value }}"
|
||||
[value]="o.value"
|
||||
(change)="saveOptions()"
|
||||
[checked]="options.type === o.value"
|
||||
/>
|
||||
<label class="form-check-label" for="type_{{ o.value }}">
|
||||
{{ o.name }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<ng-container *ngIf="options.type === 'passphrase'">
|
||||
<div class="row">
|
||||
<div class="form-group col-4">
|
||||
<label for="num-words">{{ "numWords" | i18n }}</label>
|
||||
<input
|
||||
id="num-words"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="3"
|
||||
max="20"
|
||||
[(ngModel)]="options.numWords"
|
||||
(blur)="saveOptions()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="word-separator">{{ "wordSeparator" | i18n }}</label>
|
||||
<input
|
||||
id="word-separator"
|
||||
class="form-control"
|
||||
type="text"
|
||||
maxlength="1"
|
||||
[(ngModel)]="options.wordSeparator"
|
||||
(blur)="saveOptions()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="capitalize"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.capitalize"
|
||||
[disabled]="enforcedPolicyOptions?.capitalize"
|
||||
/>
|
||||
<label for="capitalize" class="form-check-label">{{ "capitalize" | i18n }}</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="include-number"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.includeNumber"
|
||||
[disabled]="enforcedPolicyOptions?.includeNumber"
|
||||
/>
|
||||
<label for="include-number" class="form-check-label">{{ "includeNumber" | i18n }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="options.type === 'password'">
|
||||
<div class="row">
|
||||
<div class="form-group col-4">
|
||||
<label for="length">{{ "length" | i18n }}</label>
|
||||
<input
|
||||
id="length"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="5"
|
||||
max="128"
|
||||
[(ngModel)]="options.length"
|
||||
(blur)="saveOptions()"
|
||||
(change)="lengthChanged()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="min-number">{{ "minNumbers" | i18n }}</label>
|
||||
<input
|
||||
id="min-number"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="0"
|
||||
max="9"
|
||||
(blur)="saveOptions()"
|
||||
[(ngModel)]="options.minNumber"
|
||||
(change)="minNumberChanged()"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group col-4">
|
||||
<label for="min-special">{{ "minSpecial" | i18n }}</label>
|
||||
<input
|
||||
id="min-special"
|
||||
class="form-control"
|
||||
type="number"
|
||||
min="0"
|
||||
max="9"
|
||||
(blur)="saveOptions()"
|
||||
[(ngModel)]="options.minSpecial"
|
||||
(change)="minSpecialChanged()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="uppercase"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.uppercase"
|
||||
[disabled]="enforcedPolicyOptions?.useUppercase"
|
||||
/>
|
||||
<label for="uppercase" class="form-check-label">A-Z</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="lowercase"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.lowercase"
|
||||
[disabled]="enforcedPolicyOptions?.useLowercase"
|
||||
/>
|
||||
<label for="lowercase" class="form-check-label">a-z</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="numbers"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.number"
|
||||
[disabled]="enforcedPolicyOptions?.useNumbers"
|
||||
/>
|
||||
<label for="numbers" class="form-check-label">0-9</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="special"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="options.special"
|
||||
[disabled]="enforcedPolicyOptions?.useSpecial"
|
||||
/>
|
||||
<label for="special" class="form-check-label">!@#$%^&*</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input
|
||||
id="ambiguous"
|
||||
class="form-check-input"
|
||||
type="checkbox"
|
||||
(change)="saveOptions()"
|
||||
[(ngModel)]="avoidAmbiguous"
|
||||
/>
|
||||
<label for="ambiguous" class="form-check-label">{{ "ambiguous" | i18n }}</label>
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
<div class="d-flex">
|
||||
<div>
|
||||
<button type="button" class="btn btn-primary" (click)="regenerate()">
|
||||
{{ "regeneratePassword" | i18n }}
|
||||
</button>
|
||||
<button type="button" class="btn btn-outline-secondary" (click)="copy()">
|
||||
{{ "copyPassword" | i18n }}
|
||||
</button>
|
||||
</div>
|
||||
<div class="ml-auto">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline-secondary"
|
||||
(click)="history()"
|
||||
appA11yTitle="{{ 'passwordHistory' | i18n }}"
|
||||
>
|
||||
<i class="bwi bwi-clock bwi-lg" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ng-template #historyTemplate></ng-template>
|
||||
@@ -5,7 +5,7 @@
|
||||
<div class="card-header">{{ "tools" | i18n }}</div>
|
||||
<div class="list-group list-group-flush">
|
||||
<a routerLink="generator" class="list-group-item" routerLinkActive="active">
|
||||
{{ "passwordGenerator" | i18n }}
|
||||
{{ "generator" | i18n }}
|
||||
</a>
|
||||
<a routerLink="import" class="list-group-item" routerLinkActive="active">
|
||||
{{ "importData" | i18n }}
|
||||
|
||||
@@ -764,7 +764,7 @@
|
||||
<div class="ml-3" *ngIf="viewingPasswordHistory">
|
||||
<div *ngFor="let ph of cipher.passwordHistory">
|
||||
{{ ph.lastUsedDate | date: "short" }} -
|
||||
<span class="password-wrapper text-monospace ml-2">{{ ph.password }}</span>
|
||||
<span class="generated-wrapper text-monospace ml-2">{{ ph.password }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Wysig vouer"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Basisdomein"
|
||||
"message": "Basisdomein",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Gasheer",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Verslae"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instruksies"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Blootgestelde wagwoorde gevind"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Swak wagwoorde gevind"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "Geen items in u kluis het swak wagwoorde nie."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Hergebruikte wagwoorde gevind"
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Databreukverslag"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Alle Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maks toegangsaantal bereik"
|
||||
"message": "Maks toegangsaantal bereik",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Word geskrap"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Qovluğa düzəliş et"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Baza domeni"
|
||||
"message": "Baza domeni",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domen adı",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Hesabatlar"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Aşağıdakı hesabatlara klikləyərək onlayn hesablarınızdakı güvənlik boşluqlarına baxın və onları bağlayın."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Təhlükəli veb sayt hesabatları"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Bütün \"Send\"lər"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksimal müraciət sayına çatıldı"
|
||||
"message": "Maksimal müraciət sayına çatıldı",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Silinməsi gözlənilir"
|
||||
@@ -4513,7 +4522,7 @@
|
||||
"message": "Gedən çıxış tələblərinə icazə ver"
|
||||
},
|
||||
"idpSignAuthenticationRequests": {
|
||||
"message": "Sign authentication requests"
|
||||
"message": "Kimlik təsdiqləmə tələblərini imzala"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Tək daxil olma konfiqurasiyası saxlanıldı."
|
||||
@@ -4699,7 +4708,7 @@
|
||||
"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."
|
||||
"message": "Açar Bağlayıcı şifrə açmanı quraşdırmaq üçün SSO Kimlik Təsdiqləmə və Tək Təşkilat siyasətləri tələb olunur."
|
||||
},
|
||||
"memberDecryptionOption": {
|
||||
"message": "Üzv şifrə açma seçimləri"
|
||||
@@ -4711,10 +4720,10 @@
|
||||
"message": "Açar Bağlayıcı"
|
||||
},
|
||||
"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."
|
||||
"message": "SSO ilə Giriş etməni, öz-özünə sahiblik edən şifrə açma açar serverinizə bağlayın. Bu seçimi istifadə edərək, üzvlərin anbar verilənlərinin şifrəsini açmaq üçün Ana Parollarını istifadə etməsinə ehtiyac qalmayacaq. Quraşdırma üzrə kömək üçün Bitwarden Dəstək ilə əlaqə saxlayın."
|
||||
},
|
||||
"keyConnectorPolicyRestriction": {
|
||||
"message": "\"Login with SSO and Key Connector Decryption\" is enabled. This policy will only apply to Owners and Admins."
|
||||
"message": "\"SSO və Açar Bağlayıcı Şifrə Açma ilə Giriş\" fəaldır. Bu siyasət yalnız Sahiblər və Adminlər üçün etibarlıdır."
|
||||
},
|
||||
"enabledSso": {
|
||||
"message": "SSO fəaldır"
|
||||
@@ -4765,7 +4774,7 @@
|
||||
"message": "ÖDƏNİŞSİZ sponsorluq"
|
||||
},
|
||||
"formErrorSummaryPlural": {
|
||||
"message": "$COUNT$ fields above need your attention.",
|
||||
"message": "Yuxarıdakı $COUNT$ sahənin diqqətinizə ehtiyacı var.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -4774,10 +4783,10 @@
|
||||
}
|
||||
},
|
||||
"formErrorSummarySingle": {
|
||||
"message": "1 field above needs your attention."
|
||||
"message": "Yuxarıdakı 1 sahənin diqqətinizə ehtiyacı var."
|
||||
},
|
||||
"fieldRequiredError": {
|
||||
"message": "$FIELDNAME$ is required.",
|
||||
"message": "$FIELDNAME$ tələb olunur.",
|
||||
"placeholders": {
|
||||
"fieldname": {
|
||||
"content": "$1",
|
||||
@@ -4786,31 +4795,31 @@
|
||||
}
|
||||
},
|
||||
"required": {
|
||||
"message": "required"
|
||||
"message": "tələb olunur"
|
||||
},
|
||||
"idpSingleSignOnServiceUrlRequired": {
|
||||
"message": "Required if Entity ID is not a URL."
|
||||
"message": "Varlıq Kimliyi bir URL deyilsə tələb olunur."
|
||||
},
|
||||
"openIdOptionalCustomizations": {
|
||||
"message": "Optional Customizations"
|
||||
"message": "İxtiyari Özəlləşdirmələr"
|
||||
},
|
||||
"openIdAuthorityRequired": {
|
||||
"message": "Required if Authority is not valid."
|
||||
"message": "Səlahiyyət etibarlı deyilsə tələb olunur."
|
||||
},
|
||||
"separateMultipleWithComma": {
|
||||
"message": "Separate multiple with a comma."
|
||||
"message": "Vergüllə ayırın."
|
||||
},
|
||||
"sessionTimeout": {
|
||||
"message": "Your session has timed out. Please go back and try logging in again."
|
||||
"message": "Seansınızın vaxtı bitdi. Zəhmət olmasa geri qayıdıb yenidən giriş etməyə cəhd edin."
|
||||
},
|
||||
"exportingPersonalVaultTitle": {
|
||||
"message": "Exporting Personal Vault"
|
||||
"message": "Şəxsi anbarın ixracı"
|
||||
},
|
||||
"exportingOrganizationVaultTitle": {
|
||||
"message": "Exporting Organization Vault"
|
||||
"message": "Təşkilat anbarının ixracı"
|
||||
},
|
||||
"exportingPersonalVaultDescription": {
|
||||
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
|
||||
"message": "Yalnız $EMAIL$ ilə əlaqəli şəxsi anbar elementləri ixrac ediləcək. Təşkilat anbar elementləri daxil edilmir.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -4819,12 +4828,55 @@
|
||||
}
|
||||
},
|
||||
"exportingOrganizationVaultDescription": {
|
||||
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
|
||||
"message": "Yalnız $ORGANIZATION$ ilə əlaqəli təşkilat anbar elementləri ixrac ediləcək. Şəxsi anbar elementləri və digər təşkilatlardan olan elementlər daxil edilmir.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Hesabatlara qayıt"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Yaradıcı"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Nə yaratmaq istəyirsiniz?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Parol növü"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "İstifadəçi adını yenidən yarat"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "İstifadəçi adı yarat"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "İstifadəçi adı növü"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Plyus ünvanlı e-poçt",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "E-poçt təchizatçınızın alt ünvan özəlliklərini istifadə et."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all E-poçt"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Domeninizin konfiqurasiya edilmiş hamısını yaxalama gələn qutusunu istifadə edin."
|
||||
},
|
||||
"random": {
|
||||
"message": "Təsadüfi"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Təsadüfi söz"
|
||||
},
|
||||
"service": {
|
||||
"message": "Xidmət"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Рэдагаваць папку"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Асноўны дамен"
|
||||
"message": "Асноўны дамен",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Хост",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Справаздачы"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Редактиране на папка"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Основен домейн"
|
||||
"message": "Основен домейн",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Име на домейн",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Сървър",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Доклади"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Открийте и отстранете проблемите със защитата на профилите си като щракнете върху докладите по-долу."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Доклад за сайтове без защита"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Всички изпращания"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Достигнат е максималният брой достъпвания"
|
||||
"message": "Достигнат е максималният брой достъпвания",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Предстои изтриване"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Обратно към докладите"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Генератор"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Какво бихте искали да генерирате?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Тип парола"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Повторно генериране на потр. име"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Генериране на потр. име"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Тип потребителско име"
|
||||
},
|
||||
"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": "Използвайте възможностите за под-адресиране на е-поща на своя доставчик."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all Email"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Use your domain's configured catch-all inbox."
|
||||
},
|
||||
"random": {
|
||||
"message": "Произволно"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Произволна дума"
|
||||
},
|
||||
"service": {
|
||||
"message": "Услуга"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "ফোল্ডার সম্পাদনা"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "ভিত্তি ডোমেইন"
|
||||
"message": "ভিত্তি ডোমেইন",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "নিয়ন্ত্রণকর্তা",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,7 +1512,7 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "দুর্বল পাসওয়ার্ডগুলি সহজেই হ্যাকার এবং স্বয়ংক্রিয় সরঞ্জামগুলির দ্বারা অনুমান করা যায় যা পাসওয়ার্ড ক্র্যাক করার জন্য ব্যবহৃত হয়। Bitwarden পাসওয়ার্ড উৎপাদক আপনাকে শক্তিশালী পাসওয়ার্ড তৈরি করতে সহায়তা করতে পারে।"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"pageTitle": {
|
||||
"message": "$APP_NAME$ Web Vault",
|
||||
"message": "$APP_NAME$ Veb Trezor",
|
||||
"description": "The title of the website in the browser window.",
|
||||
"placeholders": {
|
||||
"app_name": {
|
||||
@@ -10,10 +10,10 @@
|
||||
}
|
||||
},
|
||||
"whatTypeOfItem": {
|
||||
"message": "What type of item is this?"
|
||||
"message": "Koja je ovo vrsta stavke?"
|
||||
},
|
||||
"name": {
|
||||
"message": "Name"
|
||||
"message": "Naziv"
|
||||
},
|
||||
"uri": {
|
||||
"message": "URI"
|
||||
@@ -29,139 +29,139 @@
|
||||
}
|
||||
},
|
||||
"newUri": {
|
||||
"message": "New URI"
|
||||
"message": "Novi URI"
|
||||
},
|
||||
"username": {
|
||||
"message": "Username"
|
||||
"message": "Korisničko ime"
|
||||
},
|
||||
"password": {
|
||||
"message": "Password"
|
||||
"message": "Lozinka"
|
||||
},
|
||||
"newPassword": {
|
||||
"message": "New Password"
|
||||
"message": "Nova lozinka"
|
||||
},
|
||||
"passphrase": {
|
||||
"message": "Passphrase"
|
||||
"message": "Tajna fraza"
|
||||
},
|
||||
"notes": {
|
||||
"message": "Notes"
|
||||
"message": "Bilješke"
|
||||
},
|
||||
"customFields": {
|
||||
"message": "Custom Fields"
|
||||
"message": "Prilagođena polja"
|
||||
},
|
||||
"cardholderName": {
|
||||
"message": "Cardholder Name"
|
||||
"message": "Ime vlasnika kartice"
|
||||
},
|
||||
"number": {
|
||||
"message": "Number"
|
||||
"message": "Broj"
|
||||
},
|
||||
"brand": {
|
||||
"message": "Brand"
|
||||
"message": "Brend"
|
||||
},
|
||||
"expiration": {
|
||||
"message": "Expiration"
|
||||
"message": "Datum isteka"
|
||||
},
|
||||
"securityCode": {
|
||||
"message": "Security Code (CVV)"
|
||||
"message": "Sigurnosni Kod (CVV)"
|
||||
},
|
||||
"identityName": {
|
||||
"message": "Identity Name"
|
||||
"message": "Ime identiteta"
|
||||
},
|
||||
"company": {
|
||||
"message": "Company"
|
||||
"message": "Preduzeće"
|
||||
},
|
||||
"ssn": {
|
||||
"message": "Social Security Number"
|
||||
"message": "Broj Socijalnog Osiguranja"
|
||||
},
|
||||
"passportNumber": {
|
||||
"message": "Passport Number"
|
||||
"message": "Broj Pasoša"
|
||||
},
|
||||
"licenseNumber": {
|
||||
"message": "License Number"
|
||||
"message": "Broj Vozačke Dozvole"
|
||||
},
|
||||
"email": {
|
||||
"message": "Email"
|
||||
"message": "Imejl"
|
||||
},
|
||||
"phone": {
|
||||
"message": "Phone"
|
||||
"message": "Telefon"
|
||||
},
|
||||
"january": {
|
||||
"message": "January"
|
||||
"message": "Januar"
|
||||
},
|
||||
"february": {
|
||||
"message": "February"
|
||||
"message": "Februar"
|
||||
},
|
||||
"march": {
|
||||
"message": "March"
|
||||
"message": "Mart"
|
||||
},
|
||||
"april": {
|
||||
"message": "April"
|
||||
},
|
||||
"may": {
|
||||
"message": "May"
|
||||
"message": "Maj"
|
||||
},
|
||||
"june": {
|
||||
"message": "June"
|
||||
"message": "Jun"
|
||||
},
|
||||
"july": {
|
||||
"message": "July"
|
||||
"message": "Jul"
|
||||
},
|
||||
"august": {
|
||||
"message": "August"
|
||||
"message": "Avgust"
|
||||
},
|
||||
"september": {
|
||||
"message": "September"
|
||||
"message": "Septembar"
|
||||
},
|
||||
"october": {
|
||||
"message": "October"
|
||||
"message": "Oktobar"
|
||||
},
|
||||
"november": {
|
||||
"message": "November"
|
||||
"message": "Novembar"
|
||||
},
|
||||
"december": {
|
||||
"message": "December"
|
||||
"message": "Decembar"
|
||||
},
|
||||
"title": {
|
||||
"message": "Title"
|
||||
"message": "Titula"
|
||||
},
|
||||
"mr": {
|
||||
"message": "Mr"
|
||||
"message": "g."
|
||||
},
|
||||
"mrs": {
|
||||
"message": "Mrs"
|
||||
"message": "gđa."
|
||||
},
|
||||
"ms": {
|
||||
"message": "Ms"
|
||||
"message": "gđica."
|
||||
},
|
||||
"dr": {
|
||||
"message": "Dr"
|
||||
"message": "dr"
|
||||
},
|
||||
"expirationMonth": {
|
||||
"message": "Expiration Month"
|
||||
"message": "Mjesec Isteka"
|
||||
},
|
||||
"expirationYear": {
|
||||
"message": "Expiration Year"
|
||||
"message": "Godina Isteka"
|
||||
},
|
||||
"authenticatorKeyTotp": {
|
||||
"message": "Authenticator Key (TOTP)"
|
||||
"message": "Ključ Autentifikatora (TOTP)"
|
||||
},
|
||||
"folder": {
|
||||
"message": "Folder"
|
||||
"message": "Fascikla"
|
||||
},
|
||||
"newCustomField": {
|
||||
"message": "New Custom Field"
|
||||
"message": "Novo Prilagođeno Polje"
|
||||
},
|
||||
"value": {
|
||||
"message": "Value"
|
||||
"message": "Vrijednost"
|
||||
},
|
||||
"dragToSort": {
|
||||
"message": "Drag to sort"
|
||||
"message": "Povuci za sortiranje"
|
||||
},
|
||||
"cfTypeText": {
|
||||
"message": "Text"
|
||||
"message": "Tekst"
|
||||
},
|
||||
"cfTypeHidden": {
|
||||
"message": "Hidden"
|
||||
"message": "Skriveno"
|
||||
},
|
||||
"cfTypeBoolean": {
|
||||
"message": "Boolean"
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -325,65 +330,65 @@
|
||||
"message": "Middle Name"
|
||||
},
|
||||
"lastName": {
|
||||
"message": "Last Name"
|
||||
"message": "Prezime"
|
||||
},
|
||||
"fullName": {
|
||||
"message": "Full Name"
|
||||
"message": "Ime i prezime"
|
||||
},
|
||||
"address1": {
|
||||
"message": "Address 1"
|
||||
"message": "Adresa 1"
|
||||
},
|
||||
"address2": {
|
||||
"message": "Address 2"
|
||||
"message": "Adresa 2"
|
||||
},
|
||||
"address3": {
|
||||
"message": "Address 3"
|
||||
"message": "Adresa 3"
|
||||
},
|
||||
"cityTown": {
|
||||
"message": "City / Town"
|
||||
"message": "Grad / Naselje"
|
||||
},
|
||||
"stateProvince": {
|
||||
"message": "State / Province"
|
||||
"message": "Država / Okrug"
|
||||
},
|
||||
"zipPostalCode": {
|
||||
"message": "Zip / Postal Code"
|
||||
"message": "Zip / Poštanski Broj"
|
||||
},
|
||||
"country": {
|
||||
"message": "Country"
|
||||
"message": "Zemlja"
|
||||
},
|
||||
"shared": {
|
||||
"message": "Shared"
|
||||
"message": "Dijeljeno"
|
||||
},
|
||||
"attachments": {
|
||||
"message": "Attachments"
|
||||
"message": "Prilozi"
|
||||
},
|
||||
"select": {
|
||||
"message": "Select"
|
||||
"message": "Odaberite"
|
||||
},
|
||||
"addItem": {
|
||||
"message": "Add Item"
|
||||
"message": "Dodajte Stavku"
|
||||
},
|
||||
"editItem": {
|
||||
"message": "Edit Item"
|
||||
"message": "Uredite Stavku"
|
||||
},
|
||||
"viewItem": {
|
||||
"message": "View Item"
|
||||
"message": "Prikaz Stavke"
|
||||
},
|
||||
"ex": {
|
||||
"message": "ex.",
|
||||
"message": "npr.",
|
||||
"description": "Short abbreviation for 'example'."
|
||||
},
|
||||
"other": {
|
||||
"message": "Other"
|
||||
"message": "Ostalo"
|
||||
},
|
||||
"share": {
|
||||
"message": "Share"
|
||||
"message": "Podijelite"
|
||||
},
|
||||
"moveToOrganization": {
|
||||
"message": "Move to Organization"
|
||||
"message": "Premjestite u Organizaciju"
|
||||
},
|
||||
"valueCopied": {
|
||||
"message": "$VALUE$ copied",
|
||||
"message": "$VALUE$ kopirano",
|
||||
"description": "Value has been copied to the clipboard.",
|
||||
"placeholders": {
|
||||
"value": {
|
||||
@@ -393,85 +398,85 @@
|
||||
}
|
||||
},
|
||||
"copyValue": {
|
||||
"message": "Copy Value",
|
||||
"message": "Kopirajte Vrijednost",
|
||||
"description": "Copy value to clipboard"
|
||||
},
|
||||
"copyPassword": {
|
||||
"message": "Copy Password",
|
||||
"message": "Kopirajte Lozinku",
|
||||
"description": "Copy password to clipboard"
|
||||
},
|
||||
"copyUsername": {
|
||||
"message": "Copy Username",
|
||||
"message": "Kopirajte Korisničko ime",
|
||||
"description": "Copy username to clipboard"
|
||||
},
|
||||
"copyNumber": {
|
||||
"message": "Copy Number",
|
||||
"message": "Kopirajte broj",
|
||||
"description": "Copy credit card number"
|
||||
},
|
||||
"copySecurityCode": {
|
||||
"message": "Copy Security Code",
|
||||
"message": "Kopirajte Sigurnosni Kod",
|
||||
"description": "Copy credit card security code (CVV)"
|
||||
},
|
||||
"copyUri": {
|
||||
"message": "Copy URI",
|
||||
"message": "Kopirajte URI",
|
||||
"description": "Copy URI to clipboard"
|
||||
},
|
||||
"myVault": {
|
||||
"message": "My Vault"
|
||||
"message": "Moj trezor"
|
||||
},
|
||||
"vault": {
|
||||
"message": "Vault"
|
||||
"message": "Trezor"
|
||||
},
|
||||
"moveSelectedToOrg": {
|
||||
"message": "Move Selected to Organization"
|
||||
"message": "Premjestite Odabrano u Organizaciju"
|
||||
},
|
||||
"deleteSelected": {
|
||||
"message": "Delete Selected"
|
||||
"message": "Obrišite Odabrano"
|
||||
},
|
||||
"moveSelected": {
|
||||
"message": "Move Selected"
|
||||
"message": "Premjestite Odabrano"
|
||||
},
|
||||
"selectAll": {
|
||||
"message": "Select All"
|
||||
"message": "Odaberite Sve"
|
||||
},
|
||||
"unselectAll": {
|
||||
"message": "Unselect All"
|
||||
"message": "Poništite odabir"
|
||||
},
|
||||
"launch": {
|
||||
"message": "Launch"
|
||||
"message": "Pokrenite"
|
||||
},
|
||||
"newAttachment": {
|
||||
"message": "Add New Attachment"
|
||||
"message": "Dodajte Novi Prilog"
|
||||
},
|
||||
"deletedAttachment": {
|
||||
"message": "Deleted attachment"
|
||||
"message": "Izbrisani prilog"
|
||||
},
|
||||
"deleteAttachmentConfirmation": {
|
||||
"message": "Are you sure you want to delete this attachment?"
|
||||
"message": "Sigurno želite izbrisati ovaj prilog?"
|
||||
},
|
||||
"attachmentSaved": {
|
||||
"message": "The attachment has been saved."
|
||||
"message": "Prilog je sačuvan."
|
||||
},
|
||||
"file": {
|
||||
"message": "File"
|
||||
"message": "Datoteka"
|
||||
},
|
||||
"selectFile": {
|
||||
"message": "Select a file."
|
||||
"message": "Odaberite datoteku."
|
||||
},
|
||||
"maxFileSize": {
|
||||
"message": "Maximum file size is 500 MB."
|
||||
"message": "Maksimalna veličina datoteke je 500 MB."
|
||||
},
|
||||
"updateKey": {
|
||||
"message": "You cannot use this feature until you update your encryption key."
|
||||
"message": "Ne možete koristiti ovu uslugu dok ne ažurirate Vaš enkripcioni ključ."
|
||||
},
|
||||
"addedItem": {
|
||||
"message": "Added item"
|
||||
"message": "Stavka Dodata"
|
||||
},
|
||||
"editedItem": {
|
||||
"message": "Edited item"
|
||||
"message": "Stavka uređena"
|
||||
},
|
||||
"movedItemToOrg": {
|
||||
"message": "$ITEMNAME$ moved to $ORGNAME$",
|
||||
"message": "$ITEMNAME$ premješteno u $ORGNAME$",
|
||||
"placeholders": {
|
||||
"itemname": {
|
||||
"content": "$1",
|
||||
@@ -484,7 +489,7 @@
|
||||
}
|
||||
},
|
||||
"movedItemsToOrg": {
|
||||
"message": "Selected items moved to $ORGNAME$",
|
||||
"message": "Odabrane stavke premještene u $ORGNAME$",
|
||||
"placeholders": {
|
||||
"orgname": {
|
||||
"content": "$1",
|
||||
@@ -493,16 +498,16 @@
|
||||
}
|
||||
},
|
||||
"deleteItem": {
|
||||
"message": "Delete Item"
|
||||
"message": "Izbrišite Stavku"
|
||||
},
|
||||
"deleteFolder": {
|
||||
"message": "Delete Folder"
|
||||
"message": "Izbrišite Fasciklu"
|
||||
},
|
||||
"deleteAttachment": {
|
||||
"message": "Delete Attachment"
|
||||
"message": "Izbrišite Prilog"
|
||||
},
|
||||
"deleteItemConfirmation": {
|
||||
"message": "Do you really want to send to the trash?"
|
||||
"message": "Da li zaista želite da obrišete ovu stavku?"
|
||||
},
|
||||
"deletedItem": {
|
||||
"message": "Item sent to trash"
|
||||
@@ -665,16 +670,16 @@
|
||||
"message": "There are no users to list."
|
||||
},
|
||||
"noEventsInList": {
|
||||
"message": "There are no events to list."
|
||||
"message": "Nema događaja za prikaz."
|
||||
},
|
||||
"newOrganization": {
|
||||
"message": "New Organization"
|
||||
"message": "Nova organizacija"
|
||||
},
|
||||
"noOrganizationsList": {
|
||||
"message": "You do not belong to any organizations. Organizations allow you to securely share items with other users."
|
||||
"message": "Ne pripadaš niti jednoj organizaciji. Organizacije omogućuju sigurno dijeljenje stavki s drugim korisnicima."
|
||||
},
|
||||
"versionNumber": {
|
||||
"message": "Version $VERSION_NUMBER$",
|
||||
"message": "Verzija $VERSION_NUMBER$",
|
||||
"placeholders": {
|
||||
"version_number": {
|
||||
"content": "$1",
|
||||
@@ -683,10 +688,10 @@
|
||||
}
|
||||
},
|
||||
"enterVerificationCodeApp": {
|
||||
"message": "Enter the 6 digit verification code from your authenticator app."
|
||||
"message": "Unesite 6-cifreni verifikacioni kod iz aplikacije za autentifikaciju."
|
||||
},
|
||||
"enterVerificationCodeEmail": {
|
||||
"message": "Enter the 6 digit verification code that was emailed to $EMAIL$.",
|
||||
"message": "Unesite 6-cifreni verifikacioni kod poslat na imejl $EMAIL$.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -695,7 +700,7 @@
|
||||
}
|
||||
},
|
||||
"verificationCodeEmailSent": {
|
||||
"message": "Verification email sent to $EMAIL$.",
|
||||
"message": "Imejl za potvrdu poslat na $EMAIL$.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -704,34 +709,34 @@
|
||||
}
|
||||
},
|
||||
"rememberMe": {
|
||||
"message": "Remember me"
|
||||
"message": "Zapamti me"
|
||||
},
|
||||
"sendVerificationCodeEmailAgain": {
|
||||
"message": "Send verification code email again"
|
||||
"message": "Ponovno slanje kontrolnog koda imejlom"
|
||||
},
|
||||
"useAnotherTwoStepMethod": {
|
||||
"message": "Use another two-step login method"
|
||||
"message": "Koristiti drugi način prijave u dva koraka"
|
||||
},
|
||||
"insertYubiKey": {
|
||||
"message": "Insert your YubiKey into your computer's USB port, then touch its button."
|
||||
"message": "Povežite Vaš YubiKey preko USB porta na vašem računaru, pa pritisnite dugme na njemu."
|
||||
},
|
||||
"insertU2f": {
|
||||
"message": "Insert your security key into your computer's USB port. If it has a button, touch it."
|
||||
"message": "Povežite Vaš sigurnosni ključ preko USB porta na Vaš računar. Ukoliko ima dugme, pritisnite ga."
|
||||
},
|
||||
"loginUnavailable": {
|
||||
"message": "Login Unavailable"
|
||||
"message": "Prijava nije dostupna"
|
||||
},
|
||||
"noTwoStepProviders": {
|
||||
"message": "This account has two-step login enabled, however, none of the configured two-step providers are supported by this web browser."
|
||||
"message": "Ovaj račun ima omogućenu prijavu u dva koraka, međutim ovaj web preglednik ne podržava niti jednog konfiguriranog pružatelja prijave u dva koraka."
|
||||
},
|
||||
"noTwoStepProviders2": {
|
||||
"message": "Please use a supported web browser (such as Chrome) and/or add additional providers that are better supported across web browsers (such as an authenticator app)."
|
||||
"message": "Molimo Vas da koristite neki od pretraživača koji su podržani (poput Chrome-a) i/ili dodajte pružaoce usluga čija podrška obuhvata više pretraživača (poput nekih aplikacija za autentifikaciju)."
|
||||
},
|
||||
"twoStepOptions": {
|
||||
"message": "Two-step Login Options"
|
||||
"message": "Mogućnosti prijave u dva koraka"
|
||||
},
|
||||
"recoveryCodeDesc": {
|
||||
"message": "Lost access to all of your two-factor providers? Use your recovery code to disable all two-factor providers from your account."
|
||||
"message": "Izgubljen je pristup uređaju za dvostruku autentifikaciju? Koristite svoj kôd za oporavak za onemogućavanje svih pružatelja usluga dvostruke autentifikacije na tvojem računu."
|
||||
},
|
||||
"recoveryCodeTitle": {
|
||||
"message": "Recovery Code"
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edita la carpeta"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domini base"
|
||||
"message": "Domini base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Nom del domini",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Amfitrió",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Informes"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identifiqueu i tanqueu els forats de seguretat dels comptes en línia fent clic en els informes següents."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Informe de llocs web no segurs"
|
||||
},
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Informe de filtració de dades"
|
||||
"message": "Filtració de dades"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Un \"filtració\" és un incident on les dades dels llocs han estat accessades il·legalment pels pirates informàtics i, posteriorment, es mostren públicament. Reviseu els tipus de dades que han quedat compromeses (adreces de correu electrònic, contrasenyes, targetes de crèdit, etc.) i preneu les mesures adequades, com ara canviar les contrasenyes."
|
||||
"message": "Els comptes filtrats poden exposar la vostra informació personal. Assegureu els comptes filtrats activant la autenticació de dos factors (2FA) o creant contrasenyes més fortes."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Comproveu qualsevol nom d'usuari o adreça electrònica que utilitzeu."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Tots els Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "S'ha assolit el recompte màxim d'accesos"
|
||||
"message": "S'ha assolit el recompte màxim d'accesos",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pendent de supressió"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Torna als informes"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generador"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Què voleu generar?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Tipus de contrasenya"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Regenera el nom d'usuari"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Genera un nom d'usuari"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Tipus de nom d'usuari"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Adreça amb sufix",
|
||||
"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": "Aleatori"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Paraula aleatòria"
|
||||
},
|
||||
"service": {
|
||||
"message": "Servei"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Upravit složku"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Základní doména"
|
||||
"message": "Základní doména",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -301,16 +306,16 @@
|
||||
"message": "Poznámka"
|
||||
},
|
||||
"typeLoginPlural": {
|
||||
"message": "Logins"
|
||||
"message": "Přihlašovací údaje"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "Karty"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "Identity"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "Zabezpečené poznámky"
|
||||
},
|
||||
"folders": {
|
||||
"message": "Složky"
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Hlášení"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Hlášení o nezabezpečených webech"
|
||||
},
|
||||
@@ -2165,7 +2173,7 @@
|
||||
"message": "Zásady"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
"message": "Jednotné přihlášení"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Upravit zásadu"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Všechny Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Dosažen maximální počet přístupů"
|
||||
"message": "Dosažen maximální počet přístupů",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Čeká na smazání"
|
||||
@@ -3884,10 +3893,10 @@
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
"message": "Upravit jakoukoliv kolekci"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
"message": "Odstranit jakoukoliv kolekci"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Spravovat přiřazené kolekce"
|
||||
@@ -3896,7 +3905,7 @@
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
"message": "Spravovat přiřazené kolekce"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Spravovat skupiny"
|
||||
@@ -4184,7 +4193,7 @@
|
||||
"message": "Motiv"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
"message": "Vyberte si šablonu pro váš webový trezor."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Použít systémový motiv"
|
||||
@@ -4229,31 +4238,31 @@
|
||||
"message": "Nastavení poskytovatele"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
"message": "Byli jste pozváni k nastavení nového poskytovatele. Chcete-li pokračovat, musíte se přihlásit nebo vytvořit nový Bitwarden účet."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
"message": "Pro dokončení nastavení poskytovatele, zadejte prosím níže uvedené údaje. Pokud máte nějaké dotazy, kontaktujte zákaznickou podporu."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Jméno poskytovatele"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
"message": "Poskytovatel byl vytvořen."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
"message": "Klienti"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
"message": "Administrátor poskytovatele"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
"message": "Uživatel s nejvyšším oprávněním, který může spravovat všechny aspekty vašeho poskytovatele a také přístup a správu klientských organizací."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
"message": "Servisní uživatel"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
"message": "Servisní uživatelé mohou přistupovat ke všem klientským organizacím a spravovat je."
|
||||
},
|
||||
"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."
|
||||
@@ -4471,7 +4480,7 @@
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
"message": "Formát jména ID"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
@@ -4489,7 +4498,7 @@
|
||||
"message": "Validate certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
"message": "ID subjektu"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Redigér mappe"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Grund-domæne"
|
||||
"message": "Grund-domæne",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domænenavn",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Vært",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Rapporter"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Rapport over ikke-sikrede hjemmesider"
|
||||
},
|
||||
@@ -1474,7 +1482,7 @@
|
||||
"message": "Rapport over afslørede adgangskoder"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Afslørede adgangskoder er adgangskoder, der er blevet afsløret i kendte datalæk og er blevet offentliggjort eller solgt på det mørke web af hackere."
|
||||
"message": "Exposed passwords are passwords have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Afslørede adgangskoder fundet"
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Datalæk rapport"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Et \"læk\" er en hændelse, hvor et websteds data er blevet ulovligt tilgået til af hackere og derefter offentliggjort. Gennemgå de typer af data, der blev kompromitteret (e-mailadresser, adgangskoder, kreditkort osv.) og træf passende foranstaltninger, som f.eks. ændring af adgangskoder."
|
||||
"message": "Et \"læk\" er en hændelse, hvor et websteds data er blevet ulovligt tilgået til af hackere og derefter offentliggjort. Gennemgå de typer af data, der blev kompromitteret (emailadresser, adgangskoder, kreditkort osv.) og træf passende foranstaltninger, som f.eks. ændring af adgangskoder."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Kontroller eventuelle brugernavne eller e-mailadresser, som du bruger."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Alle Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maks. adgangsantal nået"
|
||||
"message": "Maks. adgangsantal nået",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Afventer sletning"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Back to Reports"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Hvad vil du generere?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Adgangskodetype"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Regenerér brugernavn"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Generér brugernavn"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Brugernavnstype"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Plus adresseret e-mail",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Brug e-mailudbyderens underadresseringsmuligheder."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Fang-alle e-mail"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Brug den for domænet opsatte Fang-alle indbakke."
|
||||
},
|
||||
"random": {
|
||||
"message": "Tilfældig"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Tilfældigt ord"
|
||||
},
|
||||
"service": {
|
||||
"message": "Tjeneste"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Ordner bearbeiten"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Basisdomäne"
|
||||
"message": "Basisdomäne",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain-Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Berichte"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identifiziere und schließe Sicherheitslücken in deinen Online-Konten, indem du auf die Berichte unten klickst."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Bericht über ungesicherte Websites"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Alle Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maximale Zugriffsanzahl erreicht"
|
||||
"message": "Maximale Zugriffsanzahl erreicht",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Ausstehende Löschung"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Zurück zu den Berichten"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Was möchtest du generieren?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Passworttyp"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Benutzername neu generieren"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Benutzernamen generieren"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Benutzernamentyp"
|
||||
},
|
||||
"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-E-Mail-Adresse"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Verwenden Sie den konfigurierten Catch-All-Posteingang Ihrer Domain."
|
||||
},
|
||||
"random": {
|
||||
"message": "Zufällig"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Zufälliges Wort"
|
||||
},
|
||||
"service": {
|
||||
"message": "Dienst"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Επεξεργασία Φακέλου"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Βασικός τομέας"
|
||||
"message": "Βασικός τομέας",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Όνομα τομέα",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Διακομιστής",
|
||||
@@ -301,16 +306,16 @@
|
||||
"message": "Ασφαλής Σημείωση"
|
||||
},
|
||||
"typeLoginPlural": {
|
||||
"message": "Logins"
|
||||
"message": "Συνδέσεις"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "Κάρτες"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "Ταυτότητες"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "Ασφαλείς Σημειώσεις"
|
||||
},
|
||||
"folders": {
|
||||
"message": "Φάκελοι"
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Αναφορές"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Προσδιορίστε και κλείστε τα κενά ασφαλείας στους online λογαριασμούς σας κάνοντας κλικ στις παρακάτω αναφορές."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Αναφορά Μη-Ασφαλών Ιστοσελίδων"
|
||||
},
|
||||
@@ -2795,7 +2803,7 @@
|
||||
"message": "Διαγραφή Οργανισμού"
|
||||
},
|
||||
"deletingOrganizationContentWarning": {
|
||||
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
|
||||
"message": "Εισάγετε τον κύριο κωδικό πρόσβασης για να επιβεβαιώσετε τη διαγραφή του $ORGANIZATION$ και όλων των σχετικών δεδομένων. Τα δεδομένα vault στο $ORGANIZATION$ περιλαμβάνουν:",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -2804,10 +2812,10 @@
|
||||
}
|
||||
},
|
||||
"deletingOrganizationActiveUserAccountsWarning": {
|
||||
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
|
||||
"message": "Οι λογαριασμοί χρήστη θα παραμείνουν ενεργοί μετά τη διαγραφή αλλά δεν θα συσχετίζονται πλέον με αυτόν τον οργανισμό."
|
||||
},
|
||||
"deletingOrganizationIsPermanentWarning": {
|
||||
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
|
||||
"message": "Η διαγραφή του $ORGANIZATION$ είναι μόνιμη και μη αναστρέψιμη.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Όλα τα Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Φτάσατε στον μέγιστο αριθμό πρόσβασης"
|
||||
"message": "Φτάσατε στον μέγιστο αριθμό πρόσβασης",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Εκκρεμεί διαγραφή"
|
||||
@@ -4444,16 +4453,16 @@
|
||||
"message": "Λήψη Αιτημάτων Από Το Τελικό Σημείο Πληροφοριών Χρήστη"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένα Πεδία (οριοθετημένα με κόμμα)"
|
||||
"message": "Προσαρμοσμένα Πεδία"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένοι Τύποι Ιδιότητας Χρήστη (οριοθετημένοι με κόμμα)"
|
||||
"message": "Προσαρμοσμένοι Τύποι Ιδιότητας Χρήστη"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένοι Τύποι Διεκδίκησης Email (οριοθετημένοι με κόμμα)"
|
||||
"message": "Προσαρμοσμένοι Τύποι Διεκδίκησης Email"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Πρόσθετο/Προσαρμοσμένος Τύπος Διεκδίκησης Ονόματος (οριοθετημένος με κόμμα)"
|
||||
"message": "Προσαρμοσμένος Τύπος Διεκδίκησης Ονόματος"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Ζητούμενες τιμές αναφοράς κατηγορίας πλαισίου ελέγχου ταυτότητας (acr_values)"
|
||||
@@ -4483,7 +4492,7 @@
|
||||
"message": "Ελάχιστος Εισερχόμενος Αλγόριθμος Υπογραφής"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Υπεγράφη Επιβεβαιώσεις"
|
||||
"message": "Αναμονή υπογεγραμμένων ισχυρισμών"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Επικύρωση Πιστοποιητικών"
|
||||
@@ -4510,10 +4519,10 @@
|
||||
"message": "Να Επιτρέπεται Μη Αιτούμενη Απόκριση Ταυτοποίησης"
|
||||
},
|
||||
"idpAllowOutboundLogoutRequests": {
|
||||
"message": "Allow outbound logout requests"
|
||||
"message": "Να επιτρέπονται αιτήματα εξερχόμενης αποσύνδεσης"
|
||||
},
|
||||
"idpSignAuthenticationRequests": {
|
||||
"message": "Sign authentication requests"
|
||||
"message": "Υπογραφή αιτήσεων ταυτοποίησης"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Οι ρυθμίσεις για απλή σύνδεση αποθηκεύτηκαν."
|
||||
@@ -4765,7 +4774,7 @@
|
||||
"message": "ΔΩΡΕΑΝ με χορηγία"
|
||||
},
|
||||
"formErrorSummaryPlural": {
|
||||
"message": "$COUNT$ fields above need your attention.",
|
||||
"message": "$COUNT$ πεδία παραπάνω χρειάζονται την προσοχή σας.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -4774,10 +4783,10 @@
|
||||
}
|
||||
},
|
||||
"formErrorSummarySingle": {
|
||||
"message": "1 field above needs your attention."
|
||||
"message": "1 πεδίο παραπάνω χρειάζεται την προσοχή σας."
|
||||
},
|
||||
"fieldRequiredError": {
|
||||
"message": "$FIELDNAME$ is required.",
|
||||
"message": "$FIELDNAME$ απαιτείται.",
|
||||
"placeholders": {
|
||||
"fieldname": {
|
||||
"content": "$1",
|
||||
@@ -4786,31 +4795,31 @@
|
||||
}
|
||||
},
|
||||
"required": {
|
||||
"message": "required"
|
||||
"message": "απαιτείται"
|
||||
},
|
||||
"idpSingleSignOnServiceUrlRequired": {
|
||||
"message": "Required if Entity ID is not a URL."
|
||||
"message": "Απαιτείται εάν το ID οντότητας δεν είναι URL."
|
||||
},
|
||||
"openIdOptionalCustomizations": {
|
||||
"message": "Optional Customizations"
|
||||
"message": "Προαιρετικές Προσαρμογές"
|
||||
},
|
||||
"openIdAuthorityRequired": {
|
||||
"message": "Required if Authority is not valid."
|
||||
"message": "Απαιτείται εάν η Αρχή δεν είναι έγκυρη."
|
||||
},
|
||||
"separateMultipleWithComma": {
|
||||
"message": "Separate multiple with a comma."
|
||||
"message": "Διαχωρίστε το πολλαπλάσιο με κόμμα."
|
||||
},
|
||||
"sessionTimeout": {
|
||||
"message": "Έχει λήξει το χρονικό όριο. Παρακαλώ επιστρέψτε και προσπαθήστε να συνδεθείτε ξανά."
|
||||
},
|
||||
"exportingPersonalVaultTitle": {
|
||||
"message": "Exporting Personal Vault"
|
||||
"message": "Εξαγωγή Προσωπικού Vault"
|
||||
},
|
||||
"exportingOrganizationVaultTitle": {
|
||||
"message": "Exporting Organization Vault"
|
||||
"message": "Εξαγωγή Vault Οργανισμού"
|
||||
},
|
||||
"exportingPersonalVaultDescription": {
|
||||
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
|
||||
"message": "Θα εξαχθούν μόνο τα προσωπικά αντικείμενα Vault που σχετίζονται με το $EMAIL$. Τα αντικείμενα Vault οργανισμού δεν θα συμπεριληφθούν.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -4819,12 +4828,55 @@
|
||||
}
|
||||
},
|
||||
"exportingOrganizationVaultDescription": {
|
||||
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
|
||||
"message": "Μόνο το vault οργανισμού που σχετίζεται με το $ORGANIZATION$ θα εξαχθεί. Προσωπικά αντικείμενα και αντικείμενα από άλλους οργανισμούς δεν θα συμπεριληφθούν.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Επιστροφή στις Αναφορές"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Γεννήτρια"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Τι θα θέλατε να δημιουργήσετε;"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Τύπος Κωδικού"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Επαναδημιουργία Ονόματος Χρήστη"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Δημιουργία Ονόματος Χρήστη"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Τύπος Ονόματος Χρήστη"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Συν Διεύθυνση Email",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Χρησιμοποιήστε τις δυνατότητες δευτερεύουσας διεύθυνσης του παρόχου email σας."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all Email"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Χρησιμοποιήστε τα διαμορφωμένα εισερχόμενα catch-all του domain σας."
|
||||
},
|
||||
"random": {
|
||||
"message": "Τυχαίο"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Τυχαία Λέξη"
|
||||
},
|
||||
"service": {
|
||||
"message": "Υπηρεσία"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -3620,7 +3625,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4853,5 +4859,48 @@
|
||||
},
|
||||
"keys": {
|
||||
"message": "Keys"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured websites report"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured websites report"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Redakti dosierujon"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Baza domajno"
|
||||
"message": "Baza domajno",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Gastiganto",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Raportoj"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Raporto pri Nesekurigitaj Retejoj"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Ĉiuj Sendoj"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksimuma alirnombro atingis"
|
||||
"message": "Maksimuma alirnombro atingis",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Atendanta forigo"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Editar carpeta"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Dominio base"
|
||||
"message": "Dominio base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Servidor",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Informes"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Informes de sitios web no seguros"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Todos los Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Número máximo de accesos alcanzado"
|
||||
"message": "Número máximo de accesos alcanzado",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Borrado pendiente"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Muuda kausta"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Baasdomeen"
|
||||
"message": "Baasdomeen",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domeeni nimi",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Raportid"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Ebaturvalise veebilehtede raport"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Kõik Sendid"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksimaalne ligipääsude arv on saavutatud"
|
||||
"message": "Maksimaalne ligipääsude arv on saavutatud",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Kustutamise ootel"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Muokkaa kansiota"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Pääverkkotunnus"
|
||||
"message": "Pääverkkotunnus",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Verkkotunnus",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Isäntä",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Raportit"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Tunnista ja paikkaa verkkopalvelutunnustesi tietoturva-aukkoja painamalla alla olevia raportteja."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Suojaamattomat sivustot"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Sivustojen käyttö suojaamattoman \"http://\" -protokollan välityksellä voi olla vaarallista. Jos sivusto sitä tukee, tulisi sitä aina käyttää \"https://\" -protokollan välityksellä, jolloin yhteytesi on salattu."
|
||||
"message": "Osoitteet, jotka alkavat http://, eivät hyödynnä parasta mahdollista salausta. Vaihda tällaiset kirjatumisosoitteet https://-muotoisiksi turvallisempaa selausta varten."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Suojaamattomia verkkosivustoja löytyi"
|
||||
@@ -1450,7 +1458,7 @@
|
||||
"message": "Tunnusten 2FA-tila"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Kaksivaiheinen kirjautuminen (2FA) on tärkeä suojausasetus, joka auttaa käyttäjätiliesi suojauksessa. Jos sivusto tarjoaa mahdollisuuden kaksivaiheisen kirjautmisen käyttöön, sinun tulisi aina ottaa se käyttöön."
|
||||
"message": "Kaksivaiheinen kirjautuminen (2FA) lisää tileillesi yhden suojaustason. Voit käyttää kaksivaiheiseen kirjautumiseen Bitwarden-todentajaa tai vaihtoehtoisia menetelmiä."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Tunnuksia ilman kaksivaiheista kirjautumista löytyi"
|
||||
@@ -1474,7 +1482,7 @@
|
||||
"message": "Paljastuneet salasanat"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Paljastuneet salasanat ovat salasanoja, jotka on paljastettu julkaistujen tietovuotojen yhteydessä tai joita murtautujat ovat myyneet pimeässä verkossa (dark web)."
|
||||
"message": "Tietovuodoissa paljastuneet salasanat ovat helppoja kohteita hyökkääjille. Vaihda nämä salasanat estääksesi mahdolliset murrot."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Paljastuneita salasanoja löytyi"
|
||||
@@ -1507,7 +1515,7 @@
|
||||
"message": "Heikot salasanat"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Heikot salasanat ovat murtautujien ja automaattisten salasanojen murtotyökalujen helposti arvattavissa. Bitwardenin salasanageneraattori auttaa sinua luomaan vahvoja salasanoja."
|
||||
"message": "Heikot salasanat ovat hyökkääjien helposti arvattavissa. Bitwardenin salasanageneraattorin avulla voit luoda vahvoja salasanoja."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Heikkoja salasanoja löytyi"
|
||||
@@ -1528,7 +1536,7 @@
|
||||
"message": "Toistuvat salasanat"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "Jos käyttämäsi palvelu on vaarantunut, saman salasanan toistuva käyttö muualla voi mahdollistaa murtautujien pääsyn myös muille käyttäjätileillesi. Jokaiselle tilille ja palvelulle tulisi käyttää yksilöllisiä salasanoja."
|
||||
"message": "Samojen salasanojen toistuva käyttö helpottaa hakkereiden pääsyä useille käyttäjätileille. Vaihda kaikki nämä salasanat yksilöllisiksi."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Toistuvia salasanoja löytyi"
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Tietovuodot"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "\"Tietovuoto\" tai \"tietomurto\" on tilanne, jossa murtautujat (hakkerit) ovat laittomasti päässeet käsiksi sivuston suojattuihin tietoihin ja julkaisseet ne tämän jälkeen julkisesti. Tarkista vaarantuneet tiedot (sähköpostiosoitteet, salasanat, maksukortit jne.) ja tee asianmukaiset toimet, kuten salasanan vaihdot."
|
||||
"message": "Murretut tilit saattavat paljastaa henkilötietosi. Suojaa tilit kaksivaiheisella todennuksella tai vahvemmilla salasanoilla."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Tarkista kaikki käyttämäsi käyttäjätunnukset tai sähköpostiosoitteet."
|
||||
@@ -2330,13 +2338,13 @@
|
||||
"message": "Tilin salasana vaihdettu."
|
||||
},
|
||||
"enabledUpdated2fa": {
|
||||
"message": "Kaksivaiheinen kirjautuminen otettu käyttöön/päivitetty."
|
||||
"message": "Kaksivaiheinen kirjautuminen otettiin käyttöön/päivitettiin."
|
||||
},
|
||||
"disabled2fa": {
|
||||
"message": "Kaksivaiheinen kirjautuminen poistettu käytöstä."
|
||||
"message": "Kaksivaiheinen kirjautuminen poistettiin käytöstä."
|
||||
},
|
||||
"recovered2fa": {
|
||||
"message": "Tili vapautettu kaksivaiheisesta kirjautumisesta."
|
||||
"message": "Tili vapautettiin kaksivaiheisesta kirjautumisesta."
|
||||
},
|
||||
"failedLogin": {
|
||||
"message": "Sisäänkirjautumisyritys epäonnistui väärän salasanan vuoksi."
|
||||
@@ -2795,7 +2803,7 @@
|
||||
"message": "Poista organisaatio"
|
||||
},
|
||||
"deletingOrganizationContentWarning": {
|
||||
"message": "Vahvista organisaation $ORGANIZATION$ ja kaikkien sen kohteiden poisto syöttämällä pääsalasanasi. Holvin sisältämiä organisaation $ORGANIZATION$ tietoja ovat:",
|
||||
"message": "Vahvista organisaation $ORGANIZATION$ ja kaikkien sen kohteiden poisto syöttämällä pääsalasanasi. Organisaation $ORGANIZATION$ tiedot holvissa:",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Kaikki Sendit"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Käyttökertojen enimmäismäärä saavutettu"
|
||||
"message": "Käyttökertojen enimmäismäärä saavutettu",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Odottaa poistoa"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Palaa raportteihin"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generaattori"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Mitä haluat luoda?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Salasanan tyyppi"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Luo uusi käyttäjätunnus"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Luo käyttäjätunnus"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Käyttäjätunnuksen tyyppi"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Plus-osoitteinen sähköposti",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Käytä sähköpostipalvelusi aliosoiteominaisuuksia."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all-sähköpostiosoite"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Käytä verkkotunnuksellesi määritettyä catch-all-postilaatikkoa."
|
||||
},
|
||||
"random": {
|
||||
"message": "Satunnainen"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Satunnainen sana"
|
||||
},
|
||||
"service": {
|
||||
"message": "Palvelu"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Modifier le dossier"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domaine de base"
|
||||
"message": "Domaine de base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Nom de domaine",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Hôte",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Rapports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identifiez et fermez les trous de sécurité dans vos comptes en ligne en cliquant sur les rapports ci-dessous."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Rapport sur les sites web non sécurisés"
|
||||
},
|
||||
@@ -1474,7 +1482,7 @@
|
||||
"message": "Rapport sur les mots de passe exposés"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Les mots de passe exposés sont des mots de passe qui ont été découverts lors de fuites de données connues qui ont été rendues publiques ou vendues sur le Web par des pirates informatiques."
|
||||
"message": "Exposed passwords are passwords have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Mots de passe exposés trouvés"
|
||||
@@ -1507,7 +1515,7 @@
|
||||
"message": "Rapport sur les mots de passe faibles"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Les mots de passe faibles peuvent être facilement devinés par des pirates informatiques et des outils automatisés qui sont utilisés pour pirater les mots de passe. Le générateur de mots de passe de Bitwarden peut vous aider à créer des mots de passe forts."
|
||||
"message": "Les mots de passe faibles peuvent être facilement devinés par des pirates informatiques et des outils automatisés qui sont utilisés pour pirater les mots de passe. Le générateur de mots de passe Bitwarden peut vous aider à créer des mots de passe forts."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Mots de passe faibles trouvés"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Tous les Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Nombre maximum d'accès atteint"
|
||||
"message": "Nombre maximum d'accès atteint",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "En attente de suppression"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Retour aux Rapports"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Générateur"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Que souhaitez-vous générer ?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Type de Mot de Passe"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Régénérer le Nom d'Utilisateur"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Générer le Nom d'Utilisateur"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Type de Nom d'Utilisateur"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Courriel Adressé Plus",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Utilisez les capacités de sous-adressage de votre fournisseur de messagerie."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Collecteur d'Email (catch-all)"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Utilisez la boîte de réception du collecteur (catch-all) configurée de votre domaine."
|
||||
},
|
||||
"random": {
|
||||
"message": "Aléatoire"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Mot Aléatoire"
|
||||
},
|
||||
"service": {
|
||||
"message": "Service"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
"message": "אמת או שקר"
|
||||
},
|
||||
"cfTypeLinked": {
|
||||
"message": "Linked",
|
||||
"message": "מקושר",
|
||||
"description": "This describes a field that is 'linked' (related) to another field."
|
||||
},
|
||||
"remove": {
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "ערוך תיקייה"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "שם בסיס הדומיין"
|
||||
"message": "שם בסיס הדומיין",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "שם דומיין",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "מארח",
|
||||
@@ -301,16 +306,16 @@
|
||||
"message": "פתק מאובטח"
|
||||
},
|
||||
"typeLoginPlural": {
|
||||
"message": "Logins"
|
||||
"message": "התחברויות"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "כרטיסים"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "זהויות"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "פתקים מאובטחים"
|
||||
},
|
||||
"folders": {
|
||||
"message": "תיקיות"
|
||||
@@ -328,7 +333,7 @@
|
||||
"message": "שם משפחה"
|
||||
},
|
||||
"fullName": {
|
||||
"message": "Full Name"
|
||||
"message": "שם מלא"
|
||||
},
|
||||
"address1": {
|
||||
"message": "כתובת 1"
|
||||
@@ -367,7 +372,7 @@
|
||||
"message": "ערוך פריט"
|
||||
},
|
||||
"viewItem": {
|
||||
"message": "View Item"
|
||||
"message": "הצג פריט"
|
||||
},
|
||||
"ex": {
|
||||
"message": "לדוגמא",
|
||||
@@ -380,7 +385,7 @@
|
||||
"message": "שתף"
|
||||
},
|
||||
"moveToOrganization": {
|
||||
"message": "Move to Organization"
|
||||
"message": "העברה לארגון"
|
||||
},
|
||||
"valueCopied": {
|
||||
"message": "השדה $VALUE$ הועתק לזיכרון",
|
||||
@@ -423,7 +428,7 @@
|
||||
"message": "כספת"
|
||||
},
|
||||
"moveSelectedToOrg": {
|
||||
"message": "Move Selected to Organization"
|
||||
"message": "העבר בחירה לארגון"
|
||||
},
|
||||
"deleteSelected": {
|
||||
"message": "מחק בחירה"
|
||||
@@ -471,7 +476,7 @@
|
||||
"message": "פריט שנערך"
|
||||
},
|
||||
"movedItemToOrg": {
|
||||
"message": "$ITEMNAME$ moved to $ORGNAME$",
|
||||
"message": "$ITEMNAME$ הועבר ל־$ORGNAME$",
|
||||
"placeholders": {
|
||||
"itemname": {
|
||||
"content": "$1",
|
||||
@@ -484,7 +489,7 @@
|
||||
}
|
||||
},
|
||||
"movedItemsToOrg": {
|
||||
"message": "Selected items moved to $ORGNAME$",
|
||||
"message": "פריטים נבחרים הועברו ל־$ORGNAME$",
|
||||
"placeholders": {
|
||||
"orgname": {
|
||||
"content": "$1",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "דוחות"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "דוח אתרים לא מאובטחים"
|
||||
},
|
||||
@@ -2672,7 +2680,7 @@
|
||||
"message": "שלח הזמנה מחדש"
|
||||
},
|
||||
"resendEmail": {
|
||||
"message": "Resend Email"
|
||||
"message": "שלח מייל בשנית"
|
||||
},
|
||||
"hasBeenReinvited": {
|
||||
"message": "$USER$ הוזמן מחדש.",
|
||||
@@ -2729,10 +2737,10 @@
|
||||
"message": "לא ניתן לאמת את האימייל שלך. נסה לשלוח מייל אימות חדש."
|
||||
},
|
||||
"emailVerificationRequired": {
|
||||
"message": "Email Verification Required"
|
||||
"message": "יש לאמת את כתובת האימייל"
|
||||
},
|
||||
"emailVerificationRequiredDesc": {
|
||||
"message": "You must verify your email to use this feature."
|
||||
"message": "נדרש אישור אימות בדוא\"ל כדי לאפשר שימוש בתכונה זו."
|
||||
},
|
||||
"updateBrowser": {
|
||||
"message": "עדכן דפדפן"
|
||||
@@ -3608,13 +3616,14 @@
|
||||
"message": "כל הSendים"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
"message": "ממתין להסרה"
|
||||
},
|
||||
"expired": {
|
||||
"message": "Expired"
|
||||
"message": "פג תוקף"
|
||||
},
|
||||
"searchSends": {
|
||||
"message": "חיפוש Send",
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Uredi mapu"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Primarna domena"
|
||||
"message": "Primarna domena",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Izvještaji"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Izvještaj neosiguranih web mjesta"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Svi Sendovi"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Dostignut najveći broj pristupanja"
|
||||
"message": "Dostignut najveći broj pristupanja",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Čeka brisanje"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Mappa szerkesztése"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Alap domain"
|
||||
"message": "Alap domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Kiszolgáló",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Jelentések"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Az alábbi jelentésekre kattintva azonosítsuk és zárjuk le a webes kiókjaink biztonsági hiányosságait."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Nem-biztonságos webhelyek jelentés"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Összes küldés"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "A maximális hozzáférések száma elérésre került."
|
||||
"message": "A maximális hozzáférések száma elérésre került.",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Függőben lévő törlés"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Vissza a jelentésekhez"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domain basis"
|
||||
"message": "Domain basis",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Laporan"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Laporan Situs Web Tidak Aman"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Semua Dikirim"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Jumlah akses maksimum tercapai"
|
||||
"message": "Jumlah akses maksimum tercapai",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Penghapusan menunggu keputusan"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Modifica cartella"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Dominio di base"
|
||||
"message": "Dominio di base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Nome dominio",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Resoconti"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identifica e chiudi i problemi di sicurezza dei tuoi account online cliccando sui report in basso."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Resoconto sui siti web non protetti"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Tutti i Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Numero massimo di accessi raggiunto"
|
||||
"message": "Numero massimo di accessi raggiunto",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "In attesa di eliminazione"
|
||||
@@ -4795,7 +4804,7 @@
|
||||
"message": "Personalizzazioni opzionali"
|
||||
},
|
||||
"openIdAuthorityRequired": {
|
||||
"message": "Richiesto se l'autorità non è valida."
|
||||
"message": "Richiesto se l'Authority non è valida."
|
||||
},
|
||||
"separateMultipleWithComma": {
|
||||
"message": "Elenco separato da virgole."
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Torna ai report"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generatore"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Cosa vorresti generare?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Tipo di password"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Rigenera nome utente"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Genera nome utente"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Tipo di nome utente"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Indirizzo email alternativo",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Usa le funzionalità di sub-indirizzamento del tuo fornitore di posta elettronica."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Email catch-all"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Usa la casella di posta catch-all di dominio."
|
||||
},
|
||||
"random": {
|
||||
"message": "Casuale"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Parola casuale"
|
||||
},
|
||||
"service": {
|
||||
"message": "Servizio"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "フォルダーを編集"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "ベースドメイン"
|
||||
"message": "ベースドメイン",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "ドメイン名",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "ホスト",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "レポート"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "以下のレポートをクリックして、オンラインアカウントのセキュリティギャップを特定して修正してください。"
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "非セキュアウェブサイト調査"
|
||||
},
|
||||
@@ -1474,7 +1482,7 @@
|
||||
"message": "流出パスワード調査"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "流出したパスワードとは、クラッカーによりダークウェブ上で公開または販売された既知の流出データに掲載されているパスワードのことです。"
|
||||
"message": "Exposed passwords are passwords have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "流出したパスワードが見つかりました"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "すべての Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "最大アクセス数に達しました"
|
||||
"message": "最大アクセス数に達しました",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "保留中の削除"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "レポートに戻る"
|
||||
},
|
||||
"generator": {
|
||||
"message": "ジェネレーター"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "何を生成しますか?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "パスワードの種類"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "ユーザー名を再生成"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "ユーザー名を生成"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "ユーザー名の種類"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "プラス付きのメールアドレス",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "メールプロバイダのエイリアス機能を使用します。"
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "キャッチオールメール"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "ドメインに設定されたキャッチオール受信トレイを使用します。"
|
||||
},
|
||||
"random": {
|
||||
"message": "ランダム"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "ランダムな単語"
|
||||
},
|
||||
"service": {
|
||||
"message": "サービス"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edit Folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "ಫೋಲ್ಡರ್ ಸಂಪಾದಿಸಿ"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "ಮೂಲ ಡೊಮೇನ್"
|
||||
"message": "ಮೂಲ ಡೊಮೇನ್",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "ಅತಿಥೆಯ",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "ವರದಿಗಳು"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "ಅಸುರಕ್ಷಿತ ವೆಬ್ಸೈಟ್ಗಳ ವರದಿ"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "ಎಲ್ಲಾ ಕಳುಹಿಸುತ್ತದೆ"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದೆ"
|
||||
"message": "ಗರಿಷ್ಠ ಪ್ರವೇಶ ಎಣಿಕೆ ತಲುಪಿದೆ",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "ಅಳಿಸುವಿಕೆ ಬಾಕಿ ಉಳಿದಿದೆ"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "폴더 편집"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "기본 도메인"
|
||||
"message": "기본 도메인",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "호스트",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "보고서"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "안전하지 않은 웹사이트들 보고서"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "모든 Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "최대 접근 횟수 도달"
|
||||
"message": "최대 접근 횟수 도달",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "삭제 대기 중"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Labot mapi"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Pamata domēns"
|
||||
"message": "Pamata domēns",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domēna vārds",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Saimniekdators",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Pārskati"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Noteikt un novērst drošības nepilnības tiešsaistes kontos klikšķinot uz zemāk esošajām atskaitēm."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Nedrošu tīmekļa vietņu pārskats"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Visi \"Send\""
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Sasniegts lielākais pieļaujamais piekļuvju skaits"
|
||||
"message": "Sasniegts lielākais pieļaujamais piekļuvju skaits",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Gaida dzēšanu"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Atgriezties pie atskaitēm"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Veidotājs"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Ko ir nepieciešams izveidot?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Paroles veids"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Pārizveidot lietotājvārdu"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Izveidot lietotājvārdu"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Lietotājvārda veids"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "E-pasta adrese ar plusu",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Izmantot e-pasta pakalpojuma nodrošinātāja apakšadresēšanas spējas."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Visu tveroša e-pasta adrese"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Izmantot uzstādīto domēna visu tverošo iesūtni."
|
||||
},
|
||||
"random": {
|
||||
"message": "Nejauši"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Nejaušs vārds"
|
||||
},
|
||||
"service": {
|
||||
"message": "Pakalpojums"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "ഫോൾഡർ തിരുത്തുക"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "അടിസ്ഥാന ഡൊമെയ്ൻ"
|
||||
"message": "അടിസ്ഥാന ഡൊമെയ്ൻ",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "ഹോസ്റ്റ്",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "റിപ്പോർട്ടുകൾ"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "എല്ലാം Send-കൾ"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Rediger mappen"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Grunndomene"
|
||||
"message": "Grunndomene",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domene",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Vert",
|
||||
@@ -301,16 +306,16 @@
|
||||
"message": "Sikker notis"
|
||||
},
|
||||
"typeLoginPlural": {
|
||||
"message": "Logins"
|
||||
"message": "Innlogginger"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "Kort"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "Identiteter"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "Sikre notater"
|
||||
},
|
||||
"folders": {
|
||||
"message": "Mapper"
|
||||
@@ -671,7 +676,7 @@
|
||||
"message": "Ny organisasjon"
|
||||
},
|
||||
"noOrganizationsList": {
|
||||
"message": "Du tilhører ikke noen organisasjoner. Organisasjoner gjør det mulig for deg å sikkert dele objekter med andre brukere."
|
||||
"message": "Du tilhører ikke noen organisasjoner. Organisasjoner gjør det mulig for deg å trygt dele objekter med andre brukere."
|
||||
},
|
||||
"versionNumber": {
|
||||
"message": "Versjon $VERSION_NUMBER$",
|
||||
@@ -844,10 +849,10 @@
|
||||
"message": "Bekreft eksport av hvelvet"
|
||||
},
|
||||
"exportWarningDesc": {
|
||||
"message": "Eksporten inneholder dine hvelvdataer i et ukryptert format. Du burde ikke lagre eller sende den eksporterte filen over usikre tjenester (f.eks. E-post). Slett det umiddelbart etter at du er ferdig med å bruke dem."
|
||||
"message": "Eksporten inneholder dine hvelvdata i ukryptert format. Du bør ikke lagre eller sende den eksporterte filen over usikre tjenester (som e-post). Slett filen umiddelbart etter at du er ferdig med å bruke den."
|
||||
},
|
||||
"encExportKeyWarningDesc": {
|
||||
"message": "Denne eksporten krypterer dataene dine ved hjelp av kontoen din sin krypteringsnøkkel. Hvis du noen gang endrer krypteringsnøkkelen til kontoen din, bør du eksportere dataene igjen, ettersom du da ikke vil kunne dekryptere denne eksportfilen."
|
||||
"message": "Denne eksporteringen krypterer dataene dine ved hjelp av din kontos krypteringsnøkkel. Hvis du noen gang endrer krypteringsnøkkelen til kontoen din, bør du eksportere dataene igjen, ettersom du da ikke vil kunne dekryptere denne eksportfilen."
|
||||
},
|
||||
"encExportAccountWarningDesc": {
|
||||
"message": "Kontokrypteringsnøkler er unike for hver Bitwarden sin brukerkonto, og du kan ikke importere en kryptert eksport til en annen konto."
|
||||
@@ -868,20 +873,20 @@
|
||||
"message": "Passordgenerator"
|
||||
},
|
||||
"minComplexityScore": {
|
||||
"message": "Minimumspoengsum for kompleksistet"
|
||||
"message": "Minimum kompleksitetscore"
|
||||
},
|
||||
"minNumbers": {
|
||||
"message": "Minst antall numre"
|
||||
"message": "Minste antall sifre"
|
||||
},
|
||||
"minSpecial": {
|
||||
"message": "Minst antall spesialtegn",
|
||||
"message": "Minste antall spesialtegn",
|
||||
"description": "Minimum Special Characters"
|
||||
},
|
||||
"ambiguous": {
|
||||
"message": "Unngå tegn som kan forveksles"
|
||||
"message": "Unngå tvetydige tegn"
|
||||
},
|
||||
"regeneratePassword": {
|
||||
"message": "Omgenerer et passord"
|
||||
"message": "Regenerer passord"
|
||||
},
|
||||
"length": {
|
||||
"message": "Lengde"
|
||||
@@ -890,14 +895,14 @@
|
||||
"message": "Antall ord"
|
||||
},
|
||||
"wordSeparator": {
|
||||
"message": "Ordadskiller"
|
||||
"message": "Orddeler"
|
||||
},
|
||||
"capitalize": {
|
||||
"message": "Stor forbokstav",
|
||||
"description": "Make the first letter of a work uppercase."
|
||||
},
|
||||
"includeNumber": {
|
||||
"message": "Inkluder nummer"
|
||||
"message": "Inkluder siffer"
|
||||
},
|
||||
"passwordHistory": {
|
||||
"message": "Passordhistorikk"
|
||||
@@ -910,16 +915,16 @@
|
||||
"description": "To clear something out. example: To clear browser history."
|
||||
},
|
||||
"accountUpdated": {
|
||||
"message": "Kontoen er oppdatert"
|
||||
"message": "Konto oppdatert"
|
||||
},
|
||||
"changeEmail": {
|
||||
"message": "Endre e-postadresse"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Å fortsette vil endre din kontos e-post adresse. Det vil ikke endre e-postadressen som brukes ved 2-trinnsinnlogging. Du kan endre denne e-postadressen i 2-trinns innloggingsinnstillinger."
|
||||
"message": "Om du fortsetter vil du endre e-postadressen til kontoen din. Det vil ikke endre e-postadressen som brukes ved to-faktorinnlogging. Du kan endre denne e-postadressen i to-trinns innloggingsinnstillinger."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Ny E-postadresse"
|
||||
"message": "Ny e-postadresse"
|
||||
},
|
||||
"code": {
|
||||
"message": "Kode"
|
||||
@@ -937,13 +942,13 @@
|
||||
"message": "Å fortsette vil logge deg ut av din nåværende økt, og krever at du logger deg på igjen. Aktive økter på andre enheter kan forbli aktive i opptil en time."
|
||||
},
|
||||
"emailChanged": {
|
||||
"message": "E-postadressen er endret"
|
||||
"message": "E-postadressen endret"
|
||||
},
|
||||
"logBackIn": {
|
||||
"message": "Vennligst logg på igjen."
|
||||
},
|
||||
"logBackInOthersToo": {
|
||||
"message": "Vennligst logg inn på nytt. Dersom du bruker andre Bitwarden-apper og -programmer, logg av og på på dem også."
|
||||
"message": "Vennligst logg inn på nytt. Dersom du bruker andre Bitwarden-applikasjoner logg av og på på dem også."
|
||||
},
|
||||
"changeMasterPassword": {
|
||||
"message": "Endre hovedpassordet"
|
||||
@@ -967,7 +972,7 @@
|
||||
"message": "KDF-algoritme"
|
||||
},
|
||||
"kdfIterations": {
|
||||
"message": "KDF-gjentakelser"
|
||||
"message": "KDF-iterasjoner"
|
||||
},
|
||||
"kdfIterationsDesc": {
|
||||
"message": "Flere KDF-gjentakelser kan hjelpe til med å beskytte superpassordet fra å bli tvunget inn i av en angriper. Vi anbefaler en verdi på $VALUE$ eller mer.",
|
||||
@@ -991,7 +996,7 @@
|
||||
"message": "Endre KDF"
|
||||
},
|
||||
"encKeySettingsChanged": {
|
||||
"message": "Krypteringsnøkkelinnstillingene har blitt endret"
|
||||
"message": "Krypteringsnøkkelinnstillingene endret"
|
||||
},
|
||||
"dangerZone": {
|
||||
"message": "Faresone"
|
||||
@@ -1003,19 +1008,19 @@
|
||||
"message": "Fjern autorisering av økter"
|
||||
},
|
||||
"deauthorizeSessionsDesc": {
|
||||
"message": "Er du bekymret for at kontoen din er pålogget på en annen enhet? Fortsett nedenfor for å fjerne autoriseringen til alle datamaskiner eller enheter som du tidligere har brukt. Dette sikkerhetstrinnet er anbefalt dersom du tidligere har brukt en offentlig PC eller lagret passordet ditt ved et uhell på en enhet som ikke er din. Dette trinnet vil også fjerne alle tidligere huskede 2-trinnsinnloggingsøkter."
|
||||
"message": "Er du bekymret for at kontoen din er pålogget på en annen enhet? Fortsett nedenfor for å fjerne autoriseringen til alle datamaskiner eller enheter som du tidligere har brukt. Dette sikkerhetstrinnet er anbefalt dersom du tidligere har brukt en offentlig datamaskin eller lagret passordet ditt ved et uhell på en enhet som ikke er din. Dette vil også fjerne alle tidligere huskede 2-trinnsinnloggingsøkter."
|
||||
},
|
||||
"deauthorizeSessionsWarning": {
|
||||
"message": "Å fortsette vil også logge deg av din nåværende økt, og gjør at du vil måtte logge på igjen. Du vil også bli bedt om 2-trinnsinnlogging igjen, dersom det er aktivert. Aktive økter på andre enheter kan kanskje forbli aktive i opptil en time."
|
||||
},
|
||||
"sessionsDeauthorized": {
|
||||
"message": "Alle økter har mistet autoriseringen"
|
||||
"message": "Fjernet autoriseringen fra alle økter"
|
||||
},
|
||||
"purgeVault": {
|
||||
"message": "Tøm hvelvet"
|
||||
},
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Tømte organisasjonens hvelv."
|
||||
"message": "Organisasjonens hvelv tømt."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Hvelv tilgjengelig av leverandør."
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Rapporter"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identifiser og løs sikkerhetsavvik i kontoene dine på nettet ved å klikke på rapportene nedenfor."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Rapport om usikrede nettsteder"
|
||||
},
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Databruddrapporter"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Et \"databrudd\" er en hendelse hvor hackere har fått tilgang til et nettsteds dataer på ulovlig vis og så sluppet dem ut i offentlighet. Gå gjennom datatypene som ble kompromittert (E-postadresser, passord, bankkort, osv.) og ta handling deretter, slik som å endre passord."
|
||||
"message": "Kontoer som har blitt avslørt kan lekke personlig informasjon. Gjør kontoene tryggere ved å aktivere 2FA eller ved å lage et sterkere passord."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Sjekk noen av brukernavnene eller E-postadressene som du bruker."
|
||||
@@ -1685,7 +1693,7 @@
|
||||
"message": "Utvidelser"
|
||||
},
|
||||
"premiumAccess": {
|
||||
"message": "Premium tilgang"
|
||||
"message": "Premium-tilgang"
|
||||
},
|
||||
"premiumAccessDesc": {
|
||||
"message": "Du kan gi Premium-tilgang til alle brukere i din organisasjon for $PRICE$ /$INTERVAL$.",
|
||||
@@ -2717,7 +2725,7 @@
|
||||
"message": "Bekreft din kontos E-postadresse for å få tilgang til alle egenskapene."
|
||||
},
|
||||
"verifyEmailFirst": {
|
||||
"message": "Din kontos E-postadresse må først bli verifisert."
|
||||
"message": "E-postadressen til kontoen din må verifiseres først."
|
||||
},
|
||||
"checkInboxForVerification": {
|
||||
"message": "Se etter i din E-postkontos innboks for en verifiseringslenke."
|
||||
@@ -2729,10 +2737,10 @@
|
||||
"message": "Klarte ikke å bekrefte E-postadressen din. Prøv å sende en ny bekreftelses-E-post."
|
||||
},
|
||||
"emailVerificationRequired": {
|
||||
"message": "E-postbekreftelse kreves"
|
||||
"message": "Bekreftelse av e-post nødvendig"
|
||||
},
|
||||
"emailVerificationRequiredDesc": {
|
||||
"message": "Du må bekrefte e-posten din for å bruke denne funksjonen."
|
||||
"message": "Du må bekrefte e-postadressen din for å bruke denne funksjonen."
|
||||
},
|
||||
"updateBrowser": {
|
||||
"message": "Oppdater nettleseren"
|
||||
@@ -2795,7 +2803,7 @@
|
||||
"message": "Slett organisasjonen"
|
||||
},
|
||||
"deletingOrganizationContentWarning": {
|
||||
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
|
||||
"message": "Skriv inn hovedpassordet for å bekrefte sletting av $ORGANIZATION$ og alle tilknyttede data. Data i hvelvet i $ORGANIZATION$ inkluderer:",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -2804,10 +2812,10 @@
|
||||
}
|
||||
},
|
||||
"deletingOrganizationActiveUserAccountsWarning": {
|
||||
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
|
||||
"message": "Brukerkontoer vil forbli aktive etter sletting, men vil ikke lenger knyttes til denne organisasjonen."
|
||||
},
|
||||
"deletingOrganizationIsPermanentWarning": {
|
||||
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
|
||||
"message": "Sletting av $ORGANIZATION$ er permanent og kan ikke angres.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Alle Send-er"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksimalt antall tilganger nådd"
|
||||
"message": "Maksimalt antall tilganger nådd",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Venter på sletting"
|
||||
@@ -3644,14 +3653,14 @@
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"noSendsInList": {
|
||||
"message": "There are no Sends to list.",
|
||||
"message": "Det er ingen Sends å vise.",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"emergencyAccess": {
|
||||
"message": "Nødtilgang"
|
||||
},
|
||||
"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."
|
||||
"message": "Gi og behandle nødstilgang for betrodde kontakter. Pålitelige kontakter kan be om tilgang til enten vis eller overta kontoen din i tilfelle en nødssituasjon. Besøk vår hjelpeside for mer informasjon og detaljer om hvordan null-kunnskapsdeling fungerer."
|
||||
},
|
||||
"emergencyAccessOwnerWarning": {
|
||||
"message": "Du er en eier av en eller flere organisasjoner. Hvis du gir deg tilgang til en nødkontakt, vil de kunne bruke alle dine rettigheter som eier etter at du har gått over."
|
||||
@@ -3799,17 +3808,17 @@
|
||||
"message": "Organisasjonens eiere og administratorer er unntatt fra denne policyens håndheving."
|
||||
},
|
||||
"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."
|
||||
"message": "På grunn av en virksomhetsregel er du begrenset fra å lagre gjenstander til ditt personlige hvelv. Endre eierskapet til en organisasjon og velg blant tilgjengelige samlinger."
|
||||
},
|
||||
"disableSend": {
|
||||
"message": "Deaktiver Send"
|
||||
},
|
||||
"disableSendPolicyDesc": {
|
||||
"message": "Do not allow users to create or edit a Bitwarden Send. Deleting an existing Send is still allowed.",
|
||||
"message": "Ikke tillat brukere å opprette eller redigere en Bitwarden Send. Å slette en eksisterende Send er fortsatt tillatt.",
|
||||
"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."
|
||||
"message": "Organisasjonsbrukere som kan håndtere organisasjonens regler, er unntatt fra håndheving av denne reglen."
|
||||
},
|
||||
"sendDisabled": {
|
||||
"message": "Send deaktivert",
|
||||
@@ -3824,21 +3833,21 @@
|
||||
"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.",
|
||||
"message": "Angi alternativer for oppretting og redigering av 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."
|
||||
"message": "Organisasjonsbrukere som kan håndtere organisasjonens regler, er unntatt fra håndheving av denne reglen."
|
||||
},
|
||||
"disableHideEmail": {
|
||||
"message": "Do not allow users to hide their email address from recipients when creating or editing a Send.",
|
||||
"message": "Ikke tillat brukere å skjule sin e-postadresse fra mottakere når de oppretter eller redigerer en 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:"
|
||||
"message": "Følgende organisasjonspolicyer er for tiden i virkning:"
|
||||
},
|
||||
"sendDisableHideEmailInEffect": {
|
||||
"message": "Users are not allowed to hide their email address from recipients when creating or editing a Send.",
|
||||
"message": "Brukere kan ikke skjule sin e-postadresse fra mottakere når de oppretter eller redigerer en Send.",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"modifiedPolicyId": {
|
||||
@@ -4441,28 +4450,28 @@
|
||||
"message": "OIDC omdirigerer oppførsel"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get claims from user info endpoint"
|
||||
"message": "Hent claims fra endpoint for brukeropplysninger"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Custom Scopes"
|
||||
"message": "Egendefinerte Scopes"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Custom User ID Claim Types"
|
||||
"message": "Egendefinerte bruker-ID Claim-typer"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Email Claim Types"
|
||||
"message": "E-post Claim-typer"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Custom Name Claim Types"
|
||||
"message": "Egendefinerte navne claim-typer"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values"
|
||||
"message": "Bedt om verdier for Authentication Context Class Reference"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response"
|
||||
"message": "Forventet \"acr\"-claimverdi i svar"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
"message": "SP Enhets-ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "'SAML 2.0'-metadata-URL"
|
||||
@@ -4474,16 +4483,16 @@
|
||||
"message": "Navne-ID-format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
"message": "Utgående signeringsalgoritme"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
"message": "Signeringsatferd"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
"message": "Minimum innkommende signeringsalgoritme"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Expect signed assertions"
|
||||
"message": "Forvent signerte assertions"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Valider sertifikater"
|
||||
@@ -4492,49 +4501,49 @@
|
||||
"message": "Enhets-ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
"message": "Bindingstype"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
"message": "Single Sign-On tjeneste URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
"message": "Single Log Out-tjeneste URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 offentlig sertifikat"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
"message": "Utgående signeringsalgoritme"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow unsolicited authentication response"
|
||||
"message": "Tillat uoppfordret godkjennelsessvar"
|
||||
},
|
||||
"idpAllowOutboundLogoutRequests": {
|
||||
"message": "Allow outbound logout requests"
|
||||
"message": "Tillat utgående utloggingsforespørsler"
|
||||
},
|
||||
"idpSignAuthenticationRequests": {
|
||||
"message": "Sign authentication requests"
|
||||
"message": "Signér autentiseringsforespørseler"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
"message": "Single Sign-On konfigurasjon ble lagret."
|
||||
},
|
||||
"sponsoredFamilies": {
|
||||
"message": "Free Bitwarden Families"
|
||||
"message": "Gratis Bitwarden Familier"
|
||||
},
|
||||
"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."
|
||||
"message": "Du og din familie er kvalifisert for Free Bitwarden Familier. Løs inn med din personlige e-post for å holde dataene dine sikre, selv om du ikke er på jobb."
|
||||
},
|
||||
"sponsoredFamiliesEligibleCard": {
|
||||
"message": "Redeem your Free Bitwarden for Families plan today to keep your data secure even when you are not at work."
|
||||
"message": "Løs inn din Free Bitwarden for Familier-abonnement i dag for å holde dataene sikre, selv om du ikke er på jobb."
|
||||
},
|
||||
"sponsoredFamiliesInclude": {
|
||||
"message": "The Bitwarden for Families plan include"
|
||||
"message": "Bitwarden for familier-abonnementet inkluderer"
|
||||
},
|
||||
"sponsoredFamiliesPremiumAccess": {
|
||||
"message": "Premium access for up to 6 users"
|
||||
"message": "Premiumtilgang for opptil 6 brukere"
|
||||
},
|
||||
"sponsoredFamiliesSharedCollections": {
|
||||
"message": "Shared collections for Family secrets"
|
||||
"message": "Delte samlinger til familie-hemmeligheter"
|
||||
},
|
||||
"badToken": {
|
||||
"message": "Lenken er ikke lenger gyldig. Vennligst ha sponsor på nytt tilbudet."
|
||||
@@ -4564,10 +4573,10 @@
|
||||
"message": "Du har blitt tilbudt en gratis Bitwarden Familier Planlegg-organisasjon. For å fortsette må du logge inn på kontoen som mottok tilbudet."
|
||||
},
|
||||
"sponsoredFamiliesAcceptFailed": {
|
||||
"message": "Unable to accept offer. Please resend the offer email from your enterprise account and try again."
|
||||
"message": "Tilbudet kan ikke godtas. Vennligst send tilbuds-e-posten fra din virksomhetskonto, og forsøk igen."
|
||||
},
|
||||
"sponsoredFamiliesAcceptFailedShort": {
|
||||
"message": "Unable to accept offer. $DESCRIPTION$",
|
||||
"message": "Kan ikke godta tilbudet. $DESCRIPTION$",
|
||||
"placeholders": {
|
||||
"description": {
|
||||
"content": "$1",
|
||||
@@ -4576,19 +4585,19 @@
|
||||
}
|
||||
},
|
||||
"sponsoredFamiliesOffer": {
|
||||
"message": "Accept Free Bitwarden Families"
|
||||
"message": "Aksepter gratis Bitwarden Familier"
|
||||
},
|
||||
"sponsoredFamiliesOfferRedeemed": {
|
||||
"message": "Free Bitwarden Families offer successfully redeemed"
|
||||
"message": "Gratis Bitwarden Familier-tilbud er innløst"
|
||||
},
|
||||
"redeemed": {
|
||||
"message": "Innløst"
|
||||
},
|
||||
"redeemedAccount": {
|
||||
"message": "Redeemed Account"
|
||||
"message": "Konto innløst"
|
||||
},
|
||||
"revokeAccount": {
|
||||
"message": "Revoke account $NAME$",
|
||||
"message": "Opphev konto $NAME$",
|
||||
"placeholders": {
|
||||
"name": {
|
||||
"content": "$1",
|
||||
@@ -4597,7 +4606,7 @@
|
||||
}
|
||||
},
|
||||
"resendEmailLabel": {
|
||||
"message": "Resend Sponsorship email to $NAME$ sponsorship",
|
||||
"message": "Send sponsorat-e-post til $NAME$ sponsorat på nytt",
|
||||
"placeholders": {
|
||||
"name": {
|
||||
"content": "$1",
|
||||
@@ -4606,7 +4615,7 @@
|
||||
}
|
||||
},
|
||||
"freeFamiliesPlan": {
|
||||
"message": "Free Families Plan"
|
||||
"message": "Gratis Familier-abonnement"
|
||||
},
|
||||
"redeemNow": {
|
||||
"message": "Løs inn nå"
|
||||
@@ -4615,13 +4624,13 @@
|
||||
"message": "Mottaker"
|
||||
},
|
||||
"removeSponsorship": {
|
||||
"message": "Remove Sponsorship"
|
||||
"message": "Fjern sponsorat"
|
||||
},
|
||||
"removeSponsorshipConfirmation": {
|
||||
"message": "After removing a sponsorship, you will be responsible for this subscription and related invoices. Are you sure you want to continue?"
|
||||
"message": "Etter å ha fjernet en sponsor, vil du være ansvarlig for dette abonnementet og relaterte fakturaer. Er du sikker på at du vil fortsette?"
|
||||
},
|
||||
"sponsorshipCreated": {
|
||||
"message": "Sponsorship Created"
|
||||
"message": "Sponsor fjernet"
|
||||
},
|
||||
"revoke": {
|
||||
"message": "Tilbakekall"
|
||||
@@ -4630,7 +4639,7 @@
|
||||
"message": "E-post sendt"
|
||||
},
|
||||
"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?"
|
||||
"message": "Etter at kontoen er fjernet, vil Familier-organisasjonens eier bli ansvarlig for dette abonnementet og relaterede fakturaer. Er du sikker på at du vil fortsette?"
|
||||
},
|
||||
"removeSponsorshipSuccess": {
|
||||
"message": "Sponsor fjernet"
|
||||
@@ -4714,7 +4723,7 @@
|
||||
"message": "Koble innlogging med SSO til din selvbetjente dekrypteringsnøkkelserver. Bruk av dette valget vil ikke medlemmer trenge å bruke Master Passwords for å dekryptere hvelvdataene. Kontakt Bitwarden Support for å lage hjelp."
|
||||
},
|
||||
"keyConnectorPolicyRestriction": {
|
||||
"message": "\"Login with SSO and Key Connector Decryption\" is enabled. This policy will only apply to Owners and Admins."
|
||||
"message": "\"Logg inn med SSO og Key Connector Decryption\" er aktivert. Denne policyen gjelder bare for eiere og administratorer."
|
||||
},
|
||||
"enabledSso": {
|
||||
"message": "Skrudde på SSO"
|
||||
@@ -4723,49 +4732,49 @@
|
||||
"message": "Skrudde av SSO"
|
||||
},
|
||||
"enabledKeyConnector": {
|
||||
"message": "Enabled Key Connector"
|
||||
"message": "Key Connector aktivert"
|
||||
},
|
||||
"disabledKeyConnector": {
|
||||
"message": "Disabled Key Connector"
|
||||
"message": "Key Connector deaktivert"
|
||||
},
|
||||
"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."
|
||||
"message": "Når medlemmer begynner å bruke Key Connector, kan ikke organisasjonen din gå tilbake til hovedpassord-dekryptering. Fortsett kun dersom du er fortrolig med å implementere og administrere en nøkkelserver."
|
||||
},
|
||||
"migratedKeyConnector": {
|
||||
"message": "Migrated to Key Connector"
|
||||
"message": "Migrert til 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. "
|
||||
"message": "Angi en betalingsmetode som skal knyttes til organisationen. Ta det med ro, vi vil ikke belaste deg med mindre du velger ytterligere funksjoner, eller at ditt sponsorat går ut. "
|
||||
},
|
||||
"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."
|
||||
"message": "Sponsortilbuddet er utgått. Du kan slette organisasjonen du har opprettet for at unngå belastning ved utgangen av din 7-dagers prøveperiode. Ellers kan du lukke denne meldingen for å beholde organisasjonen og påta deg faktureringsansvaret."
|
||||
},
|
||||
"newFamiliesOrganization": {
|
||||
"message": "New Families Organization"
|
||||
"message": "Ny Familier-organisation"
|
||||
},
|
||||
"acceptOffer": {
|
||||
"message": "Aksepter tilbudet"
|
||||
},
|
||||
"sponsoringOrg": {
|
||||
"message": "Sponsoring Organization"
|
||||
"message": "Sponsende organisasjon"
|
||||
},
|
||||
"keyConnectorTest": {
|
||||
"message": "Test"
|
||||
},
|
||||
"keyConnectorTestSuccess": {
|
||||
"message": "Success! Key Connector reached."
|
||||
"message": "Suksess! Key Connector nådd."
|
||||
},
|
||||
"keyConnectorTestFail": {
|
||||
"message": "Cannot reach Key Connector. Check URL."
|
||||
"message": "Kan ikke nå Key Connector. Sjekk URL."
|
||||
},
|
||||
"sponsorshipTokenHasExpired": {
|
||||
"message": "The sponsorship offer has expired."
|
||||
"message": "Sponsoratet er utgått."
|
||||
},
|
||||
"freeWithSponsorship": {
|
||||
"message": "FREE with sponsorship"
|
||||
"message": "GRATIS med sponsorat"
|
||||
},
|
||||
"formErrorSummaryPlural": {
|
||||
"message": "$COUNT$ fields above need your attention.",
|
||||
"message": "$COUNT$ felt trenger din oppmerksomhet.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -4774,10 +4783,10 @@
|
||||
}
|
||||
},
|
||||
"formErrorSummarySingle": {
|
||||
"message": "1 field above needs your attention."
|
||||
"message": "1 felt ovenfor trenger din oppmerksomhet."
|
||||
},
|
||||
"fieldRequiredError": {
|
||||
"message": "$FIELDNAME$ is required.",
|
||||
"message": "$FIELDNAME$ er obligatorisk.",
|
||||
"placeholders": {
|
||||
"fieldname": {
|
||||
"content": "$1",
|
||||
@@ -4786,31 +4795,31 @@
|
||||
}
|
||||
},
|
||||
"required": {
|
||||
"message": "required"
|
||||
"message": "obligatorisk"
|
||||
},
|
||||
"idpSingleSignOnServiceUrlRequired": {
|
||||
"message": "Required if Entity ID is not a URL."
|
||||
"message": "Kreves hvis enhets-ID ikke er en URL."
|
||||
},
|
||||
"openIdOptionalCustomizations": {
|
||||
"message": "Optional Customizations"
|
||||
"message": "Valgfrie tilpasninger"
|
||||
},
|
||||
"openIdAuthorityRequired": {
|
||||
"message": "Required if Authority is not valid."
|
||||
},
|
||||
"separateMultipleWithComma": {
|
||||
"message": "Separate multiple with a comma."
|
||||
"message": "Avskill flere med komma."
|
||||
},
|
||||
"sessionTimeout": {
|
||||
"message": "Your session has timed out. Please go back and try logging in again."
|
||||
"message": "Økten ble tidsavbrutt. Vennligst gå tilbake og prøv å logge inn på nytt."
|
||||
},
|
||||
"exportingPersonalVaultTitle": {
|
||||
"message": "Exporting Personal Vault"
|
||||
"message": "Eksporterer personlig hvelv"
|
||||
},
|
||||
"exportingOrganizationVaultTitle": {
|
||||
"message": "Exporting Organization Vault"
|
||||
"message": "Eksporterer organisasjonshvelv"
|
||||
},
|
||||
"exportingPersonalVaultDescription": {
|
||||
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
|
||||
"message": "Bare de personlige hvelvets gjenstandene som er knyttet til $EMAIL$ vil bli eksportert. Organisasjonshvelvets gjenstander vil ikke bli inkludert.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -4819,12 +4828,55 @@
|
||||
}
|
||||
},
|
||||
"exportingOrganizationVaultDescription": {
|
||||
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
|
||||
"message": "Bare organisasjonens hvelv knyttet til $ORGANIZATION$ vil bli eksportert. Personlige hvelvelementer og gjenstander fra andre organisasjoner vil ikke bli inkludert.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Tilbake til rapporter"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Hva vil du generere?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Passordtype"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Regenerer Brukernavn"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Generer brukernavn"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Brukernavntype"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Pluss-adressert e-post",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Bruk e-posttilbyderens sub-adresseringsmuligheter."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all e-post"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Bruk domenets konfigurerte catch-all innboks."
|
||||
},
|
||||
"random": {
|
||||
"message": "Vilkårlig"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Vilkårlig ord"
|
||||
},
|
||||
"service": {
|
||||
"message": "Tjeneste"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Map bewerken"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Basisdomein"
|
||||
"message": "Basisdomein",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domeinnaam",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Hostnaam",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Rapportages"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identificeer en sluit beveiligingsgaten in je online accounts door op onderstaande rapporten te klikken."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Niet-beveiligde websites"
|
||||
},
|
||||
@@ -1447,7 +1455,7 @@
|
||||
"message": "Geen items in je kluis met onbeveiligde URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Niet-geactiveerde 2FA"
|
||||
"message": "Tweestapsaanmelding"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Tweestapsaanmelding (2FA) is een belangrijke instelling die bijdraagt aan de beveiliging van je accounts. Als de website het ondersteunt, zou je altijd tweestapsaanmelding moeten gebruiken."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Alle Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maximum aantal keren benaderd"
|
||||
"message": "Maximum aantal keren benaderd",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Wordt verwijderd"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Terug naar rapporten"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Wat wil je genereren?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Type wachtwoord"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Gebruikersnaam opnieuw genereren"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Gebruikersnaam genereren"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Type gebruikersnaam"
|
||||
},
|
||||
"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 e-mail"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Use your domain's configured catch-all inbox."
|
||||
},
|
||||
"random": {
|
||||
"message": "Willekeurig"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Willekeurig woord"
|
||||
},
|
||||
"service": {
|
||||
"message": "Dienst"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Rediger mappe"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Grunndomene"
|
||||
"message": "Grunndomene",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Edytuj folder"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domena podstawowa"
|
||||
"message": "Domena podstawowa",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Nazwa domeny",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Raporty"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Zidentyfikuj i napraw luki bezpieczeństwa na swoich kontach online, klikając raporty poniżej."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Raport niezabezpieczonych stron"
|
||||
"message": "Niezabezpieczone witryny"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Korzystanie z 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."
|
||||
"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"
|
||||
@@ -1471,7 +1479,7 @@
|
||||
"message": "Instrukcje"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Raport ujawnionych haseł"
|
||||
"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."
|
||||
@@ -1504,7 +1512,7 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Raport słabych haseł"
|
||||
"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."
|
||||
@@ -1528,7 +1536,7 @@
|
||||
"message": "Raport identycznych haseł"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "Jeśli korzystasz z 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. Używaj unikalnych haseł dla każdego z kont lub usług."
|
||||
"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"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Wszystkie wysyłki"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksymalna liczba dostępów została osiągnięta"
|
||||
"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"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Editar Pasta"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domínio de base"
|
||||
"message": "Domínio de base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Servidor",
|
||||
@@ -304,13 +309,13 @@
|
||||
"message": "Logins"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "Cartões"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "Identidades"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "Notas Seguras"
|
||||
},
|
||||
"folders": {
|
||||
"message": "Pastas"
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Relatórios"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Relatório de Sites Inseguros"
|
||||
},
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Relatório de Violação de Dados"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Uma \"violação\" é um incidente em que os dados de um site foram acessados ilegalmente por hackers e liberados publicamente. Revise os tipos de dados que foram comprometidos (endereços de e-mail, senhas, cartões de crédito etc.) e tome as medidas adequadas, como a alteração de senhas."
|
||||
"message": "Uma \"brecha\" é um incidente em que os dados de um site foram acessados ilegalmente por hackers e liberados publicamente. Revise os tipos de dados que foram comprometidos (endereços de e-mail, senhas, cartões de crédito etc.) e tome as medidas adequadas, como a alteração de senhas."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Verifique qualquer nome de usuário ou endereço de e-mail que você usa."
|
||||
@@ -2795,7 +2803,7 @@
|
||||
"message": "Excluir Organização"
|
||||
},
|
||||
"deletingOrganizationContentWarning": {
|
||||
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
|
||||
"message": "Digite a senha mestra para confirmar a exclusão de $ORGANIZATION$ e todos os dados associados. Os dados do cofre no $ORGANIZATION$ incluem:",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -2804,10 +2812,10 @@
|
||||
}
|
||||
},
|
||||
"deletingOrganizationActiveUserAccountsWarning": {
|
||||
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
|
||||
"message": "As contas de usuários permanecerão ativas após a exclusão, mas não estarão mais associadas a essa organização."
|
||||
},
|
||||
"deletingOrganizationIsPermanentWarning": {
|
||||
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
|
||||
"message": "A exclusão de $ORGANIZATION$ é permanente e irreversível.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Todos os Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Número máximo de acessos atingido"
|
||||
"message": "Número máximo de acessos atingido",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Exclusão pendente"
|
||||
@@ -4353,7 +4362,7 @@
|
||||
"message": "Sua Senha Mestra foi alterada recentemente por um administrador em sua organização. Para acessar o cofre, você deve atualizar sua Senha Mestra agora. Prosseguir irá desconectá-lo da sessão atual, exigindo que você faça login novamente. As sessões ativas em outros dispositivos podem continuar ativas por até uma hora."
|
||||
},
|
||||
"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."
|
||||
"message": "Sua Senha Mestra foi alterada recentemente por um administrador de sua organização. Para acessar o cofre, você precisa atualizar sua Senha Mestra agora. O processo desconectará você da sessão atual, exigindo que você inicie a sessão novamente. Sessões ativas em outros dispositivos podem continuar ativas por até uma hora."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Tempo Limite do Cofre"
|
||||
@@ -4513,7 +4522,7 @@
|
||||
"message": "Allow outbound logout requests"
|
||||
},
|
||||
"idpSignAuthenticationRequests": {
|
||||
"message": "Sign authentication requests"
|
||||
"message": "Assinar pedidos de autenticação"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Configuração de logon único foi salva."
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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": "Recriar Usuário"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Editar pasta"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domínio base"
|
||||
"message": "Domínio base",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Servidor",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Relatórios"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Relatório de websites inseguros"
|
||||
},
|
||||
@@ -1474,7 +1482,7 @@
|
||||
"message": "Relatório de palavras-passe expostas"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "As palavras-passe expostas são palavras-passe que foram descobertas em brechas de dados conhecidas que foram lançadas publicamente ou vendidas na dark web por hackers."
|
||||
"message": "Exposed passwords are passwords have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Palavras-passe expostas encontradas"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Editare dosar"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domeniu de bază"
|
||||
"message": "Domeniu de bază",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Nume de domeniu",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Gazdă",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Rapoarte"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identificați și eliminați lacunele de securitate din conturile dvs. online făcând clic pe rapoartele de mai jos."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Raport de saituri nesecurizate"
|
||||
"message": "Site-uri web nesigure"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Utilizarea saiturilor nesecurizate cu schema http:// poate fi periculoasă. Dacă saitul permite, ar trebui să îl accesați întotdeauna utilizând schema https://, astfel încât conexiunea dvs. să fie criptată."
|
||||
"message": "URL-urile care încep cu http:// nu utilizează cea mai bună criptare disponibilă. Schimbați URI-urile de conectare pentru aceste conturi cu https:// pentru o navigare mai sigură."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "S-au găsit saituri web nesecurizate"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "Niciun articol din seiful dvs. nu are URI-uri nesecurizate."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Raport 2FA inactiv"
|
||||
"message": "Autentificare în doi pași inactivă"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Autentificarea cu doi factori (2FA) este o setare importantă de securitate care vă ajută să vă securizați conturile. Dacă saitul îl oferă, ar trebui să activați întotdeauna autentificarea cu doi factori."
|
||||
"message": "Autentificarea în doi pași adaugă un nivel de protecție pentru conturile d-voastră. Activați Autentificarea în doi pași utilizând Autentificatorul Bitwarden pentru aceste conturi sau utilizați o metodă alternativă."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "S-au găsit conectări fără 2FA"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instrucțiuni"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Raport de parole dezvăluite"
|
||||
"message": "Parolele expuse"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Parolele dezvăluite sunt parole care au fost descoperite în scurgeri cunoscute de date care au fost lansate public sau vândute pe dark web de către hackeri."
|
||||
"message": "Parolele expuse în cazul unei încălcări a securității datelor sunt ținte ușoare pentru atacatori. Schimbați aceste parole pentru a preveni eventualele intruziuni."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "S-au găsit parole dezvăluite"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Raport de parole slabe"
|
||||
"message": "Parole slabe"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Parolele slabe pot fi ușor ghicite de hackeri și de instrumente automate folosite la spargerea parolelor. Generatorul de parole Bitwarden vă poate ajuta la crearea unor parole puternice."
|
||||
"message": "Parolele slabe pot fi ușor ghicite de atacatori. Schimbați aceste parole cu unele puternice folosind Generatorul de parole."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "S-au găsit parole slabe"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "Niciun articol din seiful dvs. nu are parole slabe."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Raport de parole refolosite"
|
||||
"message": "Parole refolosite"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "Dacă unul din serviciile folosite este compromis, folosind aceeași parolă în altă parte poate permite hackerilor să aibă acces ușor la mai multe conturi online. Trebuie să folosiți parole unice pentru fiecare cont sau servici."
|
||||
"message": "Reutilizarea parolelor facilitează accesul atacatorilor la mai multe conturi. Schimbați aceste parole astfel încât fiecare să fie unică."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "S-au găsit parole refolosite"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Raport de scurgere de date"
|
||||
"message": "Breșă de date"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "O \"scurgere\" este un incident unde datele unui sait au fost accesate ilegal de hackeri apoi dezvăluite public. Verificați tipul de date compromise (e-mail, parole, carduri de credit etc.) și luați măsura adecvată, cum ar fi schimbarea parolelor."
|
||||
"message": "Conturile care au fost piratate vă pot expune informațiile personale. Protejați conturile compromise prin activarea 2FA sau prin crearea unei parole mai puternice."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Verificați orice nume de utilizator sau adresă e-mail pe care o folosiți."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Toate Send-urile"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "S-a atins numărul maxim de acces"
|
||||
"message": "S-a atins numărul maxim de acces",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Ștergere în așteptare"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Înapoi la rapoarte"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Ce doriți să generați?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Tip de parolă"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Regenerare nume de utilizator"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Generare nume de utilizator"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Tip de nume de utilizator"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Plus e-mail adresat",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Utilizați capacitățile de subadresare ale furnizorului dvs. de e-mail."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "E-mail Catch-all"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Utilizați inbox-ul catch-all configurat pentru domeniul dvs."
|
||||
},
|
||||
"random": {
|
||||
"message": "Aleatoriu"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Cuvânt aleatoriu"
|
||||
},
|
||||
"service": {
|
||||
"message": "Serviciu"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Изменить папку"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Основной домен"
|
||||
"message": "Основной домен",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Доменное имя",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Хост",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Отчеты"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Выявите и устраните проблемы с безопасностью в ваших онлайн-аккаунтах, перейдя по ссылкам на отчеты ниже."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Отчет о незащищенных сайтах"
|
||||
"message": "Небезопасные сайты"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Использование незащищенных сайтов по схеме http:// может быть опасным. Если сайт позволяет, следует всегда получать к нему доступ по схеме https://, для шифрования соединения."
|
||||
"message": "URL-адреса, начинающиеся с http://, не используют оптимальный способ шифрования. Измените URI для логинов этих аккаунтов на https:// для более безопасного использования интернета."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Найдены незащищенные сайты"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "В вашем хранилище нет элементов с незащищенными URI."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Отчет о неактивной 2ФА"
|
||||
"message": "Неактивная двухфакторная аутентификация"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Двухфакторная аутентификация (2ФА) очень важна для безопасности, она помогает защитить ваши аккаунты. Если сайт предлагает это, следует всегда включать двухфакторную аутентификацию."
|
||||
"message": "Двухфакторная аутентификация добавляет уровень защиты для ваших аккаунтов. Включите ее для этих учетных записей с помощью Bitwarden Authenticator или используйте альтернативный метод."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Найдены логины без 2ФА"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Инструкции"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Отчет о скопрометированных паролях"
|
||||
"message": "Скомпрометированные пароли"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Скомпрометированные пароли - это пароли, обнаруженные в известных базах утечек, опубликованные или проданные в даркнете хакерами."
|
||||
"message": "Скомпрометированные в результате утечки данных пароли - легкая мишень для злоумышленников. Измените эти пароли, чтобы предотвратить возможные взломы."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Найдены скомпрометированные пароли"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Отчет о слабых паролях"
|
||||
"message": "Слабые пароли"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Слабые пароли могут быть легко подобраны хакерами и автоматизированными средствами для взлома паролей. Создавать надежные пароли может помочь генератор паролей Bitwarden."
|
||||
"message": "Слабые пароли могут быть легко подобраны злоумышленниками. Измените эти пароли на надежные при помощи генератора паролей."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Обнаружены слабые пароли"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "В вашем хранилище нет слабых паролей."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Отчет о повторно использованных паролях"
|
||||
"message": "Повторно использованные пароли"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "Если используемый вами сервис взломан, повторное использование того же пароля в другом месте может позволить хакерам легко получить доступ к другим вашим аккаунтам. Для каждого аккаунта или сервиса следует использовать уникальный пароль."
|
||||
"message": "Повторное использование паролей облегчает злоумышленникам взлом нескольких учетных записей. Измените эти пароли и сделайте каждый из них уникальным."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Обнаружены повторно использованные пароли"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Отчет об утечке данных"
|
||||
"message": "Утечка данных"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Утечка - это инцидент, при котором данные сайта стали незаконно доступны хакерам и впоследствии опубликованы. Проверьте типы данных, которые были скомпрометированы (адреса email, пароли, кредитные карты и т. д.) и примите соответствующие меры, такие как изменение паролей."
|
||||
"message": "Взломанные аккаунты могут раскрыть вашу личную информацию. Защитите их, включив 2ФА или создав более надежный пароль."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Проверьте имена пользователей или адреса email, которые вы используете."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Все Send’ы"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Достигнут максимум обращений"
|
||||
"message": "Достигнут максимум обращений",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Ожидание удаления"
|
||||
@@ -4441,25 +4450,25 @@
|
||||
"message": "Поведение перенаправления OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Получать запросы от конечной точки информации о пользователе"
|
||||
"message": "Получать требования от конечной точки информации о пользователе"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Дополнительные/пользовательские области видимости (разделенные запятыми)"
|
||||
"message": "Пользовательские области"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Дополнительные/пользовательские типы требований к ID пользователя (разделенные запятыми)"
|
||||
"message": "Типы требований к ID пользователя"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Дополнительные/пользовательские типы требований к email (разделенные запятыми)"
|
||||
"message": "Типы требований email"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Дополнительные/пользовательские типы требований к имени (разделенные запятыми)"
|
||||
"message": "Типы требований к имени пользователя"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Запрашиваемый контекст аутентификации 'Класс справочных значений' (acr_values)"
|
||||
"message": "Запрашиваемые значения класса ссылок на контекст аутентификации"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Ожидаемый \"acr\" Значение утверждения в ответе (проверка acr)"
|
||||
"message": "Ожидаемое значение \"acr\" Значение требования в ответе"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID объекта SP"
|
||||
@@ -4483,7 +4492,7 @@
|
||||
"message": "Алгоритм минимальной входящей подписи"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Требуется подпись"
|
||||
"message": "Ожидание подписанных подтверждений"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Проверка сертификатов"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Вернуться к отчетам"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Генератор"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Что вы хотите сгенерировать?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Тип пароля"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Пересоздать имя пользователя"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Создать имя пользователя"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Тип имени пользователя"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Плюс-адресованные email",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Использовать возможности суб-адресации вашего провайдера электронной почты."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all-адрес электронной почты"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Использовать настроенную в вашем домене почту catch-all."
|
||||
},
|
||||
"random": {
|
||||
"message": "Случайно"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Случайное слово"
|
||||
},
|
||||
"service": {
|
||||
"message": "Служба"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "බහාලුම සංස්කරණය"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Base domain"
|
||||
"message": "Base domain",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
"message": "Nové heslo"
|
||||
},
|
||||
"passphrase": {
|
||||
"message": "Heslo"
|
||||
"message": "Prístupová fráza"
|
||||
},
|
||||
"notes": {
|
||||
"message": "Poznámky"
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Upraviť priečinok"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Základná doména"
|
||||
"message": "Základná doména",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Názov domény",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Hostiteľ",
|
||||
@@ -1425,8 +1430,11 @@
|
||||
"reports": {
|
||||
"message": "Reporty"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Správa o nezabezpečených stránkach"
|
||||
"message": "Nezabezpečené stránky"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Používať nezabezpečené stránky s protokolom http:// môže byť nebezpečné. Ak to stránka umožňuje, mali by ste vždy používať protokol https:// aby bolo vaše pripojenie šifrované."
|
||||
@@ -1447,7 +1455,7 @@
|
||||
"message": "Vo vašom trezore nemáte nezabezpečené URI."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Správa o neaktívnych 2FA"
|
||||
"message": "Neaktívne 2FA"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Dvojstupňové prihlásenie (2FA) je dôležité nastavenie ktoré vám pomôže zabezpečiť vaše kontá. Ak to stránka umožňuje, mali by ste 2FA použiť."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Všetky Sendy"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Bol dosiahnutý maximálny počet prístupov"
|
||||
"message": "Bol dosiahnutý maximálny počet prístupov",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Čakajúce odstránenie"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Back to Reports"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generátor"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Čo by ste chceli vygenerovať?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Typ hesla"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Vygenerovať nové používateľské meno"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Vygenerovať používateľské meno"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Typ používateľského mena"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "E-mail s plusovým aliasom",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Použiť možnosti subadresovania svojho poskytovateľa e-mailu."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all e-mail"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Použiť doručenú poštu typu catch-all nastavenú na doméne."
|
||||
},
|
||||
"random": {
|
||||
"message": "Náhodné"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Náhodné slovo"
|
||||
},
|
||||
"service": {
|
||||
"message": "Služba"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Uredi mapo"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Domena"
|
||||
"message": "Domena",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Gostitelj",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Reports"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Instructions"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Urеdi fasciklu"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Osnovni domen"
|
||||
"message": "Osnovni domen",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Host",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Izveštaji"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Unsecured Websites Report"
|
||||
"message": "Unsecure Websites"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Unsecured Websites Found"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Two-factor authentication (2FA) is an important security setting that helps secure your accounts. If the website offers it, you should always enable two-factor authentication."
|
||||
"message": "Two-step Login adds a layer of protection to your accounts. Turn on Two-Step Login using Bitwarden Authenticator for these accounts or use an alternative method."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Logins Without 2FA Found"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Uputstvo"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Exposed Passwords Report"
|
||||
"message": "Exposed Passwords"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Exposed passwords are passwords that have been uncovered in known data breaches that were released publicly or sold on the dark web by hackers."
|
||||
"message": "Passwords exposed in a data breach are easy targets for attackers. Change these passwords to prevent potential break-ins."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Exposed Passwords Found"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Weak Passwords Report"
|
||||
"message": "Weak Passwords"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Weak passwords can easily be guessed by hackers and automated tools that are used to crack passwords. The Bitwarden password generator can help you create strong passwords."
|
||||
"message": "Weak passwords can be easily guessed by attackers. Change these passwords to strong ones using the Password Generator."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Weak Passwords Found"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "No items in your vault have weak passwords."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Reused Passwords Report"
|
||||
"message": "Reused Passwords"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Reused Passwords Found"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Data Breach Report"
|
||||
"message": "Data Breach"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Sva slanja"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Redigera mapp"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Basdomän"
|
||||
"message": "Basdomän",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domännamn",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Värd",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Rapporter"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Rapport om osäkra webbplatser"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "All Sends"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Det maximala antalet åtkomster har uppnåtts"
|
||||
"message": "Det maximala antalet åtkomster har uppnåtts",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Väntar på radering"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Tillbaka till Rapporter"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Generator"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "What would you like to generate?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Password Type"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Regenerate Username"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Generate Username"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Username Type"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Plus Addressed Email",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Use your email provider's sub-addressing capabilities."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all Email"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Use your domain's configured catch-all inbox."
|
||||
},
|
||||
"random": {
|
||||
"message": "Random"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Random Word"
|
||||
},
|
||||
"service": {
|
||||
"message": "Service"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Klasörü düzenle"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Ana alan adı"
|
||||
"message": "Ana alan adı",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Alan adı",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Sunucu",
|
||||
@@ -1425,6 +1430,9 @@
|
||||
"reports": {
|
||||
"message": "Raporlar"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Aşağıdaki raporlara tıklayarak çevrimiçi hesaplarınızdaki güvenlik açıklarını görün ve kapatın."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Güvensiz Web Siteler Raporu"
|
||||
},
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Tüm Send'ler"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Maksimum erişim sayısına ulaşıldı"
|
||||
"message": "Maksimum erişim sayısına ulaşıldı",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Silinmesi bekleniyor"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Raporlara geri dön"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Oluşturucu"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Ne oluşturmak istersiniz?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Parola türü"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Kullanıcı adını yeniden oluştur"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Kullanıcı adı oluştur"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Kullanıcı adı türü"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Artı adresli e-posta",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "E-posta sağlayıcınızın alt adres özelliklerini kullanın."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all e-posta"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Alan adınızın tüm iletileri yakalamaya ayarlanmış adresini kullanın."
|
||||
},
|
||||
"random": {
|
||||
"message": "Rastgele"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Rastgele kelime"
|
||||
},
|
||||
"service": {
|
||||
"message": "Servis"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Редагувати теку"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Основний домен"
|
||||
"message": "Основний домен",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Ім'я домену",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Вузол",
|
||||
@@ -301,16 +306,16 @@
|
||||
"message": "Захищена нотатка"
|
||||
},
|
||||
"typeLoginPlural": {
|
||||
"message": "Logins"
|
||||
"message": "Записи"
|
||||
},
|
||||
"typeCardPlural": {
|
||||
"message": "Cards"
|
||||
"message": "Картки"
|
||||
},
|
||||
"typeIdentityPlural": {
|
||||
"message": "Identities"
|
||||
"message": "Особисті дані"
|
||||
},
|
||||
"typeSecureNotePlural": {
|
||||
"message": "Secure Notes"
|
||||
"message": "Захищені нотатки"
|
||||
},
|
||||
"folders": {
|
||||
"message": "Теки"
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Звіти"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Визначте і закрийте прогалини в безпеці у ваших облікових записах, натиснувши на звіти нижче."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Звіт про незахищені вебсайти"
|
||||
"message": "Незахищені вебсайти"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Використання незахищених вебсайтів з протоколом http:// може бути небезпечним. Якщо вебсайт дозволяє, вам слід завжди використовувати його з протоколом https://, щоб ваше з'єднання було зашифрованим."
|
||||
"message": "URL-адреси, що починаються з http:// не мають надійного шифрування. Змініть URL-адреси цих облікових записів на https:// для використання безпечного з'єднання."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Знайдено незахищені вебсайти"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "У вашому сховищі немає записів з незахищеними URL-адресами."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Звіт про неактивну двоетапну перевірку"
|
||||
"message": "Неактивна двоетапна перевірка"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Двоетапна перевірка (2FA) - це важливе налаштування безпеки, що дозволяє захистити ваші облікові дані. Ви повинні завжди використовувати її на вебсайтах, де вона пропонується."
|
||||
"message": "Двоетапна перевірка надає додатковий рівень захисту для ваших облікових записів. Увімкніть двоетапнуперевірку з використанням вбудованих засобів Bitwarden для цих облікових записів, або скористайтеся альтернативним способом."
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "Знайдено записи без двоетапної перевірки"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "Інструкції"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "Звіт викритих паролів"
|
||||
"message": "Викриті паролі"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "Викритими називаються паролі, які було знайдено у відомих витоках даних, що публікуються в загальнодоступних місцях або продаються на чорному ринку в інтернеті хакерами."
|
||||
"message": "Паролі, викриті у витоках даних, є легкою мішенню для зловмисників. Змініть ці паролі для запобігання потенційних ризиків."
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "Знайдено викриті паролі"
|
||||
@@ -1504,10 +1512,10 @@
|
||||
}
|
||||
},
|
||||
"weakPasswordsReport": {
|
||||
"message": "Звіт про ненадійні паролі"
|
||||
"message": "Ненадійні паролі"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "Ненадійні паролі можуть легко бути вгадані хакерами і автоматизованими засобами злому паролів. Генератор паролів Bitwarden може допомогти вам створити надійні паролі."
|
||||
"message": "Ненадійні паролі можуть легко бути вгадані зловмисниками. Замініть ці паролі на надійні за допомогою генератора паролів."
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "Знайдено ненадійні паролі"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "У вашому сховищі немає ненадійних паролів."
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "Звіт повторюваних паролів"
|
||||
"message": "Повторювані паролі"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "Якщо використовуваний вами сервіс було скомпрометовано, повторне використання однакового пароля в інших місцях може дозволити хакерам легко отримати доступ до інших ваших облікових записів. Вам слід використовувати унікальний пароль для кожного сервісу чи облікового запису."
|
||||
"message": "Повторне використання паролів дає змогу легко отримати доступ до багатьох облікових записів. Замініть ці паролі, щоб кожен з них був унікальним."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Знайдено повторювані паролі"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "Звіт про витік даних"
|
||||
"message": "Витік даних"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "Витік даних - це подія, під час якої зловмисниками було отримано неавторизований доступ до даних вебсайтів та оприлюднено їх. Перегляньте тип даних, які було скомпрометовано (адреси електронної пошти, паролі, кредитні картки та інше) і виконайте необхідні дії, наприклад, змініть паролі."
|
||||
"message": "Викриті облікові дані можуть розкрити вашу особисту інформацію. Захистіть викриті облікові записи, увімкнувши двоктапну перевірку чи створивши надійніший пароль."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Перевірте будь-які використовувані вами імена користувачів чи адреси електронної пошти."
|
||||
@@ -2795,7 +2803,7 @@
|
||||
"message": "Видалити організацію"
|
||||
},
|
||||
"deletingOrganizationContentWarning": {
|
||||
"message": "Enter the master password to confirm deletion of $ORGANIZATION$ and all associated data. Vault data in $ORGANIZATION$ includes:",
|
||||
"message": "Введіть головний пароль для підтвердження видалення $ORGANIZATION$ та всіх пов'язаних даних. Дані сховища в $ORGANIZATION$ включають:",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -2804,10 +2812,10 @@
|
||||
}
|
||||
},
|
||||
"deletingOrganizationActiveUserAccountsWarning": {
|
||||
"message": "User accounts will remain active after deletion but will no longer be associated to this organization."
|
||||
"message": "Облікові записи користувачів залишатимуться активними після видалення, але більше не будуть пов'язані з цією організацією."
|
||||
},
|
||||
"deletingOrganizationIsPermanentWarning": {
|
||||
"message": "Deleting $ORGANIZATION$ is permanent and irreversible.",
|
||||
"message": "Видалення $ORGANIZATION$ є остаточним і незворотнім.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Усі відправлення"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Досягнуто максимальну кількість доступів"
|
||||
"message": "Досягнуто максимальну кількість доступів",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Очікується видалення"
|
||||
@@ -4444,22 +4453,22 @@
|
||||
"message": "Отримувати запити від інформації користувача кінцевої точки"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Додаткові/Власні межі (розділені комами)"
|
||||
"message": "Власні області"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів ID користувача (розділені комами)"
|
||||
"message": "Власні типи запитів ID користувача"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів е-пошти (розділені комами)"
|
||||
"message": "Типи запитів е-пошти"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів імені (розділені комами)"
|
||||
"message": "Типи запитів власного імені"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Запитані значення посилання класу контексту автентифікації (acr_values)"
|
||||
"message": "Запитані значення посилання класу контексту автентифікації"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Очікувалось значення запиту \"acr\" у відповіді (засвідчення acr)"
|
||||
"message": "Очікувалось значення запиту \"acr\" у відповіді"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID об'єкта SP"
|
||||
@@ -4483,7 +4492,7 @@
|
||||
"message": "Мінімальний алгоритм вхідного підписання"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Вимагається підпис підтвердження"
|
||||
"message": "Очікується підпис підтвердження"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Перевірка сертифікатів"
|
||||
@@ -4510,10 +4519,10 @@
|
||||
"message": "Дозволити небажану відповідь авторизації"
|
||||
},
|
||||
"idpAllowOutboundLogoutRequests": {
|
||||
"message": "Allow outbound logout requests"
|
||||
"message": "Дозволити вихідні запити для виходу"
|
||||
},
|
||||
"idpSignAuthenticationRequests": {
|
||||
"message": "Sign authentication requests"
|
||||
"message": "Підписувати запити авторизації"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Конфігурацію єдиного входу збережено."
|
||||
@@ -4765,7 +4774,7 @@
|
||||
"message": "БЕЗПЛАТНО зі спонсоруванням"
|
||||
},
|
||||
"formErrorSummaryPlural": {
|
||||
"message": "$COUNT$ fields above need your attention.",
|
||||
"message": "$COUNT$ зазначених вище полів потребують вашої уваги.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -4774,10 +4783,10 @@
|
||||
}
|
||||
},
|
||||
"formErrorSummarySingle": {
|
||||
"message": "1 field above needs your attention."
|
||||
"message": "1 зазначене вище поле потребує вашої уваги."
|
||||
},
|
||||
"fieldRequiredError": {
|
||||
"message": "$FIELDNAME$ is required.",
|
||||
"message": "$FIELDNAME$ є обов'язковим.",
|
||||
"placeholders": {
|
||||
"fieldname": {
|
||||
"content": "$1",
|
||||
@@ -4786,31 +4795,31 @@
|
||||
}
|
||||
},
|
||||
"required": {
|
||||
"message": "required"
|
||||
"message": "обов’язково"
|
||||
},
|
||||
"idpSingleSignOnServiceUrlRequired": {
|
||||
"message": "Required if Entity ID is not a URL."
|
||||
"message": "Обов'язково, якщо ID елемента не є URL."
|
||||
},
|
||||
"openIdOptionalCustomizations": {
|
||||
"message": "Optional Customizations"
|
||||
"message": "Додаткові налаштування"
|
||||
},
|
||||
"openIdAuthorityRequired": {
|
||||
"message": "Required if Authority is not valid."
|
||||
"message": "Обов'язково, якщо установа недійсна."
|
||||
},
|
||||
"separateMultipleWithComma": {
|
||||
"message": "Separate multiple with a comma."
|
||||
"message": "Декілька значень розділених комою."
|
||||
},
|
||||
"sessionTimeout": {
|
||||
"message": "Your session has timed out. Please go back and try logging in again."
|
||||
"message": "Час вашого сеансу завершився. Поверніться назад і спробуйте увійти знову."
|
||||
},
|
||||
"exportingPersonalVaultTitle": {
|
||||
"message": "Exporting Personal Vault"
|
||||
"message": "Експортування особистого сховища"
|
||||
},
|
||||
"exportingOrganizationVaultTitle": {
|
||||
"message": "Exporting Organization Vault"
|
||||
"message": "Експортування сховища організації"
|
||||
},
|
||||
"exportingPersonalVaultDescription": {
|
||||
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
|
||||
"message": "Будуть експортовані лише записи особистого сховища, пов'язані з $EMAIL$. Записи сховища організації не буде включено.",
|
||||
"placeholders": {
|
||||
"email": {
|
||||
"content": "$1",
|
||||
@@ -4819,12 +4828,55 @@
|
||||
}
|
||||
},
|
||||
"exportingOrganizationVaultDescription": {
|
||||
"message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Personal vault items and items from other organizations will not be included.",
|
||||
"message": "Будуть експортовані лише записи сховища організації, пов'язані з $ORGANIZATION$. Записи особистого сховища та записи з інших організацій не буде включено.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "Повернутися до звітів"
|
||||
},
|
||||
"generator": {
|
||||
"message": "Генератор"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "Що ви бажаєте згенерувати?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "Тип пароля"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "Повторно генерувати ім'я користувача"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "Генерувати ім'я користувача"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "Тип імені користувача"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "Плюс адреса електронної пошти",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "Використовуйте розширені можливості адрес вашого постачальника електронної пошти."
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Адреса е-пошти Catch-all"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "Використовуйте свою скриньку вхідних Catch-All власного домену."
|
||||
},
|
||||
"random": {
|
||||
"message": "Випадково"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "Випадкове слово"
|
||||
},
|
||||
"service": {
|
||||
"message": "Послуга"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "Chỉnh sửa thư mục"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "Tên miền cơ sở"
|
||||
"message": "Tên miền cơ sở",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "Domain Name",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "Máy chủ",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "Báo cáo"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "Identify and close security gaps in your online accounts by clicking the reports below."
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "Báo cáo trang web không an toàn"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "Using unsecured websites with the http:// scheme can be dangerous. If the website allows, you should always access it using the https:// scheme so that your connection is encrypted."
|
||||
"message": "URLs that start with http:// don’t use the best available encryption. Change the Login URIs for these accounts to https:// for safer browsing."
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "Tìm thấy trang web không an toàn"
|
||||
@@ -1447,7 +1455,7 @@
|
||||
"message": "No items in your vault have unsecured URIs."
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "Inactive 2FA Report"
|
||||
"message": "Inactive Two-step Login"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "Xác thực 2 bước là một bước quan trọng để bảo vệ tài khoản của bạn khỏi hacker. Nếu trang web cho phép, bạn nên kích hoạt xác thực 2 bước."
|
||||
@@ -1528,7 +1536,7 @@
|
||||
"message": "Báo cáo mật khẩu tái sử dụng"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "If a service that you use is compromised, reusing the same password elsewhere can allow hackers to easily gain access to more of your online accounts. You should use a unique password for every account or service."
|
||||
"message": "Reusing passwords makes it easier for attackers to break into multiple accounts. Change these passwords so that each is unique."
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "Phát hiện mật khẩu tái sử dụng"
|
||||
@@ -1558,7 +1566,7 @@
|
||||
"message": "Báo cáo dữ liệu bị rò rĩ"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "A \"breach\" is an incident where a site's data has been illegally accessed by hackers and then released publicly. Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate action, such as changing passwords."
|
||||
"message": "Breached accounts can expose your personal information. Secure breached accounts by enabling 2FA or creating a stronger password."
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "Check any usernames or email addresses that you use."
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "Toàn bộ Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "Max access count reached"
|
||||
"message": "Max access count reached",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "Pending deletion"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,7 +187,12 @@
|
||||
"message": "编辑文件夹"
|
||||
},
|
||||
"baseDomain": {
|
||||
"message": "基础域"
|
||||
"message": "基础域",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"domainName": {
|
||||
"message": "域名",
|
||||
"description": "Domain name. Ex. website.com"
|
||||
},
|
||||
"host": {
|
||||
"message": "主机",
|
||||
@@ -1425,11 +1430,14 @@
|
||||
"reports": {
|
||||
"message": "报告"
|
||||
},
|
||||
"reportsDesc": {
|
||||
"message": "点击下面的报告,识别并消除您的在线账户中的安全漏洞。"
|
||||
},
|
||||
"unsecuredWebsitesReport": {
|
||||
"message": "不安全网站报告"
|
||||
"message": "不安全的网站报告"
|
||||
},
|
||||
"unsecuredWebsitesReportDesc": {
|
||||
"message": "使用带 http:// 的不安全网站是很危险的。如果网站允许,您应始终使用带 https:// 的加密连接来访问它们。"
|
||||
"message": "以 http:// 开头的 URL 没有使用最好的加密方式。将这些账户的登录 URI 更改为 https://,以便更安全地浏览。"
|
||||
},
|
||||
"unsecuredWebsitesFound": {
|
||||
"message": "发现不安全的网站"
|
||||
@@ -1447,10 +1455,10 @@
|
||||
"message": "没有在你的密码库中发现带不安全 URI 的项目。"
|
||||
},
|
||||
"inactive2faReport": {
|
||||
"message": "未激活 2FA 报告"
|
||||
"message": "未激活的两步登录"
|
||||
},
|
||||
"inactive2faReportDesc": {
|
||||
"message": "双重身份验证(2FA)是保护您账户安全的一个重要安全设置。如果网站提供双重身份验证,您应该始终启用它。"
|
||||
"message": "两步登录为您的账户增加了一层保护。使用 Bitwarden 验证器或其他方式为这些账户开启两步登录。"
|
||||
},
|
||||
"inactive2faFound": {
|
||||
"message": "发现未使用双重身份验证的登录"
|
||||
@@ -1471,10 +1479,10 @@
|
||||
"message": "说明"
|
||||
},
|
||||
"exposedPasswordsReport": {
|
||||
"message": "公开密码报告"
|
||||
"message": "已泄露密码报告"
|
||||
},
|
||||
"exposedPasswordsReportDesc": {
|
||||
"message": "已泄露密码是在已知的数据泄露中被发现的密码,这些数据已由黑客公开发布或在暗网上销售。"
|
||||
"message": "在数据泄露事件中暴露的密码很容易成为攻击者的目标。更改这些密码以防止潜在的入侵。"
|
||||
},
|
||||
"exposedPasswordsFound": {
|
||||
"message": "发现公开密码"
|
||||
@@ -1507,7 +1515,7 @@
|
||||
"message": "弱密码报告"
|
||||
},
|
||||
"weakPasswordsReportDesc": {
|
||||
"message": "弱密码很容易被黑客和用于破解密码的自动化工具猜中。Bitwarden 密码生成器可以帮助您创建强密码。"
|
||||
"message": "弱的密码很容易被攻击者猜到。使用密码生成器将这些密码改为强密码。"
|
||||
},
|
||||
"weakPasswordsFound": {
|
||||
"message": "找到弱密码"
|
||||
@@ -1525,10 +1533,10 @@
|
||||
"message": "没有在密码库中发现弱密码。"
|
||||
},
|
||||
"reusedPasswordsReport": {
|
||||
"message": "重复使用密码报告"
|
||||
"message": "重复使用的密码"
|
||||
},
|
||||
"reusedPasswordsReportDesc": {
|
||||
"message": "如果您使用的服务被盗,在其他地方重复使用相同的密码可以让黑客轻松访问您的更多在线账户。您应该对每个账户或服务使用不同的密码。"
|
||||
"message": "重复使用的密码使攻击者更容易侵入多个账户。更改这些密码以使每个密码都是唯一的。"
|
||||
},
|
||||
"reusedPasswordsFound": {
|
||||
"message": "发现重复使用的密码"
|
||||
@@ -1555,10 +1563,10 @@
|
||||
}
|
||||
},
|
||||
"dataBreachReport": {
|
||||
"message": "数据泄露报告"
|
||||
"message": "数据泄露"
|
||||
},
|
||||
"breachDesc": {
|
||||
"message": "“泄漏”是指黑客非法访问网站数据然后公开发布的事件。查看已泄露的数据类型(电子邮件地址、密码、信用卡等)并采取适当的措施,例如更改密码。"
|
||||
"message": "泄露的账户可能会暴露您的个人信息。通过启用 2FA 或创建更强大的密码来保护被泄露的账户。"
|
||||
},
|
||||
"breachCheckUsernameEmail": {
|
||||
"message": "检查您使用的任何用户名或电子邮件地址。"
|
||||
@@ -3608,7 +3616,8 @@
|
||||
"message": "所有 Send"
|
||||
},
|
||||
"maxAccessCountReached": {
|
||||
"message": "已达最大访问次数"
|
||||
"message": "已达最大访问次数",
|
||||
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
|
||||
},
|
||||
"pendingDeletion": {
|
||||
"message": "等待删除"
|
||||
@@ -4826,5 +4835,48 @@
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"backToReports": {
|
||||
"message": "返回到报告"
|
||||
},
|
||||
"generator": {
|
||||
"message": "生成器"
|
||||
},
|
||||
"whatWouldYouLikeToGenerate": {
|
||||
"message": "您想要生成什么?"
|
||||
},
|
||||
"passwordType": {
|
||||
"message": "密码类型"
|
||||
},
|
||||
"regenerateUsername": {
|
||||
"message": "重新生成用户名"
|
||||
},
|
||||
"generateUsername": {
|
||||
"message": "生成用户名"
|
||||
},
|
||||
"usernameType": {
|
||||
"message": "用户名类型"
|
||||
},
|
||||
"plusAddressedEmail": {
|
||||
"message": "附加地址电子邮件",
|
||||
"description": "Username generator option that appends a random sub-address to the username. For example: address+subaddress@email.com"
|
||||
},
|
||||
"plusAddressedEmailDesc": {
|
||||
"message": "使用您的电子邮件提供商的子地址功能。"
|
||||
},
|
||||
"catchallEmail": {
|
||||
"message": "Catch-all 电子邮件"
|
||||
},
|
||||
"catchallEmailDesc": {
|
||||
"message": "使用您的域名配置的 Catch-all 收件箱。"
|
||||
},
|
||||
"random": {
|
||||
"message": "随机"
|
||||
},
|
||||
"randomWord": {
|
||||
"message": "随机单词"
|
||||
},
|
||||
"service": {
|
||||
"message": "服务"
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
.password-wrapper {
|
||||
.generated-wrapper {
|
||||
min-width: 0;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
@@ -109,12 +109,12 @@ app-org-vault-groupings,
|
||||
}
|
||||
}
|
||||
|
||||
app-password-generator {
|
||||
app-generator {
|
||||
#lengthRange {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-password {
|
||||
.card-generated {
|
||||
.card-body {
|
||||
@include themify($themes) {
|
||||
background: themed("foregroundColor");
|
||||
|
||||
@@ -85,10 +85,6 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
|
||||
return this.getDevice() === DeviceType.SafariBrowser;
|
||||
}
|
||||
|
||||
isIE(): boolean {
|
||||
return this.getDevice() === DeviceType.IEBrowser;
|
||||
}
|
||||
|
||||
isMacAppStore(): boolean {
|
||||
return false;
|
||||
}
|
||||
@@ -139,26 +135,23 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
|
||||
blobOptions.type = type;
|
||||
}
|
||||
}
|
||||
if (blobOptions != null && !this.isIE()) {
|
||||
if (blobOptions != null) {
|
||||
blob = new Blob([blobData], blobOptions);
|
||||
} else {
|
||||
blob = new Blob([blobData]);
|
||||
}
|
||||
if (navigator.msSaveOrOpenBlob) {
|
||||
navigator.msSaveBlob(blob, fileName);
|
||||
} else {
|
||||
const a = win.document.createElement("a");
|
||||
if (doDownload) {
|
||||
a.download = fileName;
|
||||
} else if (!this.isSafari()) {
|
||||
a.target = "_blank";
|
||||
}
|
||||
a.href = URL.createObjectURL(blob);
|
||||
a.style.position = "fixed";
|
||||
win.document.body.appendChild(a);
|
||||
a.click();
|
||||
win.document.body.removeChild(a);
|
||||
|
||||
const a = win.document.createElement("a");
|
||||
if (doDownload) {
|
||||
a.download = fileName;
|
||||
} else if (!this.isSafari()) {
|
||||
a.target = "_blank";
|
||||
}
|
||||
a.href = URL.createObjectURL(blob);
|
||||
a.style.position = "fixed";
|
||||
win.document.body.appendChild(a);
|
||||
a.click();
|
||||
win.document.body.removeChild(a);
|
||||
}
|
||||
|
||||
getApplicationVersion(): Promise<string> {
|
||||
|
||||
@@ -211,6 +211,7 @@ const devServer =
|
||||
}
|
||||
},
|
||||
hot: false,
|
||||
port: envConfig.dev?.port ?? 8080,
|
||||
allowedHosts: envConfig.dev?.allowedHosts ?? "auto",
|
||||
client: {
|
||||
overlay: {
|
||||
@@ -250,6 +251,13 @@ const webpackConfig = {
|
||||
new TerserPlugin({
|
||||
terserOptions: {
|
||||
safari10: true,
|
||||
// Replicate Angular CLI behaviour
|
||||
compress: {
|
||||
global_defs: {
|
||||
ngDevMode: false,
|
||||
ngI18nClosureMode: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user