mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
Compare commits
18 Commits
csa-2-pass
...
v2.24.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e3d45da6c | ||
|
|
8892553e30 | ||
|
|
95ff586a47 | ||
|
|
342e09da9e | ||
|
|
32cecf6086 | ||
|
|
b122d24350 | ||
|
|
a620a3f84c | ||
|
|
3d30495ffb | ||
|
|
bb03595d02 | ||
|
|
ff11d0468c | ||
|
|
825b174007 | ||
|
|
39690a01ac | ||
|
|
905e39d060 | ||
|
|
9f83899480 | ||
|
|
a99d38a2f3 | ||
|
|
5dccf54611 | ||
|
|
ad872f4d15 | ||
|
|
247429ef37 |
21
.github/workflows/build.yml
vendored
21
.github/workflows/build.yml
vendored
@@ -182,7 +182,7 @@ jobs:
|
||||
echo "GitHub event: $GITHUB_EVENT"
|
||||
|
||||
- name: Setup DCT
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc'
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
||||
id: setup-dct
|
||||
uses: bitwarden/gh-actions/setup-docker-trust@a8c384a05a974c05c48374c818b004be221d43ff
|
||||
with:
|
||||
@@ -228,26 +228,37 @@ jobs:
|
||||
if: github.ref == 'refs/heads/master'
|
||||
run: docker tag bitwarden/web bitwarden/web:dev
|
||||
|
||||
- name: Tag release branch
|
||||
if: github.ref == 'refs/heads/release'
|
||||
run: docker tag bitwarden/web bitwarden/web:latest
|
||||
|
||||
- name: List Docker images
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc'
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
||||
run: docker images
|
||||
|
||||
- name: Push rc images
|
||||
- name: Push rc image
|
||||
if: github.ref == 'refs/heads/rc'
|
||||
run: docker push bitwarden/web:rc
|
||||
env:
|
||||
DOCKER_CONTENT_TRUST: 1
|
||||
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
||||
|
||||
- name: Push dev images
|
||||
- name: Push dev image
|
||||
if: github.ref == 'refs/heads/master'
|
||||
run: docker push bitwarden/web:dev
|
||||
env:
|
||||
DOCKER_CONTENT_TRUST: 1
|
||||
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
||||
|
||||
- name: Push latest image
|
||||
if: github.ref == 'refs/heads/release'
|
||||
run: docker push bitwarden/web:latest
|
||||
env:
|
||||
DOCKER_CONTENT_TRUST: 1
|
||||
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
||||
|
||||
- name: Log out of Docker
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc'
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/release'
|
||||
run: docker logout
|
||||
|
||||
|
||||
|
||||
24
.github/workflows/release.yml
vendored
24
.github/workflows/release.yml
vendored
@@ -15,9 +15,9 @@ jobs:
|
||||
steps:
|
||||
- name: Branch check
|
||||
run: |
|
||||
if [[ "$GITHUB_REF" != "refs/heads/rc" ]]; then
|
||||
if [[ "$GITHUB_REF" != "refs/heads/release" ]]; then
|
||||
echo "==================================="
|
||||
echo "[!] Can only release from rc branch"
|
||||
echo "[!] Can only release from the 'release' branch"
|
||||
echo "==================================="
|
||||
exit 1
|
||||
fi
|
||||
@@ -43,7 +43,7 @@ jobs:
|
||||
|
||||
|
||||
self-host:
|
||||
name: Build self-host docker
|
||||
name: Release self-host docker
|
||||
runs-on: ubuntu-20.04
|
||||
needs: setup
|
||||
env:
|
||||
@@ -66,20 +66,18 @@ jobs:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||
|
||||
- name: Pull latest selfhost rc image
|
||||
run: docker pull bitwarden/web:rc
|
||||
- name: Pull latest selfhost Release image
|
||||
run: docker pull bitwarden/web:latest
|
||||
|
||||
- name: Tag version
|
||||
run: |
|
||||
docker tag bitwarden/web:rc bitwarden/web:latest
|
||||
docker tag bitwarden/web:rc bitwarden/web:$_RELEASE_VERSION
|
||||
docker tag bitwarden/web:latest bitwarden/web:$_RELEASE_VERSION
|
||||
|
||||
- name: List Docker images
|
||||
run: docker images
|
||||
|
||||
- name: Push images
|
||||
run: |
|
||||
docker push bitwarden/web:latest
|
||||
docker push bitwarden/web:$_RELEASE_VERSION
|
||||
env:
|
||||
DOCKER_CONTENT_TRUST: 1
|
||||
@@ -108,7 +106,11 @@ jobs:
|
||||
run: |
|
||||
git switch -c deploy-$_TAG_VERSION
|
||||
git push -u origin deploy-$_TAG_VERSION
|
||||
git switch rc
|
||||
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
|
||||
with:
|
||||
ref: release
|
||||
|
||||
- name: Setup git config
|
||||
run: |
|
||||
@@ -122,7 +124,7 @@ jobs:
|
||||
with:
|
||||
workflow: build.yml
|
||||
workflow_conclusion: success
|
||||
branch: rc
|
||||
branch: release
|
||||
artifacts: web-*-cloud-COMMERCIAL.zip
|
||||
|
||||
# This should result in a build directory in the current working directory
|
||||
@@ -163,7 +165,7 @@ jobs:
|
||||
with:
|
||||
workflow: build.yml
|
||||
workflow_conclusion: success
|
||||
branch: rc
|
||||
branch: release
|
||||
artifacts: "web-*-selfhosted-COMMERCIAL.zip,
|
||||
web-*-selfhosted-open-source.zip"
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<div class="input-group-append">
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="copy(data.value.callbackPath)">
|
||||
(click)="copy(callbackPath)">
|
||||
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
@@ -48,7 +48,7 @@
|
||||
<div class="input-group-append">
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="copy(data.value.signedOutCallbackPath)">
|
||||
(click)="copy(signedOutCallbackPath)">
|
||||
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
@@ -124,7 +124,7 @@
|
||||
<div class="input-group-append">
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="copy(data.value.spEntityId)">
|
||||
(click)="copy(spEntityId)">
|
||||
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
@@ -136,13 +136,13 @@
|
||||
<input class="form-control" readonly [value]="spMetadataUrl">
|
||||
<div class="input-group-append">
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="launchUri(data.value.spMetadataUrl)">
|
||||
appA11yTitle="{{'launch' | i18n}}"
|
||||
(click)="launchUri(spMetadataUrl)">
|
||||
<i class="fa fa-lg fa-external-link" aria-hidden="true"></i>
|
||||
</button>
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="copy(data.value.spMetadataUrl)">
|
||||
(click)="copy(spMetadataUrl)">
|
||||
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
@@ -155,7 +155,7 @@
|
||||
<div class="input-group-append">
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
appA11yTitle="{{'copyValue' | i18n}}"
|
||||
(click)="copy(data.value.spAcsUrl)">
|
||||
(click)="copy(spAcsUrl)">
|
||||
<i class="fa fa-lg fa-clone" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -24,8 +24,11 @@ const routes: Routes = [
|
||||
canActivate: [OrganizationTypeGuardService],
|
||||
data: {
|
||||
permissions: [
|
||||
Permissions.ManageAssignedCollections,
|
||||
Permissions.ManageAllCollections,
|
||||
Permissions.CreateNewCollections,
|
||||
Permissions.EditAnyCollection,
|
||||
Permissions.DeleteAnyCollection,
|
||||
Permissions.EditAssignedCollections,
|
||||
Permissions.DeleteAssignedCollections,
|
||||
Permissions.AccessEventLogs,
|
||||
Permissions.ManageGroups,
|
||||
Permissions.ManageUsers,
|
||||
|
||||
2
jslib
2
jslib
Submodule jslib updated: 764dc40b36...c7a9a89e0a
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "bitwarden-web",
|
||||
"version": "2.23.0",
|
||||
"version": "2.24.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "bitwarden-web",
|
||||
"version": "2.23.0",
|
||||
"version": "2.24.0",
|
||||
"hasInstallScript": true,
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bitwarden-web",
|
||||
"version": "2.23.0",
|
||||
"version": "2.24.0",
|
||||
"license": "GPL-3.0",
|
||||
"repository": "https://github.com/bitwarden/web",
|
||||
"scripts": {
|
||||
|
||||
@@ -15,17 +15,18 @@
|
||||
<div class="form-group">
|
||||
<label for="name">{{'name' | i18n}}</label>
|
||||
<input id="name" class="form-control" type="text" name="Name" [(ngModel)]="name" required
|
||||
appAutofocus>
|
||||
appAutofocus [disabled]="!this.canSave">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="externalId">{{'externalId' | i18n}}</label>
|
||||
<input id="externalId" class="form-control" type="text" name="ExternalId" [(ngModel)]="externalId">
|
||||
<input id="externalId" class="form-control" type="text" name="ExternalId" [(ngModel)]="externalId"
|
||||
[disabled]="!this.canSave">
|
||||
<small class="form-text text-muted">{{'externalIdDesc' | i18n}}</small>
|
||||
</div>
|
||||
<ng-container *ngIf="accessGroups">
|
||||
<h3 class="mt-4 d-flex mb-0">
|
||||
{{'groupAccess' | i18n}}
|
||||
<div class="ml-auto" *ngIf="groups && groups.length">
|
||||
<div class="ml-auto" *ngIf="groups && groups.length && this.canSave">
|
||||
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
||||
{{'selectAll' | i18n}}
|
||||
</button>
|
||||
@@ -50,7 +51,7 @@
|
||||
<tr *ngFor="let g of groups; let i = index">
|
||||
<td class="table-list-checkbox" (click)="check(g)">
|
||||
<input type="checkbox" [(ngModel)]="g.checked" name="Groups[{{i}}].Checked"
|
||||
[disabled]="g.accessAll" appStopProp>
|
||||
[disabled]="g.accessAll || !this.canSave" appStopProp>
|
||||
</td>
|
||||
<td (click)="check(g)">
|
||||
{{g.name}}
|
||||
@@ -62,11 +63,11 @@
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<input type="checkbox" [(ngModel)]="g.hidePasswords"
|
||||
name="Groups[{{i}}].HidePasswords" [disabled]="!g.checked || g.accessAll">
|
||||
name="Groups[{{i}}].HidePasswords" [disabled]="!g.checked || g.accessAll || !this.canSave">
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<input type="checkbox" [(ngModel)]="g.readOnly" name="Groups[{{i}}].ReadOnly"
|
||||
[disabled]="!g.checked || g.accessAll">
|
||||
[disabled]="!g.checked || g.accessAll || !this.canSave">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@@ -74,22 +75,23 @@
|
||||
</ng-container>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
|
||||
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading" *ngIf="this.canSave">
|
||||
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
||||
<span>{{'save' | i18n}}</span>
|
||||
</button>
|
||||
<button type="button" class="btn btn-outline-secondary"
|
||||
data-dismiss="modal">{{'cancel' | i18n}}</button>
|
||||
<div class="ml-auto">
|
||||
<div class="ml-auto" *ngIf="this.canDelete">
|
||||
<button #deleteBtn type="button" (click)="delete()" class="btn btn-outline-danger"
|
||||
appA11yTitle="{{'delete' | i18n}}" *ngIf="editMode" [disabled]="deleteBtn.loading"
|
||||
[appApiAction]="deletePromise">
|
||||
appA11yTitle="{{'delete' | i18n}}" *ngIf="editMode"
|
||||
[disabled]="deleteBtn.loading" [appApiAction]="deletePromise">
|
||||
<i class="fa fa-trash-o fa-lg fa-fw" [hidden]="deleteBtn.loading" aria-hidden="true"></i>
|
||||
<i class="fa fa-spinner fa-spin fa-lg fa-fw" [hidden]="!deleteBtn.loading"
|
||||
title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -29,6 +29,8 @@ import { Utils } from 'jslib-common/misc/utils';
|
||||
export class CollectionAddEditComponent implements OnInit {
|
||||
@Input() collectionId: string;
|
||||
@Input() organizationId: string;
|
||||
@Input() canSave: boolean;
|
||||
@Input() canDelete: boolean;
|
||||
@Output() onSavedCollection = new EventEmitter();
|
||||
@Output() onDeletedCollection = new EventEmitter();
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<input type="search" class="form-control form-control-sm" id="search" placeholder="{{'search' | i18n}}"
|
||||
[(ngModel)]="searchText">
|
||||
</div>
|
||||
<button type="button" class="btn btn-sm btn-outline-primary ml-3" (click)="add()">
|
||||
<button type="button" *ngIf="this.canCreate" class="btn btn-sm btn-outline-primary ml-3" (click)="add()">
|
||||
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>
|
||||
{{'newCollection' | i18n}}
|
||||
</button>
|
||||
@@ -27,17 +27,17 @@
|
||||
<a href="#" appStopClick (click)="edit(c)">{{c.name}}</a>
|
||||
</td>
|
||||
<td class="table-list-options">
|
||||
<div class="dropdown" appListDropdown>
|
||||
<div class="dropdown" appListDropdown *ngIf="this.canEdit(c) || this.canDelete(c)">
|
||||
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-toggle="dropdown"
|
||||
aria-haspopup="true" aria-expanded="false" appA11yTitle="{{'options' | i18n}}">
|
||||
<i class="fa fa-cog fa-lg" aria-hidden="true"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<a class="dropdown-item" href="#" appStopClick (click)="users(c)">
|
||||
<a class="dropdown-item" href="#" appStopClick *ngIf="this.canEdit(c)" (click)="users(c)">
|
||||
<i class="fa fa-fw fa-users" aria-hidden="true"></i>
|
||||
{{'users' | i18n}}
|
||||
</a>
|
||||
<a class="dropdown-item text-danger" href="#" appStopClick (click)="delete(c)">
|
||||
<a class="dropdown-item text-danger" href="#" appStopClick *ngIf="this.canDelete(c)" (click)="delete(c)">
|
||||
<i class="fa fa-fw fa-trash-o" aria-hidden="true"></i>
|
||||
{{'delete' | i18n}}
|
||||
</a>
|
||||
|
||||
@@ -18,6 +18,7 @@ import { ModalService } from 'jslib-angular/services/modal.service';
|
||||
|
||||
import { CollectionData } from 'jslib-common/models/data/collectionData';
|
||||
import { Collection } from 'jslib-common/models/domain/collection';
|
||||
import { Organization } from 'jslib-common/models/domain/organization';
|
||||
import {
|
||||
CollectionDetailsResponse,
|
||||
CollectionResponse,
|
||||
@@ -37,8 +38,11 @@ export class CollectionsComponent implements OnInit {
|
||||
@ViewChild('usersTemplate', { read: ViewContainerRef, static: true }) usersModalRef: ViewContainerRef;
|
||||
|
||||
loading = true;
|
||||
organization: Organization;
|
||||
canCreate: boolean = false;
|
||||
organizationId: string;
|
||||
collections: CollectionView[];
|
||||
assignedCollections: CollectionView[];
|
||||
pagedCollections: CollectionView[];
|
||||
searchText: string;
|
||||
|
||||
@@ -67,16 +71,27 @@ export class CollectionsComponent implements OnInit {
|
||||
}
|
||||
|
||||
async load() {
|
||||
const organization = await this.userService.getOrganization(this.organizationId);
|
||||
let response: ListResponse<CollectionResponse>;
|
||||
if (organization.canViewAllCollections) {
|
||||
response = await this.apiService.getCollections(this.organizationId);
|
||||
} else {
|
||||
response = await this.apiService.getUserCollections();
|
||||
this.organization = await this.userService.getOrganization(this.organizationId);
|
||||
this.canCreate = this.organization.canCreateNewCollections;
|
||||
|
||||
const decryptCollections = async (r: ListResponse<CollectionResponse>) => {
|
||||
const collections = r.data.filter(c => c.organizationId === this.organizationId).map(d =>
|
||||
new Collection(new CollectionData(d as CollectionDetailsResponse)));
|
||||
return await this.collectionService.decryptMany(collections);
|
||||
};
|
||||
|
||||
if (this.organization.canViewAssignedCollections) {
|
||||
const response = await this.apiService.getUserCollections();
|
||||
this.assignedCollections = await decryptCollections(response);
|
||||
}
|
||||
const collections = response.data.filter(c => c.organizationId === this.organizationId).map(r =>
|
||||
new Collection(new CollectionData(r as CollectionDetailsResponse)));
|
||||
this.collections = await this.collectionService.decryptMany(collections);
|
||||
|
||||
if (this.organization.canViewAllCollections) {
|
||||
const response = await this.apiService.getCollections(this.organizationId);
|
||||
this.collections = await decryptCollections(response);
|
||||
} else {
|
||||
this.collections = this.assignedCollections;
|
||||
}
|
||||
|
||||
this.resetPaging();
|
||||
this.loading = false;
|
||||
}
|
||||
@@ -99,9 +114,20 @@ export class CollectionsComponent implements OnInit {
|
||||
}
|
||||
|
||||
async edit(collection: CollectionView) {
|
||||
const canCreate = collection == null && this.canCreate;
|
||||
const canEdit = collection != null && this.canEdit(collection);
|
||||
const canDelete = collection != null && this.canDelete(collection);
|
||||
|
||||
if (!(canCreate || canEdit || canDelete)) {
|
||||
this.toasterService.popAsync('error', null, this.i18nService.t('missingPermissions'));
|
||||
return;
|
||||
}
|
||||
|
||||
const [modal] = await this.modalService.openViewRef(CollectionAddEditComponent, this.addEditModalRef, comp => {
|
||||
comp.organizationId = this.organizationId;
|
||||
comp.collectionId = collection != null ? collection.id : null;
|
||||
comp.canSave = canCreate || canEdit;
|
||||
comp.canDelete = canDelete;
|
||||
comp.onSavedCollection.subscribe(() => {
|
||||
modal.close();
|
||||
this.load();
|
||||
@@ -129,7 +155,9 @@ export class CollectionsComponent implements OnInit {
|
||||
await this.apiService.deleteCollection(this.organizationId, collection.id);
|
||||
this.toasterService.popAsync('success', null, this.i18nService.t('deletedCollectionId', collection.name));
|
||||
this.removeCollection(collection);
|
||||
} catch { }
|
||||
} catch {
|
||||
this.toasterService.popAsync('error', null, this.i18nService.t('missingPermissions'));
|
||||
}
|
||||
}
|
||||
|
||||
async users(collection: CollectionView) {
|
||||
@@ -163,6 +191,28 @@ export class CollectionsComponent implements OnInit {
|
||||
return !searching && this.collections && this.collections.length > this.pageSize;
|
||||
}
|
||||
|
||||
canEdit(collection: CollectionView) {
|
||||
if (this.organization.canEditAnyCollection) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (this.organization.canEditAssignedCollections && this.assignedCollections.some(c => c.id === collection.id)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
canDelete(collection: CollectionView) {
|
||||
if (this.organization.canDeleteAnyCollection) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (this.organization.canDeleteAssignedCollections && this.assignedCollections.some(c => c.id === collection.id)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private removeCollection(collection: CollectionView) {
|
||||
const index = this.collections.indexOf(collection);
|
||||
if (index > -1) {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
{{'people' | i18n}}
|
||||
</a>
|
||||
<a routerLink="collections" class="list-group-item" routerLinkActive="active"
|
||||
*ngIf="organization.canViewAssignedCollections || organization.canViewAllCollections">
|
||||
*ngIf="organization.canViewAllCollections || organization.canViewAssignedCollections">
|
||||
{{'collections' | i18n}}
|
||||
</a>
|
||||
<a routerLink="groups" class="list-group-item" routerLinkActive="active"
|
||||
|
||||
@@ -80,20 +80,7 @@
|
||||
<div class="mb-3">
|
||||
<label class="font-weight-bold mb-0">Manager Permissions</label>
|
||||
<hr class="my-0 mr-2" />
|
||||
<!-- Deprecated Sep 29 2021 -->
|
||||
<div class="form-group mb-0" *ngIf="fallbackToManageAssignedCollections">
|
||||
<div class="form-check mt-1 form-check-block">
|
||||
<input class="form-check-input" type="checkbox" name="manageAssignedCollections"
|
||||
id="manageAssignedCollections"
|
||||
[(ngModel)]="permissions.manageAssignedCollections">
|
||||
<label class="form-check-label font-weight-normal"
|
||||
for="manageAssignedCollections">
|
||||
{{'manageAssignedCollections' | i18n}}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<app-nested-checkbox *ngIf="!fallbackToManageAssignedCollections" parentId="manageAssignedCollections"
|
||||
<app-nested-checkbox parentId="manageAssignedCollections"
|
||||
[checkboxes]="manageAssignedCollectionsCheckboxes">
|
||||
</app-nested-checkbox>
|
||||
</div>
|
||||
@@ -129,18 +116,7 @@
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Deprecated 29 Sep 2021 -->
|
||||
<div class="form-group mb-0" *ngIf="fallbackToManageAllCollections">
|
||||
<div class="form-check mt-1 form-check-block">
|
||||
<input class="form-check-input" type="checkbox" name="manageAllCollections"
|
||||
id="manageAllCollections" [(ngModel)]="permissions.manageAllCollections">
|
||||
<label class="form-check-label font-weight-normal" for="manageAllCollections">
|
||||
{{'manageAllCollections' | i18n}}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<app-nested-checkbox *ngIf="!fallbackToManageAllCollections" parentId="manageAllCollections"
|
||||
<app-nested-checkbox parentId="manageAllCollections"
|
||||
[checkboxes]="manageAllCollectionsCheckboxes">
|
||||
</app-nested-checkbox>
|
||||
<div class="form-group mb-0">
|
||||
|
||||
@@ -79,17 +79,6 @@ export class UserAddEditComponent implements OnInit {
|
||||
},
|
||||
];
|
||||
|
||||
get fallbackToManageAllCollections() {
|
||||
return this.permissions.createNewCollections == null &&
|
||||
this.permissions.editAnyCollection == null &&
|
||||
this.permissions.deleteAnyCollection == null;
|
||||
}
|
||||
|
||||
get fallbackToManageAssignedCollections() {
|
||||
return this.permissions.editAssignedCollections == null &&
|
||||
this.permissions.deleteAssignedCollections == null;
|
||||
}
|
||||
|
||||
get customUserTypeSelected(): boolean {
|
||||
return this.type === OrganizationUserType.Custom;
|
||||
}
|
||||
|
||||
@@ -26,9 +26,14 @@ export class SingleOrgPolicyComponent extends BasePolicyComponent {
|
||||
}
|
||||
|
||||
buildRequest(policiesEnabledMap: Map<PolicyType, boolean>): Promise<PolicyRequest> {
|
||||
const requireSsoEnabled = policiesEnabledMap.get(PolicyType.RequireSso) ?? false;
|
||||
if (!this.enabled.value && requireSsoEnabled) {
|
||||
throw new Error(this.i18nService.t('disableRequireSsoError'));
|
||||
if (!this.enabled.value) {
|
||||
if (policiesEnabledMap.get(PolicyType.RequireSso) ?? false) {
|
||||
throw new Error(this.i18nService.t('disableRequiredError', this.i18nService.t('requireSso')));
|
||||
}
|
||||
|
||||
if (policiesEnabledMap.get(PolicyType.MaximumVaultTimeout) ?? false) {
|
||||
throw new Error(this.i18nService.t('disableRequiredError', this.i18nService.t('maximumVaultTimeoutLabel')));
|
||||
}
|
||||
}
|
||||
|
||||
return super.buildRequest(policiesEnabledMap);
|
||||
|
||||
@@ -42,7 +42,7 @@ export class CiphersComponent extends BaseCiphersComponent {
|
||||
}
|
||||
|
||||
async load(filter: (cipher: CipherView) => boolean = null) {
|
||||
if (this.organization.canViewAllCollections) {
|
||||
if (this.organization.canEditAnyCollection) {
|
||||
this.accessEvents = this.organization.useEvents;
|
||||
this.allCiphers = await this.cipherService.getAllFromApiForOrganization(this.organization.id);
|
||||
} else {
|
||||
|
||||
@@ -29,7 +29,7 @@ export class GroupingsComponent extends BaseGroupingsComponent {
|
||||
}
|
||||
|
||||
async loadCollections() {
|
||||
if (!this.organization.canViewAllCollections) {
|
||||
if (!this.organization.canEditAnyCollection) {
|
||||
await super.loadCollections(this.organization.id);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@ const folderService = new FolderService(cryptoService, userService, apiService,
|
||||
i18nService, cipherService);
|
||||
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
|
||||
searchService = new SearchService(cipherService, consoleLogService, i18nService);
|
||||
const policyService = new PolicyService(userService, storageService);
|
||||
const policyService = new PolicyService(userService, storageService, apiService);
|
||||
const sendService = new SendService(cryptoService, userService, apiService, fileUploadService, storageService,
|
||||
i18nService, cryptoFunctionService);
|
||||
const vaultTimeoutService = new VaultTimeoutService(cipherService, folderService, collectionService,
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<small>{{'hours' | i18n }}</small>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<input id="minutes" class="form-control" type="number" min="0" max="59" name="minutes"
|
||||
<input id="minutes" class="form-control" type="number" min="0" name="minutes"
|
||||
formControlName="minutes">
|
||||
<small>{{'minutes' | i18n }}</small>
|
||||
</div>
|
||||
|
||||
@@ -6,13 +6,19 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<title>Bitwarden Mobile WebAuthn Connector</title>
|
||||
<title>Bitwarden WebAuthn Connector</title>
|
||||
</head>
|
||||
|
||||
<body style="background: transparent;">
|
||||
<img src="../images/u2fkey.jpg" class="rounded img-fluid mb-3">
|
||||
<div class="text-center">
|
||||
<button id="webauthn-button" class="btn btn-primary"></button>
|
||||
<div class="row justify-content-md-center mt-5">
|
||||
<div>
|
||||
<img src="../images/logo-dark@2x.png" class="logo mb-2" alt="Bitwarden">
|
||||
<p id="webauthn-header" class="lead text-center mx-4 mb-4"></p>
|
||||
<img src="../images/u2fkey-mobile.jpg" class="rounded img-fluid">
|
||||
<div class="text-center mt-4">
|
||||
<button id="webauthn-button" class="btn btn-primary btn-lg"></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
||||
@@ -6,7 +6,9 @@ require('./webauthn.scss');
|
||||
|
||||
let parsed = false;
|
||||
let webauthnJson: any;
|
||||
let headerText: string = null;
|
||||
let btnText: string = null;
|
||||
let btnReturnText: string = null;
|
||||
let parentUrl: string = null;
|
||||
let parentOrigin: string = null;
|
||||
let callbackUri: string = null;
|
||||
@@ -18,6 +20,10 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
init();
|
||||
|
||||
parseParameters();
|
||||
if (headerText) {
|
||||
const header = document.getElementById('webauthn-header');
|
||||
header.innerText = decodeURI(headerText);
|
||||
}
|
||||
if (btnText) {
|
||||
const button = document.getElementById('webauthn-button');
|
||||
button.innerText = decodeURI(btnText);
|
||||
@@ -63,11 +69,13 @@ function parseParametersV1() {
|
||||
}
|
||||
|
||||
webauthnJson = b64Decode(data);
|
||||
headerText = getQsParam('headerText');
|
||||
btnText = getQsParam('btnText');
|
||||
btnReturnText = getQsParam('btnReturnText');
|
||||
}
|
||||
|
||||
function parseParametersV2() {
|
||||
let dataObj: { data: any, btnText: string; callbackUri?: string } = null;
|
||||
let dataObj: { data: any, headerText: string; btnText: string; btnReturnText: string; callbackUri?: string } = null;
|
||||
try {
|
||||
dataObj = JSON.parse(b64Decode(getQsParam('data')));
|
||||
}
|
||||
@@ -78,7 +86,9 @@ function parseParametersV2() {
|
||||
|
||||
callbackUri = dataObj.callbackUri;
|
||||
webauthnJson = dataObj.data;
|
||||
headerText = dataObj.headerText;
|
||||
btnText = dataObj.btnText;
|
||||
btnReturnText = dataObj.btnReturnText;
|
||||
}
|
||||
|
||||
function start() {
|
||||
@@ -140,6 +150,7 @@ function onMessage() {
|
||||
function error(message: string) {
|
||||
if (callbackUri) {
|
||||
document.location.replace(callbackUri + '?error=' + encodeURIComponent(message));
|
||||
returnButton(callbackUri + '?error=' + encodeURIComponent(message));
|
||||
} else {
|
||||
parent.postMessage('error|' + message, parentUrl);
|
||||
}
|
||||
@@ -154,6 +165,7 @@ function success(assertedCredential: PublicKeyCredential) {
|
||||
|
||||
if (callbackUri) {
|
||||
document.location.replace(callbackUri + '?data=' + encodeURIComponent(dataString));
|
||||
returnButton(callbackUri + '?data=' + encodeURIComponent(dataString));
|
||||
} else {
|
||||
parent.postMessage('success|' + dataString, parentUrl);
|
||||
sentSuccess = true;
|
||||
@@ -168,3 +180,10 @@ function info(message: string) {
|
||||
parent.postMessage('info|' + message, parentUrl);
|
||||
}
|
||||
|
||||
function returnButton(uri: string) {
|
||||
// provides 'return' button in case scripted navigation is blocked
|
||||
const button = document.getElementById('webauthn-button');
|
||||
button.innerText = decodeURI(btnReturnText);
|
||||
button.onclick = () => { document.location.replace(uri); };
|
||||
}
|
||||
|
||||
|
||||
BIN
src/images/u2fkey-mobile.jpg
Normal file
BIN
src/images/u2fkey-mobile.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 352 KiB |
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Verander e-pos"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nuwe e-pos"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Beleide"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Wysig Beleid"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bevestig"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Eienaar"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Toestel"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Sakeportaal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Enkele organisasie"
|
||||
},
|
||||
@@ -3355,7 +3448,7 @@
|
||||
"message": "Single Organization policy not enabled."
|
||||
},
|
||||
"requireSsoExemption": {
|
||||
"message": "Organization Owners and Administrators are exempt from this policy's enforcement."
|
||||
"message": "Organisasie-eienaars en -administrateurs is vrygestel van die afdwing van hierdie beleid."
|
||||
},
|
||||
"sendTypeFile": {
|
||||
"message": "Lêer"
|
||||
@@ -3510,7 +3603,7 @@
|
||||
"message": "Vertroude noodkontakte"
|
||||
},
|
||||
"noTrustedContacts": {
|
||||
"message": "You have not added any emergency contacts yet, invite a trusted contact to get started."
|
||||
"message": "U het nog geen noodkontakte toegevoeg nie, nooi ’n vertroude kontak uit om te begin."
|
||||
},
|
||||
"addEmergencyContact": {
|
||||
"message": "Voeg noodkontak toe"
|
||||
@@ -3519,7 +3612,7 @@
|
||||
"message": "Toegewys as noodkontak"
|
||||
},
|
||||
"noGrantedAccess": {
|
||||
"message": "You have not been designated as an emergency contact for anyone yet."
|
||||
"message": "U is nog deur niemand as noodkontak toegewys nie."
|
||||
},
|
||||
"inviteEmergencyContact": {
|
||||
"message": "Nooi noodkontak uit"
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Toestemmings"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Bestuur alle versamelings"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Bestuur toegekende versamelings"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Bestuur groepe"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Bestuur wagwoordherstel"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "’n Organisasiebeleid beïnvloed u eienaarskapopsies."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Deaktiveer persoonlike eienaarskap vir organisasiegebruikers"
|
||||
},
|
||||
@@ -3869,22 +3983,22 @@
|
||||
"message": "U wagwoordwenk kan nie dieselfde as u wagwoord wees nie."
|
||||
},
|
||||
"enrollPasswordReset": {
|
||||
"message": "Enroll in Password Reset"
|
||||
"message": "Skryf in vir wagwoordterugstel"
|
||||
},
|
||||
"enrolledPasswordReset": {
|
||||
"message": "Enrolled in Password Reset"
|
||||
"message": "Ingeskryf vir wagwoordterugstel"
|
||||
},
|
||||
"withdrawPasswordReset": {
|
||||
"message": "Withdraw from Password Reset"
|
||||
},
|
||||
"enrollPasswordResetSuccess": {
|
||||
"message": "Enrollment success!"
|
||||
"message": "Suksesvol ingeskryf!"
|
||||
},
|
||||
"withdrawPasswordResetSuccess": {
|
||||
"message": "Withdrawal success!"
|
||||
},
|
||||
"eventEnrollPasswordReset": {
|
||||
"message": "User $ID$ enrolled in password reset assistance.",
|
||||
"message": "Gebruiker $ID$ het vir wagwoordterugstelbystand ingeskryf.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Herstel wagwoord"
|
||||
},
|
||||
@@ -3932,7 +4055,7 @@
|
||||
"message": "Password reset success!"
|
||||
},
|
||||
"resetPasswordEnrollmentWarning": {
|
||||
"message": "Enrollment will allow organization administrators to change your master password. Are you sure you want to enroll?"
|
||||
"message": "Inskrywing stel organisasiebeheerders in staat om y hoofwagwoord te wysig. Is u seker u wil inskryf?"
|
||||
},
|
||||
"resetPasswordPolicy": {
|
||||
"message": "Bestuur wagwoordherstel"
|
||||
@@ -3941,22 +4064,22 @@
|
||||
"message": "Allow administrators in the organization to reset organization users' master password."
|
||||
},
|
||||
"resetPasswordPolicyWarning": {
|
||||
"message": "Users in the organization will need to self-enroll or be auto-enrolled before administrators can reset their master password."
|
||||
"message": "Gebruikers in die organisasie sal self moet inskryf of moet outomaties ingeskryf word voor beheerders hul hoofwagwoord sal kan terugstel."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnroll": {
|
||||
"message": "Automatic Enrollment"
|
||||
"message": "Outomatiese inskrywing"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "Alle gebruikers sal outomaties in wagwoordterugstel ingeskryf word sodra hul uitnodiging aanvaar is; hulle sal nie kan onttrek nie."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
"message": "Gebruikers wat reeds in die organisasie is sal nie terugwerkend vir wagwoordterugstel ingeskryf word nie. Hulle sal self moet inskryf voor beheerders hul hoofwagwoord kan terugstel."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Vereis dat nuwe gebruikers outomaties ingeskryf word"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
"message": "Hierdie organisasie het ’n ondernemingsbeleid wat u outomaties inskryf in die terugstel van u wagwoord. Inskrywing stel organisasiebeheerders in staat om u hoofwagwoord te wysig."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "Organization Keys response is null"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Is u seker u wil die volgende gebruikers verwyder? Die proses duur enkele sekondes en kan nie onderbreek of gekanselleer word nie."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Bevestig keuse"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Bestuur gebruikers moet geaktiveer wees met die Wagwoordherstel-toestemming"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Змяніць адрас электроннай пошты"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Новы адрас электроннай пошты"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Промяна на адреса за е-поща"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Действието ще промени електронната поща свързана с регистрацията Ви. Електронната поща, която ползвате за двустепенно удостоверяване няма да бъде променена. Можете да я промените в настройките на двустепенното удостоверяване."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Нов адрес за електронна поща"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Трезорът на организацията е напълно изчистен."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Ако продължите, ще изтриете всички папки и записи в трезора ви. Елементите, които са споделени и принадлежат на организации, няма да бъдат изтрити."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Политики"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Еднократна идентификация"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Редактиране на политика"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Потвърдил"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Собственик"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Потребителят с най-големи права, който може да управлява всички настройки на организацията ви."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Този потребител трябва да бъде независим от доставчика. Ако организацията прекъсне връзката си с доставчика, този потребител ще продължи да има права върху организацията."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Администратор"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Организация № $ID$ е създадена.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Организация № $ID$ е добавена.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Организация № $ID$ е премахната.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Устройство"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Въведете идентификатора на инсталацията"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Задайте ограничение на броя потребители за абонамента си. Когато то бъде достигнато, няма да можете да каните нови потребители."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Максимален брой потребители (по избор)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Максимална потенциална цена за потребител"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Добавяне на потребители",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Намаляване на потребители",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Промените в абонамента Ви ще предизвикат пропорционални промени в сумата, която плащате. Ако новопоканените потребители превишат ограничението на абонамента Ви, незабавно ще получите съответстващо пропорционално задължение за допълнителните потребители."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Абонаментът ви позволява $COUNT$ на брой потребители.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Ограничаване на абонамента (по избор)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Потребители в абонамента"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Абонаментът е обновен"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Допълнителни настройки"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Ако имате нужда от допълнителна помощ с управлението на абонамента си, свържете се с поддръжката."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Промените в абонамента Ви ще предизвикат пропорционални промени в сумата, която плащате. Ако новопоканените потребители превишат ограничението на абонамента Ви, незабавно ще получите съответстващо пропорционално задължение за допълнителните потребители."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Промените в абонамента Ви ще предизвикат пропорционални промени в сумата, която плащате. Ако новопоканените потребители превишат ограничението на абонамента Ви, незабавно ще получите съответстващо пропорционално задължение за допълнителните потребители, докато не бъде достигнато ограничението от $MAX$ потребители.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Промените в абонамента Ви ще предизвикат пропорционални промени в сумата, която плащате. Не можете да поканите повече от $COUNT$ потребители, без да увеличите ограничението в абонамента си.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Брой потребители за добавяне"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Вече може да затворите подпрозореца и да продължите в разширението."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Бизнес портал",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Всички възможности в екип плюс:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Свързване на еднократна идентификация"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Настройките на политиките са преместени и скоро тази страница ще бъдат махната. Натиснете по-долу, за да преминете към страницата за политиките в бизнес портала."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Една организация"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Права"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Достъп до бизнес портала"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Достъп до журналите"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Управление на всички колекции"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Създаване на нови колекции"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Управление на възложените колекции"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Редактиране на възложените колекции"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Изтриване на възложените колекции"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Управление на групи"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Управление на помощта при смяната на паролата"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "За да изключите тази политика, първо трябва ръчно да изключите политиката за еднократна идентификация."
|
||||
"disableRequiredError": {
|
||||
"message": "За да изключите тази политика, първо трябва ръчно да изключите $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Политика от някоя организация влияе на вариантите за собственост."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Политика на организацията забранява да внасяте елементи в личния си трезор."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Изключване на индивидуалното притежание за потребителите в организацията"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Подновяване на връзката за еднократна идентификация за потребител $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Смяна на паролата"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Наистина ли искате да премахнете следните потребители? Процесът може да отнеме няколко секунди и не може да бъде прекъснат или отменен."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Облик"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Изберете облика на трезора по уеб."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "От системата"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Тъмен"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Светъл"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Потвърждаване на избраните"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Управлението на потребителите трябва също да бъде включено с разрешението за „Управление на помощта при смяната на паролата“"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Настройка на доставчика"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Получихте покана да настроите нов доставчик. За да продължите, трябва да се впишете или да си направите нова регистрация в Битуорден."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Попълнете информацията по-долу, за да завършите настройката на доставчика. Ако имате въпроси, свържете се с поддръжката."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Име на доставчика"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Доставчикът е настроен."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Клиенти"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Администратор на доставчика"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Потребителят с най-големи права на достъп, който може да управлява всички настройки на доставчика, както и да има достъп до и да управлява клиентските организации."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Може да поканите потребител към доставчика си, като попълните адреса му за електронна поща, с който е регистриран в Битуорден, по-долу. В случай, че потребителят не е регистриран, той автоматично ще получи покана и да се регистрира."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Присъединяване към доставчика"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Получихте покана да се присъедините към посочения по-горе доставчик. За да приемете, ще трябва да се впишете в абонамента си към Битуорден. Ако нямате такъв, ще трябва да създадете безплатен абонамент и след това да се впишете в него."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Поканата не може да бъде приета. Помолете администратора на доставчика да ви прати нова."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Ще имате достъп до доставчика, след като администраторът му потвърди членството ви. Ще ви изпратим електронно писмо, когато това се случи."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Има потребители, които са приели поканата си, но все още трябва да бъдат потвърдени. Потвърждаването е необходимо, за да получат достъп до доставчика."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Доставчик"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Нова клиентска организация"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Създаване на нова клиентска организация, за която ще играете ролята на доставчик. Вие ще имате достъп до тази организация и ще можете да я управлявате."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Добавяне на съществуваща организация"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Моят доставчик"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Наистина ли искате да добавите $ORGANIZATION$ като клиент на $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Организацията беше успешно добавена към доставчика"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Доставчикът е изключен."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Доставчикът е обновен"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Вашият доставчик е $PROVIDER$. Той има административни и платежни права върху организацията Ви.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Организацията $ORGANIZATION$ беше отделена от доставчика Ви.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Наистина ли искате да отделите тази организация? Тя ще продължи да съществува, но вече няма да се управлява от доставчика."
|
||||
},
|
||||
"add": {
|
||||
"message": "Добавяне"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Главната парола е променена"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Промяна на главната парола"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Вашата главна парола наскоро е била сменена от администратор в организацията Ви. За да получите достъп до трезора, трябва да промените главната си парола сега. Това означава, че ще бъдете отписан(а) от текущата си сесия и ще трябва да се впишете отново. Активните сесии на други устройства може да продължат да бъдат активни още един час."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Време за достъп"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Настройте максимално време за достъп до трезора, което ще важи за всички потребители."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Максимално време за достъп до трезора"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Неправилно максимално време за достъп."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Настройките на организацията Ви влияят върху времето за достъп до трезора Ви. Максималното разрешено време за достъп е $HOURS$ час(а) и $MINUTES$ минути",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Персонализирано време за достъп до трезора"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Времето за достъп до трезора Ви превишава ограничението, определено от организацията Ви."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Забраняване на изнасянето на личния трезор"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Забранява на потребителите да изнасят данните от своя личен трезор."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Изнасянето на трезора е изключено"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Една или повече от настройките на организацията Ви не позволяват да изнасяте личния си трезор."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Изберете вид еднократна идентификация"
|
||||
},
|
||||
"type": {
|
||||
"message": "Вид"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Настройка на OpenID Connect"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Адрес за метаданни"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "Адрес за метаданни на SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Проверка на сертификатите"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Адрес на услугата за еднократна идентификация"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Адрес на услугата за еднократно отписване"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Настройката на еднократната идентификация е запазена."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Canvia el correu electrònic"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nou correu electrònic"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "S'ha purgat la caixa forta de l'organització."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Procediu a continuació per esborrar tots els elements i carpetes de la vostra caixa forta. Els elements compartits i que pertanyen a una organització no se suprimiran."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Polítiques"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edita la política"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmat"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Propietari"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "L'usuari d'accés més elevat que pot gestionar tots els aspectes de la vostra organització."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrador"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispositiu"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Introduïu la vostra id d'instal·lació"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Afegeix reserves",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Suprimeix llocs",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "La vostra subscripció permet un total de $COUNT$ usuaris.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Reserves a afegir"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Ara podeu tancar aquesta pestanya i continuar a l'extensió."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal empresarial",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Característiques de tots els equips, a més de:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Enllaça SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "La configuració de la política s'ha desplaçat i aquesta pàgina quedarà obsoleta aviat. Feu clic a continuació per utilitzar la pàgina de polítiques del portal empresarial."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organització única"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permisos"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Accedeix al portal empresarial"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Registres d'esdeveniments dels accessos"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Administra totes les col·leccions"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Administra les col·leccions assignades"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Administra els Grups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gestiona el restabliment de la contrasenya"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Per desactivar aquesta política, primer heu de desactivar manualment la política d’autenticació d’inici de sessió únic (SSO)."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Una política d’organització afecta les vostres opcions de propietat."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Desactiva la propietat personal per als usuaris de l'organització"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Restableix la contrasenya"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Esteu segur que voleu eliminar els usuaris següents? El procés pot tardar uns segons a completar-se i no es pot interrompre ni cancel·lar."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirma la selecció"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "L'administració d'usuaris també ha d'estar habilitada amb el permís de l'administració de restabliment de contrasenyes"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Změnit e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Pokračováním se změní e-mailová adresa vašeho účtu. E-mailová adresa používaná pro dvoufázové ověření se nezmění. Tuto e-mailovou adresu můžete změnit v nastavení dvoufázového přihlášení."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nový e-mail"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Trezor organizace byl vyprázdněn."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Trezor zpřístupněný poskytovatelem."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Chcete-li smazat všechny položky a složky ve vašem trezoru, pokračujte podle následujících pokynů. Položky sdílené s organizací nebudou smazány."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Zásady"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Upravit zásadu"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Potvrzeno"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Vlastník"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Uživatel s nejvyšším přístupem, který může spravovat všechny aspekty vaší organizace."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrátor"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Zařízení"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Zadejte ID instalace"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Přidat uživatele",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Odstranit uživatele",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Vaše předplatné vám dává prostor pro celkem $COUNT$ uživatelů.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Uživatelé k přidání"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Nyní můžete zavřít tuto kartu a pokračovat v rozšíření."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Podnikový portál",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Všechny funkce Týmů, navíc:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Propojit s podnikovým přihlášením"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Konfigurace přístupového práva byla přesunuta a tato stránka bude brzy zastaralá. Klikněte prosím níže a použijte místo toho stránku pravidel obchodního portálu."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Jedna organizace"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Oprávnění"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Přístup k podnikovému portálu"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Přístup k logům"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Spravovat všechny kolekce"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Spravovat přiřazené kolekce"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Spravovat skupiny"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Správa obnovení hesla"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Před vypnutím této zásady musíte ručně zakázat jednotné přihlášení (SSO)."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Zásady organizace ovlivňují možnosti vlastnictví."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Zakázat osobní vlastnictví pro uživatele organizace"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Obnovit heslo"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Opravdu chcete odebrat následující uživatele? Proces může trvat několik sekund a nelze jej přerušit ani zrušit."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Potvrdit vybrané"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Správa uživatelů musí být také povolena s oprávněním spravovat obnovení hesla"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Skift e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Fortsættes, ændres e-mailadressen for din konto, men ikke for tofaktorgodkendelsen. Denne kan ændres i indstillingerne for totrins-login."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Ny e-mail"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Organisationsboks tømt."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Boks tilgået af udbyder."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Fortsæt nedenfor for at slette alle elementer og mapper i din boks. Elementer, der tilhører en organisation du deler med, slettes ikke."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Politikker"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Redigér politik"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bekræftet"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Klientejer e-mail"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Ejer"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Den bruger med højeste rettigheder, som kan håndtere alle aspekter af din organisation."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Denne bruger bør være uafhængig af Udbyder. Er Udbyder adskilt fra organisationen, bibeholder denne bruger organisationsejerskabet."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrator"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Oprettet organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Tilføjet organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Fjernet organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Tilgået $ID$ organisationsboks.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Enhed"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Indtast dit installations-id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Opsæt en pladsgrænse for dit abonnement. Når grænsen nås, vil du ikke kunne invitere nye brugere."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maks. Pladsgrænse (valgfrit)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Maks. potentiel pladsudgift"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Tilføj pladser",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Fjern pladser",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Abonnementsjusteringer resulterer i forholdsmæssige ændringer af de samlede faktureringsbeløb. Overskrider nyinviterede brugere abonnementspladsgrænsen, modtages straks en forholdsmæssig opkrævning for de ekstra brugere."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Dit abonnement tillader i alt $COUNT$ brugere.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Begræns abonnement (valgfrit)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Abonnementspladser"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abonnement opdateret"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Yderligere indstillinger"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For yderligere hjælp til abonnementshåndtering, kontakt Kundesupport."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Abonnementsjusteringer resulterer i forholdsmæssige ændringer af de samlede faktureringsbeløb. Overskrider nyinviterede brugere abonnementspladsgrænsen, modtages straks en forholdsmæssig opkrævning for de ekstra brugere."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Abonnementsjusteringer resulterer i forholdsmæssige ændringer af de samlede faktureringsbeløb. Overskrider nyinviterede brugere abonnementspladsgrænsen, modtages straks en forholdsmæssig opkrævning for de ekstra brugere, indtil pladsgrænsen på $MAX$ er nået.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Abonnementsjusteringer resulterer i forholdsmæssige ændringer af de samlede faktureringsbeløb. Der kan ikke inviteres flere end $COUNT$ brugere uden at forøge abonnementspladserne.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Pladser at tilføje"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Du kan nu lukke denne fane og fortsætte i udvidelsen."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Virksomhedssportal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Alle teamfunktioner, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Tilknyt SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Politikkonfiguration er flyttet, og denne side vil snart blive udfaset. Klik nedenfor for at bruge siden Politikker i forretningsportalen i stedet."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Enkel organisation"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Tilladelser"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Tilgå Forretningsportal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Tilgå begivenhedslogger"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Håndtér alle samlinger"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Opret nye samlinger"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Redigér en samling"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Slet en samling"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Håndtér tildelte samlinger"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Redigér tildelte samlinger"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Slet tildelte samlinger"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Håndtér grupper"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Håndtér nulstilling af adgangskode"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Single Sign-On godkendelsespolitikken skal manuelt deaktiveres, før denne politik kan deaktiveres."
|
||||
"disableRequiredError": {
|
||||
"message": "For at deaktivere denne politik skal $POLICYNAME$-politikken først deaktiveres manuelt.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "En organisationspolitik påvirker dine ejerskabsmuligheder."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "En organisationspolitik har deaktiveret import af emner til din personlige boks."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Deaktivér personligt ejerskab for organisationsbrugere"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Nulstil SSO-link for bruger $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Nulstil adgangskode"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Er du sikker på, at du vil fjerne følgende brugere? Processen kan tage et par sekunder at fuldføre og kan ikke afbrydes eller annulleres."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Vælg et tema til din webboks."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Benyt systemtema"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Mørkt"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Lyst"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Bekræft valgte"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Administrér brugere skal også være aktiveret med tilladelsen Håndtér adgangskodenulstilling"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Udbyderopsætning"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Du er inviteret til at opsætte en ny udbyder. Log ind/opret en ny Bitwarden-konto for at fortsætte."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Angiv nedenstående oplysninger for at fuldføre udbyderopsætningen. Kontakt kundesupporten ved evt. spørgsmål."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Udbydernavn"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Udbyderen er nu opsat."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Klienter"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Udbyder Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Brugeren med den højeste adgang, der kan håndtere alle aspekter af din udbyder samt tilgå og håndtere klientorganisationer."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Servicebruger"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Servicebrugere kan få adgang til og administrere alle klientorganisationer."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invitér en ny bruger til din organisation ved at angive deres Bitwarden-konto e-mailadresse nedenfor. Har de ikke allerede har en Bitwarden-konto, anmodes de om at oprette én."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Bliv medlem hos Udbyder"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Du er inviteret til at blive medlem af organisationen anført ovenfor. For at acceptere invitationen, så log ind eller opret en Bitwarden-konto."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Kan ikke acceptere invitationen. Bed en udbyder-admin sende en ny invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Du kan tilgå denne udbyder, når en administrator bekræfter dit medlemskab. Du tilsendes en e-mail, når dette sker."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Du har brugere, som har accepteret deres invitation, men som stadig mangler at blive bekræftet. Brugere kan ikke tilgå udbyderen, før de er bekræftet."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Udbyder"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Ny Klientorganisation"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Opret en ny klientorganisation, der vil være tilknyttet dig som udbyderen. Du vil kunne tilgå og håndtere denne organisation."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Tilføj eksisterende organisation"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Min udbyder"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Sikker på, at du vil tilføje $ORGANIZATION$ til $PROVIDER$ som en klient?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organisation er tilføjet udbyderen"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Tilgår organisation vha. udbyderen $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Udbyder er deaktiveret."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Udbyder opdateret"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Din udbyder er $PROVIDER$. De har administrations- og faktureringsrettigheder for din organisation.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Organisationen $ORGANIZATION$ er blevet frigjort fra din udbyder.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Sikker på, at du vil frigøre denne organisation? Organisationen vil fortsat eksistere, men håndteres ikke længere af udbyderen."
|
||||
},
|
||||
"add": {
|
||||
"message": "Tilføj"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Hovedadgangskode opdateret"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Opdatér hovedadgangskode"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Din Hovedadgangskode blev for nylig ændret af en administrator i din organisation. For at tilgå Boksen, så opdatér din Hovedadgangskode nu. Fortsættes, logges du ud af den nuværende session, så du vil skulle logge ind igen. Aktive sessioner på andre enheder kan fortsat være aktive i op til én time."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Boks-timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Opsæt en maks. boks-timeout for alle brugere."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maks. Boks-timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Ugyldig Maks. Boks-timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Timer"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutter"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Dine organisationspolitikker påvirker din Boks-timeout. Maks. tilladte Boks-timeout er $HOURS$ tim(er) og $MINUTES$ minut(ter)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Tilpasset Boks-timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Din Boks-timeout overskrider den af din organisation fastsatte begrænsning."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Deaktivér Personlig Bokseksport"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Forbyder brugeres eksport af deres private Boksdata."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Bokseksport deaktiveret"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "En eller flere organisationspolitikker forhindrer eksport af din personlige Boks."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Vælg SSO-type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID-forbindelsesopsætning"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML-tjenesteudbyderopsætning"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML-identitetsudbyderopsætning"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback-sti"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Udlogget Callback-sti"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Myndighed"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Klient-ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Klienthemmelighed"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadataadresse"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC-omdirigeringsadfærd"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Enheds-ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata-URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Navne-ID format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Udgående Signeringsalgoritme"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signeringsadfærd"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Min. Indgående Logningsalgoritme"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validér certifikater"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Enheds-ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Bindingstype"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "SSO-URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Logout-tjeneste URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Offentligt Certifikat"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Udgående Signeringsalgoritme"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Tillad Uopfordret godkendelsessvar"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Deaktivér Udgående udlogningsanmodninger"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Ønsker Godkendelsesanmodninger signeret"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On opsætning er gemt."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "E-Mail-Adresse ändern"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Wenn du fortfährst, wird die E-Mail-Adresse deines Kontos geändert. Die E-Mail-Adresse für die Zwei-Faktor-Authentifizierung wird nicht geändert. Du kannst diese E-Mail-Adresse in den Zwei-Faktor Anmeldeeinstellungen ändern."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Neue E-Mail-Adresse"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Gelöschter Organisations-Tresor."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vom Anbieter zugegriffener Tresor."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Gehen Sie wie folgt vor, um alle Einträge und Ordner in Ihrem Tresor zu löschen. Einträge, die zu einer Organisation gehören, die Sie mit anderen teilen, werden nicht gelöscht."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Richtlinien"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-on"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Richtlinie bearbeiten"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bestätigt"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Kunden-E-Mail"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Besitzer"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Der Benutzer mit dem höchsten Berechtigungsgrad, der alle Aspekte Ihrer Organisation verwalten kann."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Dieser Benutzer sollte unabhängig vom Anbieter sein. Wenn der Anbieter von der Organisation getrennt wird, behält dieser Benutzer das Eigentum an der Organisation."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrator"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organisation $ID$ erstellt.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organisation $ID$ hinzugefügt.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organisation $ID$ entfernt.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Auf den $ID$ Organisations-Tresor zugegriffen.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Gerät"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Geben Sie Ihre Installations-ID ein"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Lege ein Benutzerplätze-Limit für dein Abo fest. Sobald dieses Limit erreicht ist, kannst du keine neuen Benutzer mehr einladen."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximales Benutzerplätze-Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Maximal mögliche Benutzerplatz-Kosten"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Benutzerplätze hinzufügen",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Benutzerplätze entfernen",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Anpassungen an deinem Abo führen zu anteiligen Änderungen an deiner Rechnungssumme. Wenn neu eingeladene Benutzer deine Abo-Benutzerplätze überschreiten, wird dir sofort eine anteilige Gebühr für die zusätzlichen Benutzer berechnet."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Ihr Abo erlaubt insgesamt $COUNT$ Benutzer.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Abo begrenzen (optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Abo-Benutzerplätze"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abo aktualisiert"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Weitere Optionen"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Für weitere Hilfe bei der Verwaltung deines Abos, wende dich bitte an den Kundenservice."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Anpassungen an deinem Abo führen zu anteiligen Änderungen an deiner Rechnungssumme. Wenn neu eingeladene Benutzer deine Abo-Benutzerplätze überschreiten, wird dir sofort eine anteilige Gebühr für die zusätzlichen Benutzer berechnet."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Anpassungen an deinem Abo führen zu anteiligen Änderungen an deiner Rechnungssumme. Wenn neu eingeladene Benutzer deine Abo-Benutzerplätze überschreiten, wird dir sofort eine anteilige Gebühr für die zusätzlichen Benutzer berechnet, bis dein Benutzerlimit von $MAX$ erreicht ist.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Anpassungen an deinem Abo führen zu anteiligen Änderungen an deiner Rechnungssumme. Du kannst nicht mehr als $COUNT$ Benutzer einladen ohne deine Abo-Benutzerplätze zu erhöhen.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Hinzufügen von Benutzerplätzen"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Sie können diesen Tab nun schließen und in der Erweiterung fortfahren."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Unternehmensportal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Alle Teams Funktionen, zusätzlich:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO verknüpfen"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Die Richtlinien-Konfiguration wurde verschoben und diese Seite wird bald nicht mehr aktualisiert. Benutzen Sie stattdessen über den Link die Richtlinien-Seite des Unternehmensportal."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Einzelne Organisation"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Berechtigungen"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Zugriff auf Unternehmensportal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Zugriff auf Ereignisprotokolle"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Alle Sammlungen verwalten"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Neue Sammlungen erstellen"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Beliebige Sammlung bearbeiten"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Beliebige Sammlung löschen"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Zugewiesene Sammlungen verwalten"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Zugewiesene Sammlungen bearbeiten"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Zugewiesene Sammlungen löschen"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gruppen verwalten"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Passwort Zurücksetzung verwalten"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Sie müssen die Single Sign-On Authentifizierungsrichtlinie manuell deaktivieren, bevor diese Richtlinie deaktiviert werden kann."
|
||||
"disableRequiredError": {
|
||||
"message": "Du musst die $POLICYNAME$-Richtlinie manuell deaktivieren, bevor diese Richtlinie deaktiviert werden kann.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Eine Organisationsrichtlinie beeinflusst Ihre Eigentümer-Optionen."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Eine Organisationsrichtlinie hat das Importieren von Einträgen in deinem persönlichen Tresor deaktiviert."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Persönliches Eigentum für Organisationsbenutzer deaktivieren"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "SSO Link für Benutzer $ID$ zurücksetzen",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Passwort zurücksetzen"
|
||||
},
|
||||
@@ -3965,10 +4088,10 @@
|
||||
"message": "Die Rückmeldung der Passwort Details Zurücksetzung ist null"
|
||||
},
|
||||
"trashCleanupWarning": {
|
||||
"message": "Chiffren, die länger als 30 Tage im Papierkorb waren, werden automatisch gelöscht."
|
||||
"message": "Einträge, die länger als 30 Tage im Papierkorb waren, werden automatisch gelöscht."
|
||||
},
|
||||
"trashCleanupWarningSelfHosted": {
|
||||
"message": "Chiffren, die einige Zeit im Papierkorb waren, werden automatisch gelöscht."
|
||||
"message": "Einträge, die einige Zeit im Papierkorb waren, werden automatisch gelöscht."
|
||||
},
|
||||
"passwordPrompt": {
|
||||
"message": "Master-Passwort erneut abfragen"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Bist du sicher, dass du die folgenden Benutzer entfernen möchtest? Der Prozess kann einige Sekunden dauern und kann nicht unterbrochen oder abgebrochen werden."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Design"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Wähle ein Design für deinen Web-Tresor."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Benutze Systemdesign"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dunkel"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Hell"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Auswahl bestätigen"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Benutzer verwalten muss ebenfalls mit der Passwort zurücksetzen Berechtigung aktiviert werden"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Anbieter-Einrichtung"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Du wurdest eingeladen, einen neuen Anbieter einzurichten. Um fortzufahren, musst du dich anmelden oder ein neues Bitwarden-Konto erstellen."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Bitte gib unten die Details ein, um die Anbieter-Einrichtung abzuschließen. Kontaktiere den Kundenservice, falls du Fragen hast."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Anbietername"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Der Anbieter wurde eingerichtet."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Kunden"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Anbieter-Administrator"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Der Benutzer mit dem höchsten Zugriffsrechten, der alle Aspekte Ihres Anbieters verwalten kann, sowie auf die Kunden-Organisationen zugreifen und diese verwalten kann."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service Benutzer"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service Benutzer können auf alle Kunden-Organisationen zugreifen und sie verwalten."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Lade einen neuen Benutzer zu deinem Anbieter ein, indem du die E-Mail-Adresse seines Bitwarden-Kontos unten einträgst. Falls dieser noch kein Bitwarden-Konto besitzt, wird er/sie zur Erstellung eines neuen Kontos aufgefordert."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Anbieter beitreten"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Du wurdest eingeladen, dem oben genannten Anbieter beizutreten. Um die Einladung anzunehmen, musst du ein Bitwarden-Konto erstellen, oder dich mit deinem bestehenden Bitwarden-Konto anmelden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Einladung konnte nicht angenommen werden. Bitte einen Anbieter-Administrator darum, eine neue Einladung zu versenden."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Du kannst dem Anbieter beitreten, sobald ein Administrator deine Mitgliedschaft bestätigt hat. Wir werden dich dann per E-Mail benachrichtigen."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Du hast Benutzer, die deine Einladung angenommen haben, aber noch bestätigt werden müssen. Benutzer haben erst Zugriff auf den Anbieter, wenn sie bestätigt wurden."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Anbieter"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Neue Kunden-Organisation"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Erstelle eine neue Kunden-Organisation, die dir als Anbieter zugeordnet wird. Du kannst auf diese Organisation zugreifen und diese verwalten."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Bestehende Organisation hinzufügen"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Mein Anbieter"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Bist du sicher, dass du $ORGANIZATION$ als Kunde zu $PROVIDER$ hinzufügen möchtest?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organisation wurde erfolgreich zum Anbieter hinzugefügt"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Zugriff auf Organisation mit Anbieter $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Anbieter ist deaktiviert."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Anbieter aktualisiert"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Dein Anbieter ist $PROVIDER$. Dieser hat Verwaltungs- und Abrechnungsrechte für deine Organisation.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Die Organisation $ORGANIZATION$ wurde von deinem Anbieter getrennt.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Bist du sicher, dass du diese Organisation trennen möchten? Die Organisation wird weiterhin existieren, wird aber nicht mehr vom Anbieter verwaltet."
|
||||
},
|
||||
"add": {
|
||||
"message": "Hinzufügen"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Master-Passwort aktualisiert"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Master-Passwort aktualisieren"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Dein Master-Passwort wurde kürzlich von einem Administrator deiner Organisation geändert. Um auf den Tresor zuzugreifen, musst du dein Master-Passwort jetzt aktualisieren. Wenn Du fortfährst, wirst du aus der aktuellen Sitzung abgemeldet und eine erneute Anmeldung ist erforderlich. Aktive Sitzungen auf anderen Geräten können bis zu einer Stunde weiterhin aktiv bleiben."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Tresor-Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Konfiguriere ein maximales Tresor-Timeout für alle Benutzer."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximales Tresor-Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Ungültiger maximaler Tresor-Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Stunden"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuten"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Deine Unternehmensrichtlinien beeinflussen dein Tresor-Timeout. Das maximal zulässige Tresor-Timeout ist $HOURS$ Stunde(n) und $MINUTES$ Minute(n)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Benutzerdefinierter Tresor-Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Dein Tresor-Timeout überschreitet die von deinem Unternehmen festgelegte Beschränkung."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Persönlichen Tresor-Export deaktivieren"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Benutzern den Export ihrer privaten Tresor-Daten verbieten."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Tresor-Export deaktiviert"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Eine oder mehrere Unternehmensrichtlinien verhindern es, dass du deinen persönlichen Tresor exportieren kannst."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "SSO-Typ auswählen"
|
||||
},
|
||||
"type": {
|
||||
"message": "Typ"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Konfiguration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Dienstanbieter Konfiguration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identitätsanbieter Konfiguration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Rückruf Pfad"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Rückruf Pfad abgemeldet"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Zertifizierungsstelle"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client-ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Geheimnis"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadaten Adresse"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Weiterleitungsverhalten"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Ansprüche vom Benutzer Info-Endpunkt erhalten"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Zusätzliche/Benutzerdefinierte Bereiche (durch Komma getrennt)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Zusätzliche/benutzerdefinierte Client-ID Anspruchstypen (durch Komma getrennt)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Zusätzliche/Benutzerdefinierte E-Mail Anspruchstypen (durch Komma getrennt)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Zusätzliche/Benutzerdefinierte Namen Anspruchstypen (durch Komma getrennt)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Angeforderte Authentifizierungskontextklassen Referenzwerte (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "\"acr\" Anspruchswert in Antwort erwartet (acr Validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entitäts-ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadaten-URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Namen ID-Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Ausgehender Signaturalgorithmus"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signaturverhalten"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimal eingehender Signaturalgorithmus"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Möchte Zusicherungen signieren"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Zertifikate überprüfen"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entitäts-ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Bindungstyp"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign-On Service-URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log-Out Service-URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artefaktauflösungsservice-URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Öffentliches X509-Zertifikat"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Ausgehender Signaturalgorithmus"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Erlaube unaufgeforderte Authentifizierungsantwort"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Ausgehende Abmeldeanfragen deaktivieren"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Möchte Authentifizierungsanfragen signieren"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On Konfiguration wurde gespeichert."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -361,7 +361,7 @@
|
||||
"message": "Κοινοποίηση"
|
||||
},
|
||||
"moveToOrganization": {
|
||||
"message": "Move to Organization"
|
||||
"message": "Μετακίνηση στον Οργανισμό"
|
||||
},
|
||||
"valueCopied": {
|
||||
"message": "$VALUE$ αντιγράφηκε",
|
||||
@@ -404,7 +404,7 @@
|
||||
"message": "Vault"
|
||||
},
|
||||
"moveSelectedToOrg": {
|
||||
"message": "Move Selected to Organization"
|
||||
"message": "Μετακίνηση Επιλεγμένων στον Οργανισμό"
|
||||
},
|
||||
"deleteSelected": {
|
||||
"message": "Διαγραφή Επιλεγμένων"
|
||||
@@ -452,7 +452,7 @@
|
||||
"message": "Επεξεργασμένο στοιχείο"
|
||||
},
|
||||
"movedItemToOrg": {
|
||||
"message": "$ITEMNAME$ moved to $ORGNAME$",
|
||||
"message": "$ITEMNAME$ μετακινήθηκε στο $ORGNAME$",
|
||||
"placeholders": {
|
||||
"itemname": {
|
||||
"content": "$1",
|
||||
@@ -465,7 +465,7 @@
|
||||
}
|
||||
},
|
||||
"movedItemsToOrg": {
|
||||
"message": "Selected items moved to $ORGNAME$",
|
||||
"message": "Τα επιλεγμένα αντικείμενα μετακινήθηκαν στο $ORGNAME$",
|
||||
"placeholders": {
|
||||
"orgname": {
|
||||
"content": "$1",
|
||||
@@ -769,10 +769,10 @@
|
||||
"message": "Οργανισμοί"
|
||||
},
|
||||
"moveToOrgDesc": {
|
||||
"message": "Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved."
|
||||
"message": "Επιλέξτε έναν οργανισμό στον οποίο θέλετε να μετακινήσετε αυτό το στοιχείο. Η μετακίνηση σε έναν οργανισμό μεταβιβάζει την ιδιοκτησία του στοιχείου σε αυτό τον οργανισμό. Δεν θα είστε πλέον ο άμεσος ιδιοκτήτης αυτού του στοιχείου μόλις το μετακινήσετε."
|
||||
},
|
||||
"moveManyToOrgDesc": {
|
||||
"message": "Choose an organization that you wish to move these items to. Moving to an organization transfers ownership of the items to that organization. You will no longer be the direct owner of these items once they have been moved."
|
||||
"message": "Επιλέξτε έναν οργανισμό στον οποίο θέλετε να μετακινήσετε αυτά τα στοιχεία. Η μετακίνηση σε έναν οργανισμό μεταβιβάζει την ιδιοκτησία του στοιχείου σε αυτό τον οργανισμό. Δεν θα είστε πλέον ο άμεσος ιδιοκτήτης αυτού του στοιχείου μόλις το μετακινήσετε."
|
||||
},
|
||||
"collectionsDesc": {
|
||||
"message": "Επεξεργαστείτε τις συλλογές με τις οποίες μοιράζεται αυτό το στοιχείο. Μόνο οι χρήστες των οργανισμών που έχουν πρόσβαση σε αυτές τις συλλογές θα μπορούν να βλέπουν αυτό το στοιχείο."
|
||||
@@ -796,7 +796,7 @@
|
||||
}
|
||||
},
|
||||
"moveSelectedItemsCountDesc": {
|
||||
"message": "You have selected $COUNT$ item(s). $MOVEABLE_COUNT$ item(s) can be moved to an organization, $NONMOVEABLE_COUNT$ cannot.",
|
||||
"message": "Έχετε επιλέξει $COUNT$ αντικείμενα. $MOVEABLE_COUNT$ αντικείμενα μπορούν να μετακινηθούν σε έναν οργανισμό, $NONMOVEABLE_COUNT$ δεν μπορεί.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -837,7 +837,7 @@
|
||||
"message": "Πληκτρολογήστε τον κύριο κωδικό για εξαγωγή των δεδομένων vault."
|
||||
},
|
||||
"export": {
|
||||
"message": "Export"
|
||||
"message": "Εξαγωγή"
|
||||
},
|
||||
"exportVault": {
|
||||
"message": "Εξαγωγή Vault"
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Αλλαγή Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Η διαδικασία θα αλλάξει τη διεύθυνση email του λογαριασμού σας. Δεν θα αλλάξει το email που χρησιμοποιείται για έλεγχο ταυτότητας δύο παραγόντων. Μπορείτε να αλλάξετε αυτό το email στις ρυθμίσεις σύνδεσης δύο βημάτων."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Νέο Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Εκκαθάριση vault οργανισμού."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault με πρόσβαση από τον πάροχο."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Προχωρήστε παρακάτω για να διαγράψετε όλα τα στοιχεία και τους φακέλους στo vault σας. Τα στοιχεία που ανήκουν σε έναν οργανισμό των οποίων τα στοιχεία κοινοποιείτε, δεν θα διαγραφούν."
|
||||
},
|
||||
@@ -1059,7 +1065,7 @@
|
||||
"message": "Δεν υπάρχει κάτι για εισαγωγή."
|
||||
},
|
||||
"importEncKeyError": {
|
||||
"message": "Error decrypting the exported file. Your encryption key does not match the encryption key used export the data."
|
||||
"message": "Σφάλμα αποκρυπτογράφησης του εξαγόμενου αρχείου. Το κλειδί κρυπτογράφησης δεν ταιριάζει με το κλειδί κρυπτογράφησης που χρησιμοποιήθηκε για την εξαγωγή των δεδομένων."
|
||||
},
|
||||
"selectFormat": {
|
||||
"message": "Επιλέξτε μορφή του αρχείου εισαγωγής"
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Πολιτικές"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Απλή Σύνδεση"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Επεξεργασία Πολιτικής"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Επιβεβαιωμένο"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Email Ιδιοκτήτη Πελάτη"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Ιδιοκτήτης"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Χρήστης με υψηλό βαθμό πρόσβασης που μπορεί να διαχειριστεί όλες τις πτυχές του οργανισμού σας."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Αυτός ο χρήστης πρέπει να είναι ανεξάρτητος από τον Πάροχο. Εάν ο Πάροχος δεν συνδέεται με τον οργανισμό, αυτός ο χρήστης θα διατηρήσει την ιδιοκτησία του οργανισμού."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Διαχειριστής"
|
||||
},
|
||||
@@ -2353,7 +2368,7 @@
|
||||
}
|
||||
},
|
||||
"movedItemIdToOrg": {
|
||||
"message": "Moved item $ID$ to an organization.",
|
||||
"message": "Μετακινήθηκε το στοιχείο $ID$ σε έναν οργανισμό.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Δημιουργήθηκε οργανισμός $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Προστέθηκε οργανισμός $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Ο οργανισμός $ID$ αφαιρέθηκε.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Πρόσβαση στο $ID$ vault οργανισμού.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Συσκευή"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Εισάγετε το αναγνωριστικό εγκατάστασης"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Ορίστε ένα όριο θέσης για τη συνδρομή σας. Μόλις συμπληρωθεί αυτό το όριο, δεν θα μπορείτε να προσκαλέσετε νέους χρήστες."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Μέγιστο Όριο Θέσης (Προαιρετικό)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Μέγιστο δυνητικό κόστος θέσης"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Προσθήκη Θέσεων",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Αφαίρεση Θέσεων",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Οι προσαρμογές της συνδρομής σας θα έχουν ως αποτέλεσμα αλλαγές στα σύνολα τιμολόγησης. Εάν οι νεοπροσκεκλημένοι χρήστες υπερβούν τις συνδρομητικές σας θέσεις, θα λάβετε αμέσως μια αναθεωρημένη χρέωση για τους πρόσθετους χρήστες."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Η συνδρομή σας, επιτρέπει συνολικά $COUNT$ χρήστες.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Όριο Συνδρομής (Προαιρετικό)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Θέσεις Συνδρομής"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Η συνδρομή ενημερώθηκε"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Πρόσθετες Επιλογές"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Για πρόσθετη βοήθεια στη διαχείριση της συνδρομής σας, επικοινωνήστε με την Υποστήριξη πελατών."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Οι προσαρμογές της συνδρομής σας θα έχουν ως αποτέλεσμα αλλαγές στα σύνολα τιμολόγησης. Εάν οι νεοπροσκεκλημένοι χρήστες υπερβούν τις συνδρομητικές σας θέσεις, θα λάβετε αμέσως μια αναθεωρημένη χρέωση για τους πρόσθετους χρήστες."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Οι προσαρμογές της συνδρομής σας θα έχουν ως αποτέλεσμα αλλαγές στα σύνολα τιμολόγησης. Εάν οι νεοπροσκεκλημένοι χρήστες υπερβούν τις θέσεις συνδρομής, θα λάβετε αμέσως μια τροποποιημένη χρέωση για τους επιπλέον χρήστες μέχρι να συμπληρωθεί το όριο θέσης $MAX$ σας.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Οι προσαρμογές της συνδρομής σας θα οδηγήσουν σε αναλογικές αλλαγές στα συνολικά τιμολόγιά σας. Δεν μπορείτε να προσκαλέσετε περισσότερους από $COUNT$ χρήστες χωρίς να αυξήσετε τις συνδρομητικές σας θέσεις.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Θέσεις για Προσθήκη"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Μπορείτε να κλείσετε αυτήν την καρτέλα τώρα και να συνεχίσετε στην επέκταση."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Επιχειρηματική πύλη",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Όλα τα χαρακτηριστικά του Teams, συν:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Σύνδεσμος SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Η διαμόρφωση πολιτικής μετακινήθηκε και σύντομα αυτή η σελίδα θα καταργηθεί. Κάντε κλικ παρακάτω για να χρησιμοποιήσετε τη σελίδα πολιτικών Business Portal."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Ενιαίος οργανισμός"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Άδειες"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Πρόσβαση Στην Επιχειρηματική Πύλη"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Αρχείο Καταγραφής Πρόσβασης"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Διαχείριση Όλων Των Συλλογών"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Δημιουργία Νέων Συλλογών"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Επεξεργασία Οποιασδήποτε Συλλογής"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Διαγραφή Οποιασδήποτε Συλλογής"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Διαχείριση Αντιστοιχισμένων Συλλογών"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Επεξεργασία Αντιστοιχισμένων Συλλογών"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Διαγραφή Ανατεθειμένων Συλλογών"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Διαχείριση Ομάδων"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Διαχείριση Επαναφοράς Κωδικού Πρόσβασης"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Πρέπει να απενεργοποιήσετε χειροκίνητα την πολιτική ελέγχου ταυτότητας μιας σύνδεσης πριν αυτή η πολιτική μπορεί να απενεργοποιηθεί."
|
||||
"disableRequiredError": {
|
||||
"message": "Πρέπει να απενεργοποιήσετε χειροκίνητα την πολιτική $POLICYNAME$ πριν απενεργοποιηθεί αυτή η πολιτική.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Μια πολιτική οργάνωσης επηρεάζει τις επιλογές ιδιοκτησίας σας."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Μια οργανωτική πολιτική έχει απενεργοποιήσει την εισαγωγή στοιχείων στο προσωπικό θησαυ/κιο σας."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Απενεργοποίηση προσωπικής ιδιοκτησίας για χρήστες οργανισμού"
|
||||
},
|
||||
@@ -3902,7 +4016,16 @@
|
||||
}
|
||||
},
|
||||
"eventAdminPasswordReset": {
|
||||
"message": "Master password reset for user $ID$.",
|
||||
"message": "Επαναφορά κύριου κωδικού πρόσβασης για το χρήστη $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Επαναφορά συνδέσμου Sso για το χρήστη $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
@@ -3911,10 +4034,10 @@
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
"message": "Επαναφορά Κωδικού"
|
||||
},
|
||||
"resetPasswordLoggedOutWarning": {
|
||||
"message": "Proceeding will log $NAME$ out of their current session, requiring them to log back in. Active sessions on other devices may continue to remain active for up to one hour.",
|
||||
"message": "Η διαδικασία θα αποσυνδέσει το $NAME$ από την τρέχουσα περίοδο λειτουργίας του, απαιτώντας από αυτούς να συνδεθούν. Οι ενεργές συνεδρίες σε άλλες συσκευές ενδέχεται να συνεχίσουν να είναι ενεργές για μία ώρα.",
|
||||
"placeholders": {
|
||||
"name": {
|
||||
"content": "$1",
|
||||
@@ -3923,46 +4046,46 @@
|
||||
}
|
||||
},
|
||||
"thisUser": {
|
||||
"message": "this user"
|
||||
"message": "αυτός ο χρήστης"
|
||||
},
|
||||
"resetPasswordMasterPasswordPolicyInEffect": {
|
||||
"message": "One or more organization policies require the master password to meet the following requirements:"
|
||||
"message": "Σε μία ή περισσότερες πολιτικές του οργανισμού απαιτείται ο κύριος κωδικός να πληρεί τις ακόλουθες απαιτήσεις:"
|
||||
},
|
||||
"resetPasswordSuccess": {
|
||||
"message": "Password reset success!"
|
||||
"message": "Επιτυχία επαναφοράς κωδικού!"
|
||||
},
|
||||
"resetPasswordEnrollmentWarning": {
|
||||
"message": "Enrollment will allow organization administrators to change your master password. Are you sure you want to enroll?"
|
||||
"message": "Η εγγραφή θα επιτρέψει στους διαχειριστές του οργανισμού να αλλάξουν τον κύριο κωδικό σας. Είστε σίγουροι ότι θέλετε να εγγραφείτε;"
|
||||
},
|
||||
"resetPasswordPolicy": {
|
||||
"message": "Master Password Reset"
|
||||
"message": "Επαναφορά Κύριου Κωδικού Πρόσβασης"
|
||||
},
|
||||
"resetPasswordPolicyDescription": {
|
||||
"message": "Allow administrators in the organization to reset organization users' master password."
|
||||
"message": "Επιτρέψτε στους διαχειριστές του οργανισμού να επαναφέρουν τον κύριο κωδικό πρόσβασης των χρηστών."
|
||||
},
|
||||
"resetPasswordPolicyWarning": {
|
||||
"message": "Users in the organization will need to self-enroll or be auto-enrolled before administrators can reset their master password."
|
||||
"message": "Οι χρήστες του οργανισμού θα πρέπει να αυτο-εγγραφούν ή να εγγραφούν αυτόματα πριν οι διαχειριστές μπορούν να επαναφέρουν τον κύριο κωδικό πρόσβασής τους."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnroll": {
|
||||
"message": "Automatic Enrollment"
|
||||
"message": "Αυτόματη Εγγραφή"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "Όλοι οι χρήστες θα εγγραφούν αυτόματα στην επαναφορά κωδικού πρόσβασης μόλις γίνει αποδεκτή η πρόσκληση τους."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
"message": "Οι χρήστες που βρίσκονται ήδη στον οργανισμό δεν θα εγγραφούν αναδρομικά στην επαναφορά κωδικού πρόσβασης. Θα χρειαστεί να κάνουν αυτόματη εγγραφή πριν οι διαχειριστές μπορέσουν να επαναφέρουν τον κωδικό πρόσβασης τους."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Αυτόματη εγγραφή νέων χρηστών"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
"message": "Αυτός ο οργανισμός έχει μια επιχειρηματική πολιτική που θα σας εγγράψει αυτόματα στην επαναφορά κωδικού. Η εγγραφή θα επιτρέψει στους διαχειριστές του οργανισμού να αλλάξουν τον κύριο κωδικό πρόσβασης σας."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "Organization Keys response is null"
|
||||
"message": "Η απάντηση των κλειδιών οργανισμού είναι κενή"
|
||||
},
|
||||
"resetPasswordDetailsError": {
|
||||
"message": "Reset Password Details response is null"
|
||||
"message": "Επαναφορά κωδικού πρόσβασης Η απάντηση λεπτομερειών είναι κενή"
|
||||
},
|
||||
"trashCleanupWarning": {
|
||||
"message": "Τα Ciphers που βρίσκονται σε κάδο απορριμμάτων περισσότερες από 30 ημέρες θα διαγράφονται αυτόματα."
|
||||
@@ -3980,42 +4103,350 @@
|
||||
"message": "Αυτή η ενέργεια προστατεύεται. Για να συνεχίσετε, πληκτρολογήστε ξανά τον κύριο κωδικό πρόσβασης για να επαληθεύσετε την ταυτότητά σας."
|
||||
},
|
||||
"reinviteSelected": {
|
||||
"message": "Resend Invitations"
|
||||
"message": "Επαναποστολή Προσκλήσεων"
|
||||
},
|
||||
"noSelectedUsersApplicable": {
|
||||
"message": "This action is not applicable to any of the selected users."
|
||||
"message": "Αυτή η ενέργεια δεν ισχύει για κανέναν από τους επιλεγμένους χρήστες."
|
||||
},
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
"message": "Είστε βέβαιοι ότι θέλετε να καταργήσετε τους ακόλουθους χρήστες? Η διαδικασία μπορεί να διαρκέσει μερικά δευτερόλεπτα για να ολοκληρωθεί και δεν μπορεί να διακοπεί ή να ακυρωθεί."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Θέμα"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Επιλέξτε ένα θέμα για το web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Χρήση Θέματος Συστήματος"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Σκοτεινό"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Φωτεινό"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
"message": "Επιβεβαίωση Επιλεγμένων"
|
||||
},
|
||||
"bulkConfirmStatus": {
|
||||
"message": "Bulk action status"
|
||||
"message": "Κατάσταση μαζικής ενέργειας"
|
||||
},
|
||||
"bulkConfirmMessage": {
|
||||
"message": "Confirmed successfully."
|
||||
"message": "Επιβεβαιώθηκε επιτυχώς."
|
||||
},
|
||||
"bulkReinviteMessage": {
|
||||
"message": "Reinvited successfully."
|
||||
"message": "Επιτυχής ανάκληση."
|
||||
},
|
||||
"bulkRemovedMessage": {
|
||||
"message": "Removed successfully"
|
||||
"message": "Καταργήθηκε με επιτυχία"
|
||||
},
|
||||
"bulkFilteredMessage": {
|
||||
"message": "Excluded, not applicable for this action."
|
||||
"message": "Εξαιρείται, δεν ισχύει για αυτήν την ενέργεια."
|
||||
},
|
||||
"fingerprint": {
|
||||
"message": "Fingerprint"
|
||||
"message": "Αποτύπωμα"
|
||||
},
|
||||
"removeUsers": {
|
||||
"message": "Remove Users"
|
||||
"message": "Αφαίρεση Χρηστών"
|
||||
},
|
||||
"error": {
|
||||
"message": "Error"
|
||||
"message": "Σφάλμα"
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
"message": "Οι Διαχειριστές Χρηστών πρέπει επίσης να είναι ενεργοποιημένοι με την άδεια Διαχείρισης Κωδικού Επαναφοράς"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Ρύθμιση Παρόχου"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Έχετε προσκληθεί να ρυθμίσετε έναν νέο πάροχο. Για να συνεχίσετε, πρέπει να συνδεθείτε ή να δημιουργήσετε ένα νέο λογαριασμό Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Παρακαλούμε εισάγετε τα παρακάτω στοιχεία για να ολοκληρώσετε την εγκατάσταση του παρόχου. Επικοινωνήστε με την Υποστήριξη πελατών αν έχετε οποιεσδήποτε απορίες."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Όνομα παρόχου"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Ο πάροχος έχει ρυθμιστεί."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Πελάτες"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Διαχειριστής Παρόχου"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Ο χρήστης με την υψηλότερη πρόσβαση που μπορεί να διαχειριστεί όλες τις πτυχές του παρόχου σας, καθώς και την πρόσβαση και τη διαχείριση των οργανισμών-πελατών."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Υπηρεσία Χρήστη"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Οι χρήστες υπηρεσιών μπορούν να έχουν πρόσβαση και να διαχειρίζονται όλους τους οργανισμούς πελατών."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Προσκαλέστε έναν νέο χρήστη στον πάροχο σας εισάγοντας το email λογαριασμού Bitwarden παρακάτω. Εάν δεν έχουν ήδη λογαριασμό Bitwarden, θα τους ζητηθεί να δημιουργήσουν ένα νέο λογαριασμό."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Συμμετοχή Στον Πάροχο"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Έχετε προσκληθεί να συμμετάσχετε στον παραπάνω πάροχο. Για να αποδεχτείτε την πρόσκληση, πρέπει να συνδεθείτε ή να δημιουργήσετε ένα νέο λογαριασμό Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Αδυναμία αποδοχής πρόσκλησης. Ζητήστε από τον διαχειριστή του παρόχου να στείλει μια νέα πρόσκληση."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Μπορείτε να αποκτήσετε πρόσβαση σε αυτόν τον πάροχο μόλις ένας διαχειριστής επιβεβαιώσει τη συμμετοχή σας. Θα σας στείλουμε ένα email όταν συμβεί αυτό."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Έχετε χρήστες που έχουν αποδεχθεί την πρόσκληση τους, αλλά πρέπει ακόμα να επιβεβαιωθούν. Οι χρήστες δεν θα έχουν πρόσβαση στον πάροχο μέχρι να επιβεβαιωθούν."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Πάροχος"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Νέος Οργανισμός Πελάτη"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Δημιουργήστε ένα νέο οργανισμό πελάτη που θα συσχετιστεί με εσάς ως πάροχο. Θα είστε σε θέση να έχετε πρόσβαση και να διαχειριστείτε αυτόν τον οργανισμό."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Προσθήκη Υπάρχοντος Οργανισμού"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Ο Πάροχος Μου"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Είστε βέβαιοι ότι θέλετε να προσθέσετε $ORGANIZATION$ ως πελάτης στο $PROVIDER$;",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Ο οργανισμός προστέθηκε με επιτυχία στον πάροχο"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Πρόσβαση στον οργανισμό χρησιμοποιώντας τον πάροχο $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Ο πάροχος είναι απενεργοποιημένος."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Ο πάροχος ενημερώθηκε"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Ο πάροχος σας είναι $PROVIDER$. Έχουν δικαιώματα διαχείρισης και χρέωσης για τον οργανισμό σας.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Ο οργανισμός $ORGANIZATION$ έχει αποσπαστεί από τον πάροχο σας.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Είστε βέβαιοι ότι θέλετε να αποσυνδέσετε αυτόν τον οργανισμό? Ο οργανισμός θα συνεχίσει να υπάρχει, αλλά δεν θα διαχειρίζεται πλέον από τον πάροχο."
|
||||
},
|
||||
"add": {
|
||||
"message": "Προσθήκη"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Ενημερώθηκε ο κύριος κωδικός πρόσβασης"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Ενημερώστε τον κύριο κωδικό πρόσβασης"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Ο Κύριος Κωδικός Πρόσβασης σας άλλαξε πρόσφατα από διαχειριστή στον οργανισμό σας. Για να αποκτήσετε πρόσβαση στο vault, πρέπει να ενημερώσετε το κύριο κωδικό τώρα. Η διαδικασία θα σας αποσυνδέσει από την τρέχουσα συνεδρία σας, απαιτώντας από εσάς να συνδεθείτε ξανά. Οι ενεργές συνεδρίες σε άλλες συσκευές ενδέχεται να συνεχίσουν να είναι ενεργές για μία ώρα."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Χρόνος Λήξης Vault"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Ρύθμιση μέγιστου χρονικού ορίου vault για όλους τους χρήστες."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Μέγιστο Χρονικό Όριο Vault"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Μη Έγκυρο Μέγιστο Χρονικό Όριο Vault."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Ώρες"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Λεπτά"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Οι πολιτικές του οργανισμού σας επηρεάζουν το χρονικό όριο vault σας. Το μέγιστο επιτρεπόμενο Χρονικό όριο Vault είναι $HOURS$ ώρα(ες) και $MINUTES$ λεπτό(ά)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Προσαρμοσμένο Χρονικό Όριο Vault"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Το χρονικό όριο του vault υπερβαίνει τον περιορισμό που ορίστηκε από τον οργανισμό σας."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Απενεργοποίηση Εξαγωγής Προσωπικών Vault"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Προσελκύει τους χρήστες να εξάγουν τα προσωπικά τους δεδομένα από το vault."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Εξαγωγή vault Απενεργοποιημένη"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Μία ή περισσότερες οργανωτικές πολιτικές σας αποτρέπει από την εξαγωγή του προσωπικού vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Επιλογή Τύπου SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Τύπος"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Ρύθμιση Σύνδεσης OpenID"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Ρύθμιση Παροχής Υπηρεσιών SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Ρύθμιση Παρόχου Ταυτότητας SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Διαδρομή Κλήσης"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Διαδρομή Κλήσης Αποσύνδεσης"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Αρχή"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Ταυτότητα Πελάτη"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Μυστικό Πελάτη"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Διεύθυνση Μεταδεδομένων"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Συμπεριφορά Ανακατεύθυνσης OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Λήψη Αιτημάτων Από Το Τελικό Σημείο Πληροφοριών Χρήστη"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένα Πεδία (οριοθετημένα με κόμμα)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένοι Τύποι Ιδιότητας Χρήστη (οριοθετημένοι με κόμμα)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Πρόσθετα/Προσαρμοσμένοι Τύποι Διεκδίκησης Email (οριοθετημένοι με κόμμα)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Πρόσθετο/Προσαρμοσμένος Τύπος Διεκδίκησης Ονόματος (οριοθετημένος με κόμμα)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Ζητούμενες τιμές αναφοράς κατηγορίας πλαισίου ελέγχου ταυτότητας (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Αναμενόμενη τιμή διεκδίκησης \"acr\" στην απάντηση (επικύρωση acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP ID Οντότητας"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Διεύθυνση Url Υπηρεσίας Καταναλωτών (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Μορφή ID Ονόματος"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Αλγόριθμος Εξερχόμενης Υπογραφής"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Συμπεριφορά Υπογραφής"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Ελάχιστος Εισερχόμενος Αλγόριθμος Υπογραφής"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Υπεγράφη Επιβεβαιώσεις"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Επικύρωση Πιστοποιητικών"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Τύπος Σύνδεσης"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Διεύθυνση Url Υπηρεσίας Ενιαίας Εγγραφής"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Διεύθυνση Url Υπηρεσίας Ενιαίας Αποσύνδεσης"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "URL Υπηρεσίας Ανάλυσης Καλλιτεχνικού Γεγονότος"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Δημόσιο Πιστοποιητικό"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Αλγόριθμος Εξερχόμενης Υπογραφής"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Να Επιτρέπεται Μη Αιτούμενη Απόκριση Ταυτοποίησης"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Απενεργοποίηση Αιτημάτων Εξερχόμενης Αποσύνδεσης"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Υπογράφηκαν Τα Αιτήματα Ελέγχου Ταυτότητας"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Οι ρυθμίσεις για απλή σύνδεση αποθηκεύτηκαν."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3817,6 +3817,9 @@
|
||||
"accessReports": {
|
||||
"message": "Access Reports"
|
||||
},
|
||||
"missingPermissions": {
|
||||
"message": "You lack the necessary permissions to perform this action."
|
||||
},
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
@@ -3853,8 +3856,14 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organisation vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organisation that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organisation."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organisation, this user will maintain ownership of the organisation."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organisation $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organisation vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats to add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single organisation"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organisation policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organisation policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organisation users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or cancelled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organisations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organisations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organisation"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organisation that will be associated with you as the provider. You will be able to access and manage this organisation."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organisation"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organisation was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organisation using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organisation.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organisation $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organisation? The organisation will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organisation. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organisation policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organisation."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organisation policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artefact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organisation vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organisation that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organisation."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats to add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Ŝanĝi retpoŝton"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nova retpoŝto"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purigita organizo-volbo."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Sekvu sube por forigi ĉiujn erojn kaj dosierujojn en via trezorejo. Eroj apartenantaj al organizo kun kiu vi dividas ne estos forigitaj."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Politikoj"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Redakti politikon"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Konfirmita"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Posedanto"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "La plej alt-alira uzanto, kiu povas administri ĉiujn aspektojn de via organizo."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administranto"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Aparato"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enigu vian instalan identigilon"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Aldoni Sidlokojn",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Forigi Sidlokojn",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Via abono permesas entute $COUNT$ uzantojn.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Aldonaj Seĝoj"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Vi povas nun fermi ĉi tiun langeton kaj daŭrigi en la etendaĵo."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Komerca Portalo",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Ĉiuj funkcioj de teamoj, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Ligi SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Politika agordo estis movita, kaj ĉi tiu paĝo baldaŭ malrekomendiĝos. Bonvolu alklaki sube por uzi la paĝon pri politikoj pri Komerca Portalo anstataŭe."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Ununura Organizo"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permesoj"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Aliri Komercan Portalon"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Aliri Eventajn Registrojn"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Administri ĉiujn kolektojn"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Administri Asignitajn Kolektojn"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Administri Grupojn"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Vi devas permane malŝalti la politikon pri sola ensaluta aŭtentokontrolo antaŭ ol ĉi tiu politiko povas esti malebligita."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Organiza politiko influas viajn posedopciojn."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Malebligi personan posedon por organizaj uzantoj"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Cambiar correo electrónico"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceder cambiará la dirección de correo electrónico de su cuenta. No cambiará la dirección de correo electrónico utilizada para la autenticación de dos factores. Puede cambiar esta dirección de correo electrónico en la configuración de inicio de sesión en dos pasos."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nuevo correo electrónico"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Caja fuerte de organización purgada."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Caja fuerte a la que accede el proveedor."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceder eliminará todos los elementos y carpetas de tu caja fuerte. Los elementos que pertenezcan a una organización con la que compartes contenido, no serán eliminados."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Políticas"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Inicio de sesión único"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Editar política"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmado"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Correo electrónico del propietario del cliente"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Propietario"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "El usuario de acceso más alto que puede administrar todos los aspectos de su organización."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Este usuario debe ser independiente del Proveedor. Si el Proveedor está desasociado con la organización, este usuario mantendrá la propiedad de la organización."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrador"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organización $ID$ creada.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organización $ID$ añadida.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organización $ID$ eliminada.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Se ha accedido a la caja fuerte de la organización $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispositivo"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Introduce tu ID de instalación"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Establezca un límite de asientos para su suscripción. Una vez alcanzado este límite, no podrá invitar a nuevos usuarios."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Límite máximo de asientos (opcional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Añadir puestos",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Quitar puestos",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Los ajustes a su suscripción provocarán cambios prorrateados en su facturación total. Si los usuarios recién invitados exceden sus asientos de suscripción, recibirá inmediatamente un cargo prorrateado para los usuarios adicionales."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Tu suscripción permite un total de $COUNT$ usuarios.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limitar suscripción (opcional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Asientos de suscripción"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Suscripción actualizada"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Opciones adicionales"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Para ayuda adicional en la gestión de tu suscripción, por favor contacta con Atención al Cliente."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Los ajustes a su suscripción provocarán cambios prorrateados en su facturación total. Si los usuarios recién invitados exceden sus asientos de suscripción, recibirá inmediatamente un cargo prorrateado para los usuarios adicionales."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Los ajustes a su suscripción provocarán cambios prorrateados en su facturación total. Si los usuarios recién invitados exceden sus asientos de suscripción, recibirás inmediatamente un cargo prorrateado para los usuarios adicionales hasta que alcances tu límite de $MAX$ asientos.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Los ajustes de tu suscripción darán como resultado cambios prorrateados en tus facturación total. No puedes invitar a más de $COUNT$ usuarios sin aumentar tus asientos de suscripción.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Puesto a añadir"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Ya puedes cerrar esta pestaña y continuar en la extensión."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal de negocios",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Todas las características de Equipos y además:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Enlazar SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "La configuración de la política ha sido movida y esta página pronto será obsoleta. Por favor, haga clic abajo para utilizar la página de políticas del Portal de Negocios en su lugar."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organización única"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permisos"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Acceso al Portal de Negocios"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Acceder a los registros de eventos"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Administrar todas las colecciones"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Crear nuevas colecciones"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Editar cualquier colección"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Eliminar cualquier colección"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Administrar colecciones asignadas"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Editar colecciones asignadas"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Eliminar colecciones asignadas"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Administrar grupos"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gestionar restablecimiento de contraseña"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Debe desactivar manualmente la política de autenticación de inicio de sesión único antes de que esta política pueda ser desactivada."
|
||||
"disableRequiredError": {
|
||||
"message": "Debe deshabilitar manualmente la política $POLICYNAME$ antes de que esta política pueda ser deshabilitada.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Una política de organización está afectando sus opciones de propiedad."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Una política de organización ha desactivado la importación de elementos en su caja fuerte personal."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Desactivar la propiedad personal para los usuarios de la organización"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Restablecer enlace de Inicio de Sesión Único para el usuario $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Restablecer contraseña"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "¿Está seguro que desea eliminar los siguientes usuarios? El proceso puede tardar unos segundos en completarse y no puede interrumpirse o cancelarse."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Elige un tema para tu caja fuerte web."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Usar tema del sistema"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Oscuro"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Claro"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirmar Seleccionado"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Administrar usuarios también debe estar habilitado con el permiso de Gestionar Contraseña Restablecer"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Nombre del proveedor"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clientes"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Mi proveedor"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -549,7 +549,7 @@
|
||||
"message": "Sinu nimi"
|
||||
},
|
||||
"yourNameDesc": {
|
||||
"message": "Kuidas me Sind kutsume?"
|
||||
"message": "Kuidas me sind kutsume?"
|
||||
},
|
||||
"masterPass": {
|
||||
"message": "Ülemparool"
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "E-posti aadressi muutmine"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Jätkamisel muudetakse konto e-posti aadress. Pane tähele, et see ei muuda kaheastmeliseks kinnitamiseks kasutatavat e-posti aadressi. Selle e-posti aadressi muutmine on võimalik kaheastmelise kinnitamise seadetes."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Uus e-posti aadress"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Organisatsiooni hoidla on likvideeritud."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Teenuse osutaja vaatas hoidla sisu."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Jätkates kustutatakse kõik hoidlas olevad kirjed ja kaustad. Andmed, mis kuuluvad organisatsioonile, jäävad puutumata."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Poliitikad"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Muuda poliitikat"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Kinnitatud"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Kliendist omaniku e-post"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Omanik"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Kõige suurema ligipääsuga kasutaja, kes saab hallata kõike organisatsiooniga seonduvat."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "See kasutaja peaks olema teenuse osutajast erinev. Kui teenuse osutaja ei kuulu enam organisatsiooni, jääb see kasutaja organisatsiooni omanikuks."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administraator"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Lõi organisatsiooni $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Lisas organisatsiooni $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Eemaldas organisatsiooni $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Vaatas organisatsiooni $ID$ hoidlat.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Seade"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Sisesta oma paigalduse id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Määra maksimaalne kasutajate limiit. Limiidi täitumisel ei saa enam uusi kasutajaid kutsuda."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maksimaalne kasutajate limiit (valikuline)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Lisa kasutajaid",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Eemalda kasutajaid",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Sinu tellimus lubab kasutada/luua kokku $COUNT$ kasutajakontot.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Lisatavad kasutajad"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Võid nüüd selle vahelehe sulgeda ning jätkata brauseri laienduses."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Ärikliendi portaal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Kõik Meeskonna funktsioonid, lisaks:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Ühenda SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Poliitikate konfigureerimine on kolinud ning see lehekülg on peatselt aegumas. Palun kasuta poliitikate juurutamiseks allolevat Ärikliendi portaali linki."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Üksainus organisatsioon"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Õigused"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Ligipääs Ärikliendi portaalile"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Ligipääs sündmuste logile"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Saab hallata kõiki kollektsioone"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Luua uusi kollektsioone"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Muuta mistahes kollektsiooni"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Kustutada mistahes kollektsiooni"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Saab hallata määratud kollektsioone"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Hallata määratud kollektsioone"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Kustutada määratud kollektsioone"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gruppide haldamine"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Parooli lähtestamise haldamine"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Enne selle poliitika keelamist pead Single Sign-On autentimise käsitsi välja lülitama."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Organisatsiooni poliitika on seadnud omaniku valikutele piirangu."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Keela organisatsiooni liikmetel paroolide salvestamine isiklikku Hoidlasse"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Lähtesta parool"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Oled kindel, et soovid järgnevaid kasutajaid eemaldada? See tegevus võib võtta paar sekundit ning seda ei saa katkestada."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Teema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Vali oma veebihoidlale teema."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Kasuta süsteemi teemat"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Tume"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Hele"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Kinnita valitud"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "\"Parooli lähtestamise haldamine\" nõuab ka valiku \"Kasutajate haldamine\" sisselülitamist"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Tundi"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutit"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Vaihda sähköpostiosoite"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Jatko vaihtaa tilisi sähköpostiosoitteen. Se ei muuta kaksivaiheiseen tunnistamiseen käytettävää sähköpostiosoitetta. Voit muuttaa sähköpostiosoitteen kaksivaiheisen tunnistautumisen asetuksista."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Uusi sähköposti"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Organisaation holvi tyhjennettiin."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Toimittaja on käyttänyt holvia."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Jatka alla poistaaksesi kaikki holvisi kohteet ja kansiot. Kohteita, jotka on jaettu ja kuuluvat organisaatiolle, ei poisteta."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Käytännöt"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Kertakirjautuminen"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Muokkaa käytäntöä"
|
||||
},
|
||||
@@ -2238,17 +2247,23 @@
|
||||
"confirmed": {
|
||||
"message": "Vahvistettu"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Asiakkaan omistajan sähköposti"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Omistaja"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Korkeimman käyttöoikeustason käyttäjä, jolla on käyttö- ja hallintaoikeus koko organisaatioosi."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Käyttäjän on oltava riippumaton toimittajasta. Jos toimittaja ei ole yhteydessä organisaatioon, käyttäjä säilyttää organisaation omistuksen."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Järjestelmänvalvoja"
|
||||
"message": "Ylläpitäjä"
|
||||
},
|
||||
"adminDesc": {
|
||||
"message": "Järjestelmänvalvojilla on käyttö- ja hallintaoikeus kaikkiin organisaatiosi kohteisiin, kokoelmiin ja käyttäjiin."
|
||||
"message": "Ylläpitäjillä on käyttö- ja hallintaoikeus kaikkiin organisaatiosi kohteisiin, kokoelmiin ja käyttäjiin."
|
||||
},
|
||||
"user": {
|
||||
"message": "Käyttäjä"
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Luotiin organisaatio $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Lisättiin organisaatio $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Poistettiin organisaatio $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Käytettiin organisaation $ID$ holvia.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Laite"
|
||||
},
|
||||
@@ -2677,16 +2728,16 @@
|
||||
"message": "Liity organisaatioon"
|
||||
},
|
||||
"joinOrganizationDesc": {
|
||||
"message": "Sinut on kutsuttu liittymään yllä mainittuun organisaatioon. Hyväksyäksesi kutsun, sinun tulee kirjautua tilillesi tai luoda uusi Bitwarden tili."
|
||||
"message": "Sinut on kutsuttu liittymään yllä mainittuun organisaatioon. Hyväksyäksesi kutsun, sinun tulee kirjautua tilillesi tai luoda uusi Bitwarden-tili."
|
||||
},
|
||||
"inviteAccepted": {
|
||||
"message": "Kutsu hyväksyttiin"
|
||||
},
|
||||
"inviteAcceptedDesc": {
|
||||
"message": "Saat käyttöoikeuden organisaation järjestelmänvalvojan vahvistettua jäsentyytesi. Saat vahvistuksesta ilmoituksen sähköpostitse."
|
||||
"message": "Saat organisaation käyttöoikeuden ylläpitäjän vahvistettua jäsentyytesi. Saat vahvistuksesta ilmoituksen sähköpostitse."
|
||||
},
|
||||
"inviteAcceptFailed": {
|
||||
"message": "Kutsun hyväksyntä ei onnistu. Pyydä organisaation järjestelmänvalvojaa lähettämään uusi kutsu."
|
||||
"message": "Kutsun hyväksyntä ei onnistu. Pyydä organisaation ylläpitäjää lähettämään uusi kutsu."
|
||||
},
|
||||
"inviteAcceptFailedShort": {
|
||||
"message": "Kutsun hyväksyntä ei onnistunut. $DESCRIPTION$",
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Syötä asennuksesi ID-tunnus"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Rajoita tilkauksesi käyttäjäpaikkojen määrää. Kun määrä täyttyy, et voi kutsua uusia käyttäjiä."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Käyttäjäpaikkojen enimmäismäärä (valinnainen)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Käyttäjäpaikan suurin mahdollinen hinta"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Lisää käyttäjäpaikkoja",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Poista käyttäjäpaikkoja",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Tilausmuutokset johtavat suhteutettuihin muutoksiin laskutuksessasi. Jos hiljattain lisätyt käyttäjät ylittävät tilauksesi käyttäjäpaikkojen enimmäismäärän, veloitetaan suhteutettu hinta lisätyistä käyttäjistä välittömästi."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Tilauksesi sallii yhteensä $COUNT$ käyttäjää.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Rajoita tilausta (valinnainen)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Tilauksen käyttäjäpaikat"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Tilaus päivitetty"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Muut vaihtoehdot"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Jos tarvitset apua tilauksesi hallinnassa, ota yhteyttä asiakaspalveluun."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Tilausmuutokset johtavat suhteutettuihin muutoksiin laskutuksessasi. Jos hiljattain lisätyt käyttäjät ylittävät tilauksesi käyttäjäpaikkojen enimmäismäärän, veloitetaan suhteutettu hinta lisätyistä käyttäjistä välittömästi."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Tilausmuutokset johtavat suhteutettuihin muutoksiin laskutuksessasi. Jos hiljattain lisätyt käyttäjät ylittävät tilauksesi käyttäjäpaikkojen enimmäismäärän, veloitetaan suhteutettu hinta lisätyistä käyttäjistä välittömästi kunnes $MAX$ paikan rajoitus saavutetaan.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Tilausmuutokset johtavat suhteutettuihin muutoksiin laskutuksessasi. Voit kutsua enintään $COUNT$ käyttäjää kasvattamasta tilauksesi käyttäjäpaikkoja.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Lisättävät käyttäjäpaikat"
|
||||
},
|
||||
@@ -3100,7 +3200,7 @@
|
||||
"message": "Vaadi käyttäjiä ottamaan kaksivaiheinen kirjautuminen käyttöön henkilökohtaisilla tileillään."
|
||||
},
|
||||
"twoStepLoginPolicyWarning": {
|
||||
"message": "Organisaation jäsenet, jotka eivät ole sen omistajia tai järjestelmänvalvojia, eivätkä ole ottaneet kaksivaiheista kirjautumista käyttöön henkilökohtaisilla tileillään, poistetaan organisaatiosta ja heille ilmoitetaan muutoksesta sähköpostitse."
|
||||
"message": "Organisaation jäsenet, jotka eivät ole sen omistajia tai ylläpitäjiä, eivätkä ole ottaneet kaksivaiheista kirjautumista käyttöön henkilökohtaisilla tileillään, poistetaan organisaatiosta ja heille ilmoitetaan muutoksesta sähköpostitse."
|
||||
},
|
||||
"twoStepLoginPolicyUserWarning": {
|
||||
"message": "Olet jäsenenä organisaatiossa, joka vaatii kaksivaiheisen kirjautumisen käyttöönoton käyttäjätililläsi. Jos poistat kaikki kaksivaiheisen kirjautumisen todennusmenetelmät käytöstä, sinut poistetaan automaattisesti näistä organisaatioista."
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Voit nyt sulkea tämän välilehden ja jatkaa laajennuksessa."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Yritysportaali",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Kaikki Tiimit-tilauksen ominaisuudet, sekä:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Liitä kertakirjautumiseen (SSO)"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Käytäntöasetukset ovat siirtyneet ja tämä sivu poistuu pian käytöstä. Klikkaa alta siirtyäksesi yritysportaalin käytäntösivua."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Yksittäinen organisaatio"
|
||||
},
|
||||
@@ -3334,10 +3427,10 @@
|
||||
"message": "Estä käyttäjiä liittymästä muihin organisaatioihin."
|
||||
},
|
||||
"singleOrgBlockCreateMessage": {
|
||||
"message": "Nykyisen organisaatiosi käytäntö ei salli liittymistä useampaan kuin yhteen organisaatioon. Ota yhteyttä organisaatiosi järjestelmänvalvojiin tai liity eri Bitwarden-tilin kautta."
|
||||
"message": "Nykyisen organisaatiosi käytäntö ei salli liittymistä useampaan kuin yhteen organisaatioon. Ota yhteyttä organisaatiosi ylläpitäjiin tai liity eri Bitwarden-tilin kautta."
|
||||
},
|
||||
"singleOrgPolicyWarning": {
|
||||
"message": "Organisaation jäsenet, jotka eivät ole omistajia tai järjestelmänvalvojia ja jotka ovat jo toisen organisaation jäseniä, poistetaan organisaatiostasi."
|
||||
"message": "Organisaation jäsenet, jotka eivät ole omistajia tai ylläpitäjiä ja jotka ovat jo toisen organisaation jäseniä, poistetaan organisaatiostasi."
|
||||
},
|
||||
"requireSso": {
|
||||
"message": "Kertakirjautumisen (SSO) todennus"
|
||||
@@ -3355,7 +3448,7 @@
|
||||
"message": "\"Yksittäinen organisaatio\" -käytäntö ei ole käytössä."
|
||||
},
|
||||
"requireSsoExemption": {
|
||||
"message": "Organisaation omistajat ja järjestelmänvalvojat on vapautettu tämän käytännön piiristä."
|
||||
"message": "Organisaation omistajat ja ylläpitäjät on vapautettu tämän käytännön piiristä."
|
||||
},
|
||||
"sendTypeFile": {
|
||||
"message": "Tiedosto"
|
||||
@@ -3646,7 +3739,7 @@
|
||||
"message": "Vaadi käyttäjiä tallentamaan holvin kohteet organisaatiolle poistamalla henkilökohtaisen omistuksen valinta."
|
||||
},
|
||||
"personalOwnershipExemption": {
|
||||
"message": "Organisaation omistajat ja järjestelmänvalvojat on vapautettu tämän käytännön piiristä."
|
||||
"message": "Organisaation omistajat ja ylläpitäjät on vapautettu tämän käytännön piiristä."
|
||||
},
|
||||
"personalOwnershipSubmitError": {
|
||||
"message": "Yrityksen asettaman käytännön johdosta kohteiden tallennus omaan holviisi ei ole mahdollista. Muuta omistusasetus organisaatiolle ja valitse käytettävissä olevista kokoelmista."
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Käyttöoikeudet"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Yritysportaalin käyttö"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Tapahtumalokien käyttö"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Kaikkien kokoelmien hallinta"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Luo uusia kokoelmia"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Muokkaa mitä tahansa kokoelmaa"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Poista mikä tahansa kokoelma"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Määritettyjen kokoelmien hallinta"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Muokkaa määritettyjä kokoelmia"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Poista määritettyjä kokoelmia"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Ryhmien hallinta"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Salasanan palautusavun hallinta"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Yrityksen kertakirjautuminen (SSO) on poistettava käytöstä manuaalisesti ennen kuin tämän käytännön voi poistaa käytöstä."
|
||||
"disableRequiredError": {
|
||||
"message": "Käytäntö $POLICYNAME$ on poistettava käytöstä manuaalisesti ennen kuin tämän käytännön voi poistaa käytöstä.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Organisaatiokäytäntö vaikuttaa omistajuusvalintoihisi."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Organisaation käytäntö estää kohteiden tuonnin henkilökohtaiseen holviisi."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Poista henkilökohtaisen omistajuuden valinta käytöstä organisaation käyttäjiltä"
|
||||
},
|
||||
@@ -3875,13 +3989,13 @@
|
||||
"message": "Liitetty salasanan palautusapuun"
|
||||
},
|
||||
"withdrawPasswordReset": {
|
||||
"message": "Poistu salasanan palautusavusta"
|
||||
"message": "Eroa salasanan palautusavusta"
|
||||
},
|
||||
"enrollPasswordResetSuccess": {
|
||||
"message": "Liitos onnistui!"
|
||||
},
|
||||
"withdrawPasswordResetSuccess": {
|
||||
"message": "Poistuminen onnistui!"
|
||||
"message": "Eroaminen onnistui!"
|
||||
},
|
||||
"eventEnrollPasswordReset": {
|
||||
"message": "Käyttäjä $ID$ liittyi salasanan palautusapuun.",
|
||||
@@ -3893,7 +4007,7 @@
|
||||
}
|
||||
},
|
||||
"eventWithdrawPasswordReset": {
|
||||
"message": "Käyttäjä $ID$ poistui salasanan palautusavusta.",
|
||||
"message": "Käyttäjä $ID$ erosi salasanan palautusavusta.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Nollaa käyttäjän $ID$ SSO-linkki",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Palauta salasana"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automaattinen liitos"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "Kaikki käyttäjät liitetään salasanan palautusapuun automaattisesti kun heidän kutsunsa on hyväksytty."
|
||||
"message": "Kaikki käyttäjät liitetään salasanan palautusapuun automaattisesti, kun heidän kutsunsa on hyväksytty, jonka jälkeen he eivät voi erota siitä."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Vanhoja organisaation käyttäjiä ei liitetä salasanan palautusapuun takautuvasti, vaan heidän on itse liityttävä siihen ennen kuin järjestelmänvalvojat voivat palauttaa heidän pääsalasanojaan."
|
||||
"message": "Vanhoja organisaation käyttäjiä ei liitetä salasanan palautusapuun takautuvasti, vaan heidän on itse liityttävä siihen ennen kuin ylläpitäjät voivat palauttaa heidän pääsalasanojaan."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Liitä uudet käyttäjät automaattisesti"
|
||||
"message": "Vaadi uusien käyttäjien automaattinen liitos"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Organisaatiolla on käytäntö, joka liittää tilisi automaattisesti salasanan palautusapuun. Liitos sallii organisaation ylläpitäjien vaihtaa pääsalasanasi."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Haluatko varmasti poistaa poistaa seuraavat käyttäjät? Toiminto saattaa kestää muutamia sekunteja, eikä sen keskeytys tai peruminen ole mahdollista."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Teema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Valitse verkkoholvillesi teema."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Käytä järjestelmän teemaa"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Tumma"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Vaalea"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Vahvista valitut"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Myös \"Käyttäjien hallinta\" -oikeuden on oltava käytössä \"Salasanan palautusavun hallinta\" -oikeuden kanssa"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Toimittajan määritys"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Sinut on kutsuttu määrittämään uusi toimittaja. Jatkaaksesi, sinun on kirjauduttava Bitwarden-tilillesi tai luotava uusi tili."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Syötä alla pyydetyt tiedot viimeistelläksesi toimittajan määrityksen. Jos sinulla on kysyttävää, ota yhteyttä asiakaspalveluun."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Toimittajan nimi"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Toimittaja on määritetty."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Asiakkaat"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Toimittajan ylläpitäjä"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Korkein käyttöoikeus, joka voi hallinnoida toimittajaasi kokonaisvaltaisesti sekä käyttää ja hallita asiakasorganisaatioita."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Palvelun käyttäjä"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Palvelun käyttäjät voivat käyttää ja hallita kaikkia asiakasorganisaatioita."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Kutsu toimittajaasi uusi käyttäjä syöttämällä alle heidän Bitwarden-tilinsä sähköpostiosoite. Jos heillä ei vielä ole Bitwarden-tiliä, heitä pyydetään luomaan uusi tili."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Liity toimittajaan"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Sinut on kutsuttu liittymään yllä mainittuun toimittajaan. Hyväksyäksesi kutsun, sinun tulee kirjautua tilillesi tai luoda uusi Bitwarden-tili."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Kutsun hyväksyntä ei onnistu. Pyydä toimittajan ylläpitäjää lähettämään uusi kutsu."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Saat toimittajan käyttöoikeuden ylläpitäjän vahvistettua jäsentyytesi. Saat vahvistuksesta ilmoituksen sähköpostitse."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Sinulla on käyttäjiä, jotka ovat hyväksyneet kutsunsa, mutta heidän liittymisensä tulee vielä vahvistaa. Käyttäjillä ei ole toimittajan käyttöoikeutta ennen vahvistusta."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Toimittaja"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Uusi asiakasorganisaatio"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Luo uusi asiakasorganisaatio, jonka toimittajaksi sinut liitetään. Voit käyttää ja hallita tätä organisaatiota."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Lisää olemassa oleva organisaatio"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Toimittajani"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Haluatko varmasti lisätä organisaation $ORGANIZATION$ toimittajan $PROVIDER$ asiakkaaksi?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organisaatio lisättiin toimittajaan"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Käytetään organisaatiota toimittajalla $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Toimittaja on poistettu käytöstä."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Toimittaja päivitettiin"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Toimittajasi on $PROVIDER$. Heillä on hallinnolliset- ja laskutusoikeudet organisaatioosi.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Organisaatio $ORGANIZATION$ on irrotettu toimittajastasi.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Haluatko varmasti irrottaa organisaation? Organisaatio on edelleen olemassa, mutta toimittaja ei enää hallinnoi sitä."
|
||||
},
|
||||
"add": {
|
||||
"message": "Lisää"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Pääsalasana on päivitetty"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Päivitä pääsalasana"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Organisaatiosi ylläpito on hiljattain vaihtanut pääsalasanasi. Käyttääksesi holvia, on sinun päivitettävä se nyt. Tämä uloskirjaa kaikki nykyiset istunnot pakottaen uudelleenkirjautumisen. Muiden laitteiden aktiiviset istunnot saattavat toimia vielä tunnin ajan."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Holvin aikakatkaisu"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Määritä holvin aikakatkaisun enimmäisviive kaikille käyttäjille."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Holvin aikakatkaisun enimmäisviive"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Virheellinen holvin aikakatkaisun enimmäisviive."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Tuntia"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuuttia"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Organisaatiosi käytännöt vaikuttavat holvisi aikakatkaisuun. Suurin sallittu viive on $HOURS$ tunti(a) ja $MINUTES$ minuutti(a)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Oma holvin aikakatkaisuviive"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Holvisi aikakatkaisuviive ylittää organisaatiosi asettamat rajoitukset."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Poista henkilökohtaisen holvin vienti käytöstä"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Estää käyttäjiä viemästä yksityisen holvinsa tietoja."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Holvin vienti on poistettu käytöstä"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Yksi tai useampi organisaation käytäntö estää henkilökohtaisen holvisi viennin."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Valitse SSO-tyyppi"
|
||||
},
|
||||
"type": {
|
||||
"message": "Tyyppi"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect -määritykset"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML-palveluntarjoajan määritykset"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML-identiteettitoimittajan määritykset"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Takaisinsoittopolku"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Uloskirjautumisen takaisinsoittopolku"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Hallitsija"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Asiakkaan ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Asiakkaan salaisuus"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metatieto-osoite"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC-uudelleenohjauskäyttäytyminen"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Muut/mukautetut alueet (pilkulla eroteltuna)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Muut/mukautetut käyttäjä ID -lunastustyypit (pilkulla eroteltuna)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Muut/mukautetut sähköpostien lunastustyypit (pilkulla eroteltuna)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Muut/mukautetut nimien lunastustyypit (pilkulla eroteltuna)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Pyydetyt todennuksen kontekstiluokan viitearvot (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Odotettu \"acr\" -lunastusarvo vastauksessa (acr-vahvistus)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP-entiteetin ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 -metatietojen URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Nimen ID:n muoto"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Lähtevä allekirjoitusalgoritmi"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Allekirjoituskäyttätyminen"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Pienin saapuva allekirjoitusalgoritmi"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Haluan allekirjoittaa väitteet"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Vahvista varmenteet"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entiteetin ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Sidontatyyppi"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Kertakirjautumispalvelun URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Kertauloskirjautumispalvelun URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artefaktien selvityspalvelun URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Julkinen X509 \n-varmenne"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Lähtevä allekirjoitusalgoritmi"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Salli ei-toivottu todennusvastaus"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Poista lähtevät uloskirjautumispyynnöt käytöstä"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Haluatko allekirjoitetut todennuspyynnöt"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Kertakirjautumisen määritykset tallennettiin."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Changer l'e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Continuer changera l'adresse courriel de votre compte. Votre adresse courriel utilisée pour l'authentification à 2 facteurs ne sera pas changée. Vous pouvez changer cette adresse courriel dans les réglages Identification en deux étapes."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nouvel e-mail"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Le coffre de l'organisation a été effacé."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Coffre-fort accédé par le fournisseur."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Poursuivez ci-dessous pour supprimer tous les éléments et dossiers de votre coffre. Les éléments qui appartiennent à une organisation dont vous êtes membre ne seront pas supprimés."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Politiques"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Authentification unique"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Modifier la politique"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmé"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Courriel du Propriétaire du Client"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Propriétaire"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "L’utilisateur avec l’accès le plus élevé qui peut gérer tous les aspects de votre organisation."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Cet utilisateur doit être indépendant du fournisseur. Si le fournisseur est dissocié de l'organisation, cet utilisateur maintiendra la propriété de l'organisation."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrateur"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organisation $ID$ créée.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organisation $ID$ ajoutée.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organisation $ID$ supprimée.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Coffre-fort de l'organisation $ID$ accédé.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Appareil"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Saisissez l'identifiant de votre installation"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Définissez une limite de places pour votre abonnement. Une fois cette limite atteinte, vous ne pourrez plus inviter de nouveaux utilisateurs."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Limite de places maximale (optionnel)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Coût potentiel maximal des places"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Ajouter des licences",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Retirer des licences",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Les ajustements apportés à votre abonnement entraîneront des modifications au prorata de vos totaux de facturation. Si les utilisateurs nouvellement invités dépassent vos places d'abonnement, vous recevrez immédiatement des frais au prorata pour les utilisateurs supplémentaires."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Votre abonnement permet un total de $COUNT$ utilisateurs.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limite d'abonnement (facultatif)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Places d'Abonnement"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abonnement mis à jour"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Options additionnelles"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Pour obtenir de l'aide supplémentaire pour la gestion de votre abonnement, veuillez contacter le Service à la Clientèle."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Les ajustements apportés à votre abonnement entraîneront des modifications au prorata de vos totaux de facturation. Si les utilisateurs nouvellement invités dépassent vos places d'abonnement, vous recevrez immédiatement des frais au prorata pour les utilisateurs supplémentaires."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Les ajustements apportés à votre abonnement entraîneront des modifications au prorata de vos totaux de facturation. Si les utilisateurs nouvellement invités dépassent vos sièges d'abonnement, vous recevrez immédiatement des frais calculés au prorata pour les utilisateurs supplémentaires jusqu'à ce que votre limite de places de $MAX$ soit atteinte.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Les ajustements à votre abonnement entraîneront des modifications au prorata de vos totaux de facturation. Vous ne pouvez pas inviter plus de $COUNT$ utilisateurs sans augmenter vos places d'abonnement.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Licences à ajouter"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Vous pouvez maintenant fermer cet onglet et continuer dans l'extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portail d'entreprise",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Toutes les fonctionnalités pour les équipes, plus :"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Lier SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "La configuration des politiques a été déplacée et cette page sera bientôt obsolète. Veuillez cliquer ci-dessous pour utiliser la page des politiques du portail d'entreprise à la place."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organisation Unique"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Accéder au portail d'entreprise"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Accéder aux journaux d'événements"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Gérer toutes les collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Créer de Nouvelles Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Modifier Une Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Supprimer Une Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Gérer les collections assignées"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Modifier Les Collection Assignées"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Supprimer Les Collections Assignées"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gérer les groupes"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gérer la réinitialisation du mot de passe"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Vous devez désactiver manuellement la politique d'authentification unique (SSO) avant que cette politique ne puisse être désactivée."
|
||||
"disableRequiredError": {
|
||||
"message": "Vous devez désactiver manuellement $POLICYNAME$ avant que cette politique ne puisse être désactivée.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Une politique d'organisation affecte vos options de propriété."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Une politique d'organisation a désactivé l'importation d'éléments dans votre coffre-fort personnel."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Désactiver la propriété individuelle des utilisateurs de l'organisation"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Réinitialiser le lien Sso pour l'utilisateur $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Réinitialiser le mot de passe"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Êtes-vous sûr de vouloir supprimer les utilisateurs suivants ? Le processus peut prendre quelques secondes et ne peut être interrompu ou annulé."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Thème"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choisissez un thème pour votre coffre-fort web."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Utiliser le Thème Système"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Sombre"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Clair"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirmer la sélection"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "La Gestion des Utilisateurs doit également être activée avec Gérer la Permission de Réinitialisation du Mot de Passe"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Configuration du Fournisseur"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Vous avez été invité à configurer un nouveau fournisseur. Pour continuer, vous devez vous connecter ou créer un nouveau compte Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Veuillez entrer les détails ci-dessous pour finaliser la configuration du fournisseur. Contactez le Service à la Clientèle si vous avez des questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Nom du Fournisseur"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Le fournisseur a été configuré."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Administrateur du Fournisseur"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "L'utilisateur à l'accès le plus élevé pouvant gérer tous les aspects de votre fournisseur ainsi que l'accès et la gestion des organisations du client."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Utilisateur du Service"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Les utilisateurs du service peuvent accéder et gérer toutes les organisations clientes."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invitez un nouvel utilisateur à votre fournisseur en entrant l'adresse courriel de son compte Bitwarden ci-dessous. S'ils n'ont pas déjà de compte Bitwarden, ils seront invités à créer un nouveau compte."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Rejoindre le Fournisseur"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Vous avez été invité à rejoindre le fournisseur ci-dessus. Pour accepter l'invitation, vous devez vous connecter ou créer un nouveau compte Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Impossible d'accepter l'invitation. Demandez à un administrateur du fournisseur d'envoyer une nouvelle invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Vous pouvez accéder ce fournisseur une fois qu'un administrateur aura confirmé votre abonnement. Nous vous enverrons un courriel lorsque cela se produira."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Vous avez des utilisateurs qui ont accepté leur invitation, mais qui doivent quand même être confirmés. Les utilisateurs n'auront pas accès au fournisseur tant qu'ils ne seront pas confirmés."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Fournisseur"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nouvelle Organisation Cliente"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Créez une nouvelle organisation cliente qui sera associée avec vous en tant que fournisseur. Vous pourrez accéder à cette organisation et la gérer."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Ajouter une Organisation Existante"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Mon Fournisseur"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Êtes-vous sûr de vouloir ajouter $ORGANIZATION$ comme cliente de $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "L'organisation a bien été ajoutée au fournisseur"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accès à l'organisation en utilisant le fournisseur $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Le fournisseur est désactivé."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Fournisseur mis à jour"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Votre fournisseur est $PROVIDER$. Ils ont des privilèges d'administration et de facturation pour votre organisation.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "L'organisation $ORGANIZATION$ a été détachée de votre fournisseur.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Êtes-vous sûr de vouloir détacher cette organisation ? L'organisation continuera d'exister mais ne sera plus gérée par le fournisseur."
|
||||
},
|
||||
"add": {
|
||||
"message": "Ajouter"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Mot de Passe Maître mis à jour"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Mettre à jour le Mot de Passe Maître"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Votre Mot de Passe Maître a récemment été modifié par un administrateur de votre organisation. Pour accéder au coffre-fort, vous devez mettre à jour votre Mot de Passe Maître maintenant. Continuer vous déconnectera de votre session actuelle, vous obligeant à vous reconnecter. Les sessions actives sur d'autres appareils peuvent rester actives jusqu'à une heure."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Délai D'Expiration du Coffre-fort"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configurer un délai maximum d'expiration du coffre-fort pour tous les utilisateurs."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Délai Maximum D'Expiration du Coffre-fort"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Délai Maximum D'Expiration du Coffre-fort Invalide."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Heures"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Les politiques de votre organisation affectent le délai d'expiration de votre coffre-fort. Le délai d'expiration maximal autorisé est de $HOURS$ heure(s) et $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Délai D'Expiration du Coffre-fort Personnalisé"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Le délai d'expiration de votre coffre-fort dépasse la restriction définie par votre organisation."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Désactiver l'Exportation du Coffre-fort Personnel"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Empêche les utilisateurs d'exporter les données de leur coffre-fort privé."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Exportation du Coffre -fort Désactivée"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Une ou plusieurs politiques d'organisation vous empêchent d'exporter votre coffre-fort personnel."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Sélectionnez le type de SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Configuration de Connexion OpenID"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Configuration du Fournisseur de Services SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Configuration du Fournisseur d'Identités SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Chemin de Rappel"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Chemin de Rappel Déconnecté"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Autorité"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID du Client"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Secret du Client"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Adresse des Métadonnées"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Comportement de la Redirection OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Obtenir Les Demandes d'Infomation De l'Utilisateurs Du Terminal"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Portées Aditionnelles/Personnalisées (séparées par des virgules)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Types De Demandes d'ID De l'Utilisateur Aditionnelles/Personnalisées (séparées par des virgules)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Types De Demandes De Courriel De l'Utilisateur Aditionnelles/Personnalisées (séparées par des virgules)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Types De Demandes Du Nom De l'Utilisateur Aditionnelles/Personnalisées (séparées par des virgules)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Valeurs De Référence Du Contexte De Classe d'Authentification Demandées (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Demande De Valeur \"acr\" Attendue Dans La Réponse (validation acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID de l'Entité SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL Des Métadonnées SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "URL d'Assertion Du Service À La Clientèle (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Format Du Nom ID"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Algorithme De Signature Sortant"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Comportement De La Signature"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Algorithme De Signature Minimal"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Voulez-vous Des Assertions Signées"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Valider Les Certificats"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID de l'Entité"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Type De Liaison"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "URL du Service d'Authentification Unique"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "URL du Service De Déconnection Unique"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "URL du Service De Résolution d'Artefact"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Certificat Public X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Algorithme De Signature Sortant"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Autoriser la Réponse d'Authentification Non-Sollicitée"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Désactiver les Demandes De Déconnexion Sortantes"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Voulez -vous des Demandes d'Authentification Signées"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "La configuration de l'Authentification Unique a été enregistrée."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "החלף אימייל"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "דוא\"ל חדש"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "מחק תוכן כספת ארגונית."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "המשך כאן בכדי למחוק את כל הפריטים והתיקיות שבכספת שלך. פריטים השייכים לארגון לא ימחקו."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "מדיניות"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "ערוך מדיניות"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "אושר"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "בעלים"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "החשבון בעל ההרשאות הגבוהות ביותר שיכול לנהל את כל ההיבטים של הארגון."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "מנהל"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "מכשיר"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "הכנס את מספר ההתקנה שלך"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "הוסף כסאות",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "הסר כסאות",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "המנוי שלך מתיר עד $COUNT$ משתמשים.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "כסאות להוספה"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "ניתן לסגור את הטאב הנוכחי ולהמשיך את השימוש בתוסף."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "פורטל עסקי",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "כל התכונות הקיימות ב\"צוות\", ובנוסף:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "חבר SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "הגדרות המדיניות הועברו למקום אחר, והעמוד הזה לא יתמך יותר. אנא לחץ על הכפתור כדי לעבור לפורטל המדיניות העסקית."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "ארגון יחידני"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Promijeni e-poštu"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Promijeniti ćeš adresu e-pošte računa. Ovo neće promijeniti adresu e-pošte za dvostruku autentifikaciju (ovo se može promijeniti u postavkama dvostruke autentifikacije)."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nova adresa e-pošte"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Pročišćen organizacijski trezor."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Trezoru pristupio davatelj."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Nastavi za brisanje SVIH stavki i mapa u tvom trezoru. Stavke koje pripadaju organizaciji s kojom dijeliš neće biti izbrisane."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Smjernice"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Jedinstvena prijava (SSO)"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Uredi smjernice"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Potvrđeno"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "e-pošta vlasnika klijenta"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Vlasnik"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Korisnik s najvišim pravima pristupa koji može upravljati svim mogućnostima tvoje organziacije."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Korisnik bi trebao biti neovisan o davatelju. Ako se davatelja razdvoji od organizacije, ovaj će korisnik zadržati vlasništvo nad organizacijom."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organizacija $ID$ stvorena.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organizacija $ID$ dodana.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organizacija $ID$ uklonjena.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Pristupljeno trezoru organizacije $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Uređaj"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Unesi id instalacije"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Ograničite broj korisnika u pretplati. Kada je broj dosegnut, neće biti moguće pozvati nove korisnike."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Najveći dozvoljeni broj korisnika (opcionalno)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Najveći dozvoljeni trošak licenci"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Dodaj licence",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Ukloni licence",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Tvoja pretplata uključuje $COUNT$ korisnika.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Ograniči pretplatu (opcionalno)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Broj licenci"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Preplata ažurirana"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Dodatne postavke"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Za dodatnu pomoć u upravljanju pretplatom, kontaktiraj korisničku podršku."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Licence za dodati"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Sada možeš zatvoriti ovu karticu i nastaviti koristiti proširenje."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal Business",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Sve značajke Team, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Spoji SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Mogućnosti smjernica su premješteni i ova stranica će uskoro postati zastarjela. Kliknite u nastavku za korištenje stranice smjernica na portalu Business."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Isključiva organizacija"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Dozvole"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Pristup Busines portalu"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Pristup zapisnicima događaja"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Upravljanje svim zbirkama"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Stvori novu zbirku"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Uredi zbirku"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Obriši zbirku"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Upravljanje dodijeljenim zbirkama"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Uredi dodijeljene zbirke"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Obriši dodijeljene zbirke"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Upravljanje grupama"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Upravljanje ponovnim postavljanjem lozinke"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Pravilo SSO autentifikacije mora biti isključeno prije deaktivacije ovog pravila."
|
||||
"disableRequiredError": {
|
||||
"message": "Prije onemogućavanja ovog pravila, potrebno je onemogućiti pravilo $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Pravila organizacije utječu na tvoje mogućnosti vlasništva."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Onemogući osobno vlasnišvo za organizacijske korisnike"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Poništi SSO vezu za korisnika $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Ponovno postavljanje lozinke"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatsko učlanjenje"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "Svi korisnci biti će automatski učlanjeni u ponovno postavljanje lozinke čim njihov poziv bude prihvaćen."
|
||||
"message": "Svi korisnici će automatski biti učlanjeni u ponovno postavljanje lozinke čim njihov poziv bude prihvaćen."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Postojeći korisnici organizacije neće biti retroaktivno učlanjeni u ponovno postavljanje lozinke. Morati će se sami učlaniti da bi administratori mogli ponovno postaviti njihove glaven lozinke."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatski učlani nove korisnike"
|
||||
"message": "Primoraj nove korisnike da budu automatski učlanjeni"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Pravilo ove organizacija automatski će te učlaniti u ponovno postalvjanje lozinke. Učlanjenje će omogućiti administratorima organizacije promjenu tvoje glavne lozinke."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Sigurno želiš ukloniti sljedeće korisnike? Ova radnja može potrajati i nije ga moguće prekinuti ili poništiti."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Odaberi temu za svoj mrežni trezor."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Koristi temu sustava"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Tamna"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Svijetla"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Odabrano potvrđivanje"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Upravljanje korisnicima mora također biti uključeno s dozvolom za Upravljanje ponovnim postavljanjem lozinke"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Postavke davatelja"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Naziv davatelja"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Klijenti"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Servisni korisnik"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Servisni korisnik može pristupiti i upravljati svim organizacijama."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Davatelj"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Dodaj postojeću organizaciju"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Moj davatelj"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organizacija uspješno dodana davatelju"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Davatelj je onemogućen."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Davatelj ažuriran"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Dodaj"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Glavna lozinka ažurirana"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Ažuriraj glavnu lozinku"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Tvoju glavnu lozinku je nedavno promijenio administrator tvoje organizacije. Za pristup trezoru, potrebno je ažurirati glavnu lozinku, što će te odjaviti iz trenutne sesije, te ćeš se morati ponovno prijaviti. Aktivne sesije na drugim uređajima mogu ostati aktivne još sat vremena."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Istek trezora"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Najveći dozvoljeni istek trezora za sve korisnike."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Najveći istek trezora"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Najveći istek trezora nije ispravan."
|
||||
},
|
||||
"hours": {
|
||||
"message": "sat(i)"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Osobni istek trezora"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Vrsta"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID klijenta"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Provjeri certifikate"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID entiteta"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 javni certifikat"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Konfiguracija za jedinstvenu prijavu (SSO) je spremljena."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Email cím módosítása"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "A folytatás megváltoztatja fiók email címét. Nem változtatja meg a kétlépcsős hitelesítéshez használt email címet. Ez az email cím a kétlépcsős bejelentkezés beállításaiban módosítható."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Új email cím"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "A szervezeti széf kitakarításra került."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "A tárolóhoz a szolgáltató fér hozzá."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Az alábbiak szerint törölhetjük a széfben található összes elemet és mappát. Nem kerülnek törlésre azok az elemek,, amelyek egy megosztott szervezethez tartoznak."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Szabályok"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Egyszeri bejelentkezés"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Szabály szerkesztése"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Megerősítve"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Ügyféltulajdonos e-mail cím"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Tulajdonos"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "A legmagasabb hozzáféréssel rendelkező felhasználó kezelheti a szervezet összes lehetőségét."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Ennek a felhasználónak függetlennek kell lennie a szolgáltatótól. Ha a Szolgáltató nincs kapcsolatban a szervezettel, akkor ez a felhasználó tartja fenn a szervezet tulajdonjogát."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Adminisztrátor"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Létrehozott szervezet: $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Hozzáadott szervezet: $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Eltávolított szervezet: $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Hozzáfért $ID$ szervezeti széf.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Eszköz"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Telepítési azonosító megadása"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Állítsunk be helykorlátot az előfizetéshez. Ha elérjük ezt a korlátot, nem tudunk új felhasználókat meghívni."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximális helykorlát (opcionális)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Maximális lehetséges helyköltség"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Helyek hozzáadása",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Helyek eltávolítása",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetői helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Az előfizetés összesen $COUNT$ felhasználót tesz lehetővé.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Előfizetés korlát (opcionális)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Előfizetői helyek"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Az előfizetés frissítésre került."
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Kiegészítő opciók"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Az előfizetés kezelésével kapcsolatos további segítségért forduljunk az Ügyfélszolgálathoz."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetői helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Ha az újonnan meghívott felhasználók túllépik az előfizetési helyeket, akkor haladéktalanul külön díjat kapunk a további felhasználókért, amíg el nem érjük a $MAX$ helykorlátot.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Az előfizetés módosítása a számlázási összegek arányos módosítását eredményezi. Nem hívhatunk meg több, mint $COUNT$ felhasználót az előfizetői helyek növelése nélkül.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Hozzáadandó helyek"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Bezárható ez a fül és folytatás a bővítményben."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Üzleti portál",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Összes Csapat funkció, továbbá:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO csatolása"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Az irányelv konfiguráció áthelyezésre került és ez az oldal hamarosan megszűnik. Kattintsunk az alábbi hivatkozásra, ha inkább az Üzleti portál irányelv oldalát szeretnénk használni."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Önálló szervezet"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Jogosultságok"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Üzleti portál elérése"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Eseménynapló elérése"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Összes gyűjtemény kezelése"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Új gyűjtemények létrehozása"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Bármely gyűjtemény szerkesztése"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Bármely gyűjtemény törlése"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Hozzárendelt gyűjtemények kezelése"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Hozzárendelt gyűjtemények szerkesztése"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Hozzárendelt gyűjtemények törlése"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Csoportok kezelése"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Jelszó alaphelyzet kezelés"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Manuálisan le kell tiltani az egyszeri bejelentkezés hitelesítési házirendjét mielőtt ez a házirend letiltásra kerülhet."
|
||||
"disableRequiredError": {
|
||||
"message": "A szabály letiltása előtt manuálisan le kell tiltani $POLICYNAME$ házirendet.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "A szervezeti házirend befolyásolja a tulajdonosi opciókat."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Egy szervezeti házirend letiltotta az elemek személyes tárolóba történő importálását."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "A szervezeti felhasználók személyes tulajdon letiltása"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Sso hivatkozás visszaállítása $ID$ felhasználónál",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Jelszó visszaállítása"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Biztosan eltávolításra kerüljenek a következő felhasználók? A folyamat néhány másodpercet vehet igénybe és nem szakítható meg vagy törölhető."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Téma"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Válasszunk témát az internetes széfhez."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Rendszertéma használata"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Sötét"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Világos"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Kiválasztás megerősítése"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "A felhasználók kezelését engedélyezni kell a Jelszó visszaállításának kezelése jogosultsággal is."
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Szolgáltató beállítása"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Meghívás érkezett egy új szolgáltató beállítására. A folytatáshoz be kell jelentkezni vagy létre kell hozni egy új Bitwarden fiókot."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Adjuk meg az alábbi adatokat a szolgáltató beállításának befejezéséhez. Ha bármilyen kérdés van, forduljunk az Ügyfélszolgálathoz."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Szolgáltató neve"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "A szolgáltató beüzemelésre került."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Ügyfelek"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Szolgáltató adminisztrátor"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Adjuk meg az alábbi adatokat a szolgáltató beállításának befejezéséhez. Ha bármilyen kérdés van, forduljunk az Ügyfélszolgálathoz."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Szolgáltatás felhasználó"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "A szolgáltatás felhasználói elérhetik és kezelhetik az összes ügyfélszervezetet."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Új felhasználó meghívása a szervezetéhez a Bitwarden fiók email címének megadásával. Ha még nem rendelkeznek Bitwarden fiókkal, felkérjük új fiók létrehozására."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Csatlakozás szolgáltatóhoz"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Meghívást érkezett a fenti szervezethez csatlakozáshoz. A meghívás elfogadásához be kell jelentkezni vagy új Bitwarden fiókot kell létrehozni."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "A meghívás nem fogadható el. Kérjük fel a szervezet adminisztrátorát új meghívó küldésére."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "A szervezet elérhető, amikor az adminisztrátor jóváhagyja a tagságot. Amint ez megtörténik, értesítő email érkezik."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Vannak olyan felhasználók, akik elfogadták a meghívást, de ezt még meg kell erősíteni. A felhasználók csak a megerősítésük után férhetnek hozzá a szervezethez."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Szolgáltató"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Új ügyfél szervezet"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Egy új ügyfélszervezet létrehozása társított szolgáltatásként. Lehetőség lesz a szervezet elérésére és kezelésére."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Létező fordítások hozzáadása"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Saját szolgáltató"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Biztosan hozzá szeretnénk adni $ORGANIZATION$ szervezetet ügyfélként $PROVIDER$ szolgáltatáshoz?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "A szervezet sikeresen hozzáadásra került a szolgáltatóhoz"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Hozzáférés a szervezethez $PROVIDER$ szolgáltató használatával",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "A szolgáltató letiltásra került."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "A szolgáltató frissítésre került."
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "A szolgáltató $PROVIDER$. Rendszergazdai és számlázási jogosultságokkal rendelkeznek a szervezet számára.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "$ORGANIZATION$ szervezet leválasztásra került a szolgáltatótól.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Biztosan leválasztjuk ezt a szervezetet? A szervezet továbbra is fennáll, de már nem a szolgáltató kezeli."
|
||||
},
|
||||
"add": {
|
||||
"message": "Hozzáadás"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "A mesterjelszó frissítésre került."
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Mesterjelszó frissítése"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "A mesterjelszót nemrégiben megváltoztatta a szervezet rendszergazdája. A tároló eléréséhez most frissíteni kell a mesterjelszót. A folytatás kijelentkeztet az aktuális munkamenetből és újra be kell jelentkezni. A más eszközökön végzett aktív munkamenetek akár egy órán keresztül is aktívak maradhatnak."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Széf időkifutás"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Állítsunk be maximális széf időtúllépést minden felhasználó számára."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximális széf időkifutás"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "A maximális széf időkifutás érvénytelen."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Óra"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Perc"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "A szervezeti házirendek hatással vannak a széf időkorlátjára. A széf időkorlátja legfeljebb $HOURS$ óra és $MINUTES$ perc lehet.",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Egyedi széf időkifutás"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "A széf időkorlátja túllépi a szervezet által beállított korlátozást."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "A személyes széf exportálás nem engedélyezett."
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Biztosan leválasztjuk ezt a szervezetet? A szervezet továbbra is fennáll, de már nem a szolgáltató kezeli."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "A széf exportálás nem engedélyezett."
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Egy vagy több szervezeti házirend tiltja a személyes széf exportálását."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "SSO típus választás"
|
||||
},
|
||||
"type": {
|
||||
"message": "Típus"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID kapcsolat konfiguráció"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML szolgáltató konfiguráció"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML azonosítási szolgáltató konfiguráció"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Tartalék útvonal"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Kijelentkezett tartalék útvonal"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Hitelesítés"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Ügyfél AZ"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Titkos ügyfélkód"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metaadat cím"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC átirányítási viselkedés"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Követelések lekérése a felhasználói adatok végpontjáról"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "További/egyedi hatókörök (vesszővel elválasztva)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "További/egyedi felhasználó AZ követelések (vesszővel elválasztva)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "További/egyedi email követelés típusok (vesszővel elválasztva)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "További/egyedi név követelés típusok (vesszővel elválasztva)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Kért hitelesítési kontextusosztály referenciaértékek (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Elvárt „acr” követelésérték a válaszban (acr érvényesítés)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Szervezet AZ"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 metaadat webcím"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Az Assertion Consumer Service (ACS) webcíme"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Név AZ formátum"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Kimenő aláírási algoritmus"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Aláírási viselkedés"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimális bejövő aláírási algoritmus"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Állításokat szeretnének aláírni"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Tanúsítványok ellenőrzése"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Szervezeti ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Kötés típusa"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Egyszeri bejelentkezési szolgáltatás webcíme"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Egyszeri kijelentkezés szolgáltatás webcíme"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact feloldási szolgáltatás webcím"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Nyilvános tanúsítvány"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Kimenő aláírási algoritmus"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Kéretlen hitelesítési válasz engedélyezése"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Kimenő kijelentkezési kérések letiltása"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Szeretnénk aláírni a hitelesítési kérelmeket"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Az egyszeri bejelentkezés konfigurációja mentésre került."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Ubah Surel"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Surel Baru"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Kubah organisasi yang dibersihkan."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Lanjutkan di bawah untuk menghapus semua item dan folder di lemari besi Anda. Item milik organisasi yang Anda bagikan tidak akan dihapus."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Kebijakan"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Kebijakan"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Dikonfirmasi"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Pemilik"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Pengguna dengan akses tertinggi yang dapat mengelola semua aspek organisasi Anda."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Perangkat"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Masukkan id instalasi Anda"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Tambahkan Kursi",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Hapus Kursi",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Langganan Anda memungkinkan total $COUNT$ pengguna.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Kursi Untuk Ditambahkan"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Sekarang anda dapat menutup tab ini dan melanjutkan ekstensi."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal Bisnis",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Semua fitur Teams, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Tautkan SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Konfigurasi kebijakan telah dipindahkan, dan halaman ini akan segera tidak digunakan lagi. Silakan klik di bawah ini untuk menggunakan halaman kebijakan Portal Bisnis."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organisasi Tunggal"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Izin"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Akses Portal Bisnis"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Akses Log Peristiwa"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Kelola Semua Koleksi"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Kelola Koleksi yang Ditugaskan"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Kelola Grup"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Kelola Peyetelan Ulang Sandi"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Anda harus secara manual menonaktifkan kebijakan Autentikasi Sistem Masuk Tunggal sebelum kebijakan ini dapat dinonaktifkan."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Kebijakan organisasi memengaruhi opsi kepemilikan Anda."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Nonaktifkan kepemilikan pribadi untuk pengguna organisasi"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Atur Ulang Kata Sandi"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Cambia indirizzo email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Procedendo l'indirizzo email del tuo account sarà modificato ma non cambierà l'email utilizzata per l'autenticazione a due fattori. È possibile modificare questa email nelle impostazioni di accesso in due passaggi."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nuova email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Cassaforte dell'organizzazione svuotata."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Accesso alla cassaforte da parte del provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Procedi in basso per eliminare tutti gli elementi e le cartelle nella cassaforte. Gli elementi che appartengono a un'organizzazione con cui condividi non saranno eliminati."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policy"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Modifica policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confermato"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Email del proprietario (cliente)"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Proprietario"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "L'utente con accesso più alto sarà in grado di gestire tutti gli aspetti della tua organizzazione."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Questo utente non dovrebbe dipendere dal provider. Se il provider viene rimosso dall'organizzazione, questo utente manterrà la proprietà dell'organizzazione."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Amministratore"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organizzazione $ID$ creata.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organizzazione $ID$ aggiunta.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organizzazione $ID$ rimossa.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accesso alla cassaforte dell'organizzazione $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispositivo"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Inserisci il tuo id di installazione"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Imposta un limite di slot utenti per il tuo abbonamento. Una volta raggiunto questo limite, non potrai invitare nuovi utenti."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Numero massimo di slot (opzionale)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Costo massimo dello slot"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Aggiungi postazioni",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Rimuovi postazioni",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Le modifiche apportate al tuo abbonamento comporteranno corrispondenti cambi al totale in fattura. Se i nuovi utenti invitati superano gli slot del tuo abbonamento, riceverai immediatamente un addebito per gli utenti aggiuntivi."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "L'abbonamento consente un totale di $COUNT$ utenti.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limite di abbonamento (facoltativo)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Slot abbonamento"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abbonamento aggiornato"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Opzioni aggiuntive"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Per ulteriori informazioni sulla gestione del tuo abbonamento, contatta il servizio clienti."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Le modifiche apportate al tuo abbonamento comporteranno corrispondenti cambi al totale in fattura. Se i nuovi utenti invitati superano gli slot del tuo abbonamento, riceverai immediatamente un addebito per gli utenti aggiuntivi."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Le modifiche apportate al tuo abbonamento comporteranno corrispondenti cambi al totale in fattura. Se i nuovi utenti invitati superano gli slot utente del tuo abbonamento, riceverai immediatamente un addebito per gli utenti aggiuntivi fino al raggiungimento del limite di $MAX$ slot.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Le modifiche apportate al tuo abbonamento comporteranno corrispondenti cambi al totale in fattura. Non è possibile invitare più di $COUNT$ utenti senza aumentare gli slot dell'abbonamento.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Postazioni da aggiungere"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Puoi chiudere questa scheda e continuare nell'estensione."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portale aziendale",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Tutte le funzionalità Teams e in più:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Collega SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "La configurazione delle policy è stata spostata, e questa pagina sarà presto deprecata. Fai clic sotto per utilizzare la configurazione delle policy del portale aziendale."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organizzazione unica"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permessi"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Accedi al portale aziendale"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Accedi ai log degli eventi"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Gestisci tutte le raccolte"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Crea nuove raccolte"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Modifica tutte le raccolte"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Elimina tutte le raccolte"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Gestisci le raccolte assegnate"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Modifica le raccolte assegnate"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Elimina raccolte assegnate"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gestisci i gruppi"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gestisci reset password"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Devi disabilitare manualmente la policy relativa all'autenticazione SSO prima di disabilitare questa policy."
|
||||
"disableRequiredError": {
|
||||
"message": "Per disabilitare questa policy, è necessario prima disabilitare la policy $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Una policy dell'organizzazione controlla le opzioni di proprietà."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Una policy dell'organizzazione ha disabilitato l'importazione di elementi nella tua cassaforte personale."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disabilita la proprietà personale per gli utenti dell'organizzazione"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Ripristina collegamento SSO per l'utente $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Ripristina password"
|
||||
},
|
||||
@@ -3956,7 +4079,7 @@
|
||||
"message": "Iscrivi automaticamente i nuovi utenti"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Questa organizzazione ha una politica aziendale che ti iscriverà automaticamente al reset della password. Ciò permetterà agli amministratori dell'organizzazione di cambiare la tua password principale."
|
||||
"message": "Questa organizzazione ha una policy aziendale che ti iscriverà automaticamente al ripristino della password. Ciò permetterà agli amministratori dell'organizzazione di cambiare la tua password principale."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "La risposta delle chiavi dell'organizzazione è nulla"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Sei sicuro di voler rimuovere i seguenti utenti? Il processo potrebbe richiedere alcuni secondi per essere completato e non può essere interrotto o annullato."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Scegli un tema per la tua cassaforte web."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Usa tema di sistema"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Scuro"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Chiaro"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Conferma selezionati"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Gestisci utenti deve essere abilitato con il permesso di gestione del ripristino delle password"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Configurazione del provider"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Sei stato invitato a impostare un nuovo provider. Per continuare, accedi o crea un nuovo account Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Inserisci i dettagli sotto per completare la configurazione del provider. Se hai bisogno di aiuto, contatta il customer support."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Nome del provider"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Il provider è stato configurato."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clienti"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Amministratore del provider"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "L'utente con privilegi di accesso più elevato che può gestire tutti gli aspetti del tuo provider nonché accedere e gestire le organizzazioni dei clienti."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Utente di servizio"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Gli utenti di servizio che possono accedere e gestire tutte le organizzazioni cliente."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invita un nuovo utente nella tua organizzazione inserendo di seguito l'indirizzo email del suo account Bitwarden. Se non in possesso di un account Bitwarden, verrà richiesto di crearne uno nuovo."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Unisciti al provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Sei stato invitato a unirti al provider indicato in alto. Per accettare l'invito, accedi o crea un nuovo account Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Impossibile accettare l'invito. Chiedi all'amministratore del provider di inviare un nuovo invito."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Potrai accedere a questo provider quando l'amministratore confermerà la tua iscrizione. Riceverai una mail a conferma avvenuta."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Hai utenti che hanno accettato il loro invito, ma devono ancora essere confermati. Gli utenti non avranno accesso al provider fino a quando non saranno confermati."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nuova organizzazione cliente"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Crea una nuovo organizzazione cliente che sarà associata a te come provider. Sarai in grado di accedere e gestire questa organizzazione."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Aggiungi organizzazione esistente"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Il mio provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Sei sicuro di voler aggiungere $ORGANIZATION$ come cliente di $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organizzazione aggiunta con successo al provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accesso in corso all'organizzazione con il provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Il provider è disabilitato."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider aggiornato"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Il tuo provider è $PROVIDER$. Hanno privilegi amministrativi e di fatturazione per la tua organizzazione.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "L'organizzazione $ORGANIZATION$ è stata rimossa dal tuo provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Sei sicuro di voler rimuovere questa organizzazione? L'organizzazione continuerà ad esistere ma non sarà più gestita dal provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Aggiungi"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Password principale aggiornata"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Aggiorna password principale"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "La tua password principale è stata recentemente modificata da un amministratore nella tua organizzazione. Per accedere alla cassaforte, aggiorna ora la password. Procedendo sarai disconnesso dalla sessione attuale e ti sarà richiesto di effettuare nuovamente l'accesso. Le sessioni attive su altri dispositivi potrebbero continuare a rimanere attive per un massimo di un'ora."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Timeout cassaforte"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configura un timeout massimo della cassaforte per tutti gli utenti."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Timeout massimo della cassaforte"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Timeout massimo della cassaforte non valido."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Ore"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuti"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Le policy dell'organizzazione controllano il timeout della tua cassaforte. Il tempo massimo consentito è di $HOURS$ ore e $MINUTES$ minuti",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Timeout cassaforte personalizzato"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Il timeout della tua cassaforte supera i limiti impostati dalla tua organizzazione."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disabilita esportazione cassaforte personale"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Impedisce agli utenti di esportare i loro dati privati della cassaforte."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Esportazione cassaforte disabilitata"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Una o più policy dell'organizzazione ti impediscono di esportare la tua cassaforte personale."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Seleziona tipo di SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Tipo"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Configurazione OpenID Connect"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Configurazione del provider del servizio SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Configurazione del provider di identità SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "URL di callback"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "URL di disconnessione"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Autorità"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID cliente"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Segreto cliente"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Indirizzo metadata"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Comportamento di redirect OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Ottieni claim dall'endpoint di informazioni utente"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Scope aggiuntivi/personalizzati (separati da virgola)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Tipi di claim 'User ID' aggiuntivi/personalizzati (separati da virgola)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Tipi di claim 'Email' aggiuntivi/personalizzati (separati da virgola)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Tipi di claim \"Name\" aggiuntivi/personalizzati (separati da virgola)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Valori di riferimento della classe del contesto di autenticazione richiesta (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Valore atteso di claim \"acr\" nella risposta (convalida acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID Entità SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL Metadati SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Formato 'Name ID'"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Algoritmo di firma minimo in entrata"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Necessarie asserzioni firmate"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Convalida i certificati"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID entità"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Tipo di associazione"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "URL del servizio di Single Sign On"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Certificato pubblico X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Algoritmo di firma in uscita"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Consenti risposta di autenticazione non richiesta"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disabilita le richieste di logout in uscita"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Necessarie richieste di autenticazione firmate"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "La configurazione del Single Sign-On è stata salvata."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "メールアドレスを変更"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "新しいメールアドレス"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "組織の保管庫を削除"
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "続行すると保管庫内のすべてのアイテムとフォルダーが削除されます。組織と共有しているアイテムは削除されません。"
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "方針"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "方針を編集"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "確認済み"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "オーナー"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "組織内のすべてを管理できる最高のアクセス権を与えます"
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "管理者"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "デバイス"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "インストールIDを入力してください。"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "ライセンスの追加",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "ライセンスの削除",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "あなたの契約では合計$COUNT$ユーザーまで利用できます。",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "ライセンスの追加"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "このタブを閉じて拡張機能で続けられます。"
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "ビジネスポータル",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "すべてのチームの機能に加えて:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO をリンク"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "ポリシー設定が移動されました。このページは間もなく廃止されます。代わりにビジネスポータルポリシーページを使用するには、以下をクリックしてください。"
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "単一組織"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "権限"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "ビジネスポータルにアクセス"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "イベントログにアクセス"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "すべてのコレクションを管理"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "割り当てられたコレクションの管理"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "グループを管理"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "パスワードリセットの管理"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "このポリシーを無効にするには、シングルサインオン認証ポリシーを手動で無効にする必要があります。"
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "組織のポリシーが所有者のオプションに影響を与えています。"
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "組織ユーザーの個人所有権を無効にする"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "パスワードをリセット"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "次のユーザーを削除してもよろしいですか?プロセスは完了まで数秒かかることがあり、中断またはキャンセルすることはできません。"
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "選択を確認"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "パスワードリセットの管理権限を持つユーザーの管理も有効にする必要があります"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
4452
src/locales/ka/messages.json
Normal file
4452
src/locales/ka/messages.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "ಇಮೇಲ್ ಬದಲಾಯಿಸಿ"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "ಹೊಸ ಇಮೇಲ್"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "ಶುದ್ಧೀಕರಿಸಿದ ಸಂಸ್ಥೆ ವಾಲ್ಟ್."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "ನಿಮ್ಮ ವಾಲ್ಟ್ನಲ್ಲಿರುವ ಎಲ್ಲಾ ಐಟಂಗಳು ಮತ್ತು ಫೋಲ್ಡರ್ಗಳನ್ನು ಅಳಿಸಲು ಕೆಳಗೆ ಮುಂದುವರಿಯಿರಿ. ನೀವು ಹಂಚಿಕೊಳ್ಳುವ ಸಂಸ್ಥೆಗೆ ಸೇರಿದ ವಸ್ತುಗಳನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "ನೀತಿಗಳು"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "ನೀತಿಯನ್ನು ತಿದ್ದು"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "ದೃಢಪಡಿಸಲಾಗಿದೆ"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "ಮಾಲೀಕರು"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "ನಿಮ್ಮ ಸಂಸ್ಥೆಯ ಎಲ್ಲಾ ಅಂಶಗಳನ್ನು ನಿರ್ವಹಿಸಬಲ್ಲ ಅತ್ಯುನ್ನತ ಪ್ರವೇಶ ಬಳಕೆದಾರ."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "ಅಡ್ಮಿನ್"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "ಡಿವೈಸ್"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "ನಿಮ್ಮ ಸ್ಥಾಪನಾ ಐಡಿಯನ್ನು ನಮೂದಿಸಿ"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "ಆಸನಗಳನ್ನು ಸೇರಿಸಿ",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "ಆಸನಗಳನ್ನು ತೆಗೆದುಹಾಕಿ",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆ ಒಟ್ಟು $COUNT$ ಬಳಕೆದಾರರಿಗೆ ಅನುಮತಿಸುತ್ತದೆ.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "ಸೇರಿಸಲು ಆಸನಗಳು"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "ನೀವು ಈಗ ಈ ಟ್ಯಾಬ್ ಅನ್ನು ಮುಚ್ಚಬಹುದು ಮತ್ತು ವಿಸ್ತರಣೆಯಲ್ಲಿ ಮುಂದುವರಿಯಬಹುದು."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "ವ್ಯಾಪಾರ ಪೋರ್ಟಲ್",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "ಎಲ್ಲಾ ತಂಡಗಳ ವೈಶಿಷ್ಟ್ಯಗಳು, ಜೊತೆಗೆ:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "ಎಸ್ಎಸ್ಒ ಲಿಂಕ್ ಮಾಡಿ"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "ನೀತಿ ಸಂರಚನೆಯನ್ನು ಸರಿಸಲಾಗಿದೆ, ಮತ್ತು ಈ ಪುಟವನ್ನು ಶೀಘ್ರದಲ್ಲೇ ಅಸಮ್ಮತಿಸಲಾಗುತ್ತದೆ. ಬದಲಿಗೆ ವ್ಯಾಪಾರ ಪೋರ್ಟಲ್ ನೀತಿಗಳ ಪುಟವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ಕೆಳಗೆ ಕ್ಲಿಕ್ ಮಾಡಿ."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "ಏಕ ಸಂಸ್ಥೆ"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "ಅನುಮತಿಗಳು"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "ವ್ಯಾಪಾರ ಪೋರ್ಟಲ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "ಈವೆಂಟ್ ಲಾಗ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಿ"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "ಎಲ್ಲಾ ಸಂಗ್ರಹಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "ನಿಯೋಜಿಸಲಾದ ಸಂಗ್ರಹಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "ಗುಂಪುಗಳನ್ನು ನಿರ್ವಹಿಸಿ"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಕೆಯನ್ನು ನಿರ್ವಹಿಸಿ"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "ಈ ನೀತಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವ ಮೊದಲು ನೀವು ಏಕ ಸೈನ್-ಆನ್ ದೃಢೀಕರಣ ನೀತಿಯನ್ನು ಹಸ್ತಚಾಲಿತವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬೇಕು."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "ಸಂಸ್ಥೆಯ ನೀತಿಯು ನಿಮ್ಮ ಮಾಲೀಕತ್ವದ ಆಯ್ಕೆಗಳ ಮೇಲೆ ಪರಿಣಾಮ ಬೀರುತ್ತಿದೆ."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "ಸಂಸ್ಥೆ ಬಳಕೆದಾರರಿಗಾಗಿ ವೈಯಕ್ತಿಕ ಮಾಲೀಕತ್ವವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "ಕೆಳಗಿನ ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಪ್ರಕ್ರಿಯೆಯು ಪೂರ್ಣಗೊಳ್ಳಲು ಕೆಲವು ಸೆಕೆಂಡುಗಳು ತೆಗೆದುಕೊಳ್ಳಬಹುದು ಮತ್ತು ಅದನ್ನು ಅಡ್ಡಿಪಡಿಸಲು ಅಥವಾ ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "ಆಯ್ಕೆಮಾಡಿದದನ್ನು ದೃಢೀಕರಿಸಿ"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ ಅನುಮತಿಯೊಂದಿಗೆ ಬಳಕೆದಾರರನ್ನು ನಿರ್ವಹಿಸಿ"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "이메일 변경"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "계속 진행하면 계정의 이메일 주소가 변경됩니다. 이때, 2단계 인증에 사용되는 이메일 주소는 변경되지 않습니다. 2단계 인증 설정에서 해당 이메일 주소를 변경할 수 있습니다."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "새 이메일"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "삭제 된 조직 보관함"
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "보관함 내의 모든 항목과 폴더를 삭제하려면 다음 단계로 나아가십시오. 조직에 속한 공유 항목들은 삭제되지 않습니다."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "정책"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "통합 인증(SSO)"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "정책 수정"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "확인됨"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "소유자"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "조직의 모든 측면을 관리할 수있는 최고 액세스 사용자."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "관리자"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "$ID$ 조직을 만들었습니다.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "$ID$ 조직을 추가했습니다.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "$ID$ 조직을 제거했습니다.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "기기"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "설치 ID를 입력하십시오"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "사용자 수 추가",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "사용자 수 제거",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "귀하의 구독은 총 $COUNT$명의 사용자를 허용합니다.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "구독과 관련하여 추가적인 도움이 필요한 경우 고객 지원에 문의하십시오."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "추가할 사용자 수"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "이제 이 탭을 닫고 확장 프로그램에서 계속 진행하셔도 됩니다."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "비즈니스 포털",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "모든 팀 기능, 추가로:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO 연결"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "정책 설정이 이동되었으며 이 페이지는 곧 지원이 종료될 예정입니다. 아래를 클릭해서 비즈니스 포털 정책 페이지를 사용해주세요."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "통합 조직"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "권한"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "비즈니스 포털 접근"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "이벤트 로그 접근"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "모든 컬렉션 관리"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "할당된 컬렉션 관리"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "그룹 관리"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "비밀번호 초기화 관리"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "이 정책을 비활성화하려면 먼저 SSO 인증 정책을 수동으로 비활성화해야 합니다."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "조직의 정책이 소유권 설정에 영향을 미치고 있습니다."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "조직 사용자의 개인 소유권 비활성화"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "비밀번호 재설정"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "정말로 다음 사용자를 삭제하시겠어요? 프로세스를 완료하는 데에는 몇 초 정도가 걸릴 수 있으며 도중에 중단하거나 취소할 수 없습니다."
|
||||
},
|
||||
"theme": {
|
||||
"message": "테마"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "보관함에 사용할 테마를 선택하십시오."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "시스템 테마 사용하기"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "어두운 테마"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "밝은 테마"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "선택 항목 확인"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "비밀번호 재설정 관리 권한으로 사용자 관리도 활성화해야 합니다"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "시"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "분"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "유형"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Mainīt e-pasta adresi"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Jauna e-pasta adrese"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Apvienības glabātava iztīrīta."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Turpnāt zemāk, lai izdzēstu visus glabātavas vienumus un mapes. Vienumi, kas pieder apvienībai un kas tiek koplietoti, netiks izdzēsti."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Nosacījumi"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Vienotā pierakstīšanās (Single Sign-On)"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Labot nosacījumus"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Apstiprināts"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Īpašnieks"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Lietotājs ar augstākajām piekļuves tiesībām, kurš var pārvaldīt visu apvienībā."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Pārvaldnieks"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Izveidota apvienība $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Pievienota apvienība $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Noņemta apvienība $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Ierīce"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Ievadīt uzstādīšanas ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Pievienot vietas",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Noņemt vietas",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Pašreizējais abonements pieļaujamais lietotāju skaits ir līdz $COUNT$.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Abonementu skaits"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abonements atjaunināts"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Papildu iespējas"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Vietas, ko pievienot"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Šo cilni tagad var aizvērt un turpināt paplašinājumā."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Uzņēmējdarbības portāls",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Visas vienību iespējas, kā arī:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Piesaistīt SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Nosacījumu uzstādījumi ir pārvietoti, un šī lapa drīz būs novecojusi. Lūgums klikšķināt zemāk, lai izmantotu uzņemējdarbības portāla nosacījumu lapu."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Viena vienīga apvienība"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Atļaujas"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Piekļūt uzņemējdarbības portālam"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Piekļūt notikumu žurnāla ierakstiem"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Pārvaldīt visus krājumus"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Labot jebkuru krājumu"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Izdzēst jebkuru kolekciju"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Pārvaldīt norīkotos krājumus"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Labot norīkotos krājumus"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Izdzēst norīkotos krājumus"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Pārvaldīt kopas"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Pārvaldīt paroles atiestatīšanu"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Vispirms ir pašrocīgi jātspējo vienotās pieteikšanās nosacījumu kopa, pirms šī var tikt atspējota."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Apvienības nosacījumi ietekmē Tavas īpašumtiesību iespējas."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Atspējot personīgās īpašumtiesības apvienības lietotājiem"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Atiestatīt vienotās pierakstīšānās saiti lietotājam $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Atiestatīt paroli"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Vai tiešām noņemt šos lietotājus? Tas var aizņemt dažas sekundes un nevar tikt pārtraukts vai atcelts."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Izskats"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Izvēlēties tīmekļa glabātavas izskatu."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Izmantot sistēmas izskatu"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Tumšs"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Gaišs"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Apstiprināt atlasīto"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Lietotāju pārvaldīšanai ir jābūt iespējotai arī ar paroļu atiestatīšanas pārvaldīšanas atļauju"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Pakalpojuma lietotājs"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Pievienot"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Galvenā parole atjaunināta"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Atjaunināt galveno paroli"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Apvienības pārvaldnieks nesen nomainīja galveno paroli. Lai piekļūtu glabātavai, tā ir jāatjaunina. Turpinot tiks izbeigta pašreizējā sesija un tiks pieprasīta atkārtota pierakstīšanās. Esošās sesijas citās iekārtās var turpināt darboties līdz vienai stundai."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Glabātavas noildze"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Stundas"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minūtes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Apvienības nosacījumi ietekmē glabātavas noildzi. Lielākā atļautā glabātavas noildze ir $HOURS$ stunda(s) un $MINUTES$ minūte(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Veids"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "ഇമെയില് മാറ്റുക"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "പുതിയ ഇമെയിൽ"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "നയങ്ങൾ"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "നയം എഡിറ്റുചെയ്യുക"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "സ്ഥിരീകരിച്ചു"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "ഉടമ"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "നിങ്ങളുടെ ഓർഗനൈസേഷന്റെ എല്ലാ വശങ്ങളും നിയന്ത്രിക്കാൻ കഴിയുന്ന ഏറ്റവും ഉയർന്ന ആക്സസ്സുള്ള ഉപയോക്താവ്."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "അഡ്മിൻ"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "ഉപകരണം"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "നിങ്ങളുടെ ഇൻസ്റ്റാളേഷൻ ഐഡി നൽകുക"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "സീറ്റുകൾ ചേർക്കുക ",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "സീറ്റുകൾ നീക്കംചെയ്യുക",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "നിങ്ങളുടെ സബ്സ്ക്രിപ്ഷൻ മൊത്തം $COUNT$ ഉപയോക്താക്കളെ അനുവദിക്കുന്നു.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "നിങ്ങൾക്ക് ഇപ്പോൾ ഈ ടാബ് അടച്ച് വിപുലീകരണത്തിൽ തുടരാം."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "ബിസിനസ് പോർട്ടൽ",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "എല്ലാ ടീമുകളുടെ സവിശേഷതകളും, കൂടാതെ:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO ബന്ധിപ്പിക്കുക"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "നയ കോൺഫിഗറേഷൻ നീക്കി, ഈ പേജ് ഉടൻ തന്നെ ഒഴിവാക്കപ്പെടും. പകരം ബിസിനസ് പോർട്ടൽ നയങ്ങളുടെ പേജ് ഉപയോഗിക്കുന്നതിന് ചുവടെ ക്ലിക്കുചെയ്യുക."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "ഒറ്റ ഓർഗനൈസേഷൻ"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "അനുമതികൾ"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "ബിസിനസ്സ് പോർട്ടൽ ആക്സസ് ചെയ്യുക"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "എല്ലാ കളക്ഷനുകളും നിയത്രിക്കുക"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "ഗ്രൂപ്പുകൾ നിയന്ത്രിക്കുക"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Endre e-postadresse"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Ny E-postadresse"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Tømte organisasjonens hvelv."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Fortsett nedenfor for å slette alle objektet og mapper i ditt hvelv. Objekter som tilhører en organisasjon som du deler med, vil ikke bli slettet."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Vilkår"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Endre vilkår"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bekreftet"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Eier"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Høyestetilgangsbrukeren som kan behandle alle aspekter av din organisasjon."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Enhet"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Skriv inn din installasjons-ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Legg til seter",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Fjern seter",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Ditt abonnement tillater opptil $COUNT$ brukere.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seter som skal legges til"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Du kan nå lukke denne fanen og fortsette i utvidelsen."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy konfigurasjon er flyttet, og denne siden vil snart bli avvist. Klikk nedenfor for å bruke Business Portal policyer siden i stedet."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Enkel organisasjon"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Rettigheter"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Administrer alle samlinger"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Administrer alle tildelte samlinger"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Administrer grupper"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Tilbakestill passord"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Bekreft valgte"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "E-mailadres wijzigen"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Doorgaan zal het e-mailadres van je account wijzigen. Het verander het e-mailadres dat wordt gebruikt voor tweestapsaanmelding niet. Je kunt dit e-mailadres wijzigen in de tweestapsaanmeldingsinstellingen."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nieuw e-mailadres"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Organisatiekluis verwijderd."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Kluis benaderd door provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Ga hieronder verder om alle items en mappen in je kluis te verwijderen. Items die behoren tot een organisatie waarmee je deelt, worden niet verwijderd."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Beleidseisen"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single sign-on"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Beleid bewerken"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bevestigd"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "E-mailadres apparaateigenaar"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Eigenaar"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "De gebruiker met de hoogste toegangsrechten. Deze gebruiker kan alle aspecten van je organisatie beheren."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Deze gebruiker moet onafhankelijk zijn van de provider. Als de provider is losgekoppeld van de organisatie, blijft deze gebruiker eigenaar van de organisatie."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Beheerder"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organisatie $ID$ aangemaakt.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organisatie $ID$ toegevoegd.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organisatie $ID$ verwijderd.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "$ID$ organisatiekluis geopend.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Apparaat"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Installatie-id invoeren"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Stel een limiet voor gebruikersplaatsen in voor je abonnement. Zodra deze limiet is bereikt, kun je geen nieuwe gebruikers uitnodigen."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximale gebruikersplaatsen (optioneel)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max. potentiële kosten gebruikersplaatsen"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Plaatsen toevoegen",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Plaatsen verwijderen",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Aanpassingen aan je abonnement leiden tot evenredige wijzigingen in je factuurtotaal. Als nieuwe gebruikers je gebruikersplaatsen overschrijden, ontvang je onmiddellijk een afschrijving voor de extra gebruikers."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Je abonnement omvat $COUNT$ gebruikers.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limiteer abonnement (optioneel)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Gebruikersplaatsen abonnement"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Abonnement bijgewerkt"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Extra opties"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Neem contact op met de klantenservice voor extra hulp bij het beheren van je abonnement."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Aanpassingen aan je abonnement leiden tot evenredige wijzigingen in je factuurtotaal. Als nieuwe gebruikers je gebruikersplaatsen overschrijden, ontvang je onmiddellijk een afschrijving voor de extra gebruikers."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Aanpassingen aan je abonnement leiden tot evenredige wijzigingen in je factuurtotaal. Als nieuwe gebruikers je gebruikersplaatsen overschrijden, ontvang je onmiddellijk een afschrijving voor de extra gebruikers tot het aantal van $MAX$ gebruikersplaatsen is bereikt.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Aanpassingen aan je abonnement leiden tot evenredige wijzigingen in uw factuurtotaal. Je kunt niet meer dan $COUNT$ gebruikers uitnodigen zonder je abonnementsplaatsen te verhogen.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Toe te voegen plaatsen"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Je kunt dit tabblad nu sluiten en doorgaan in de extensie."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Zakelijk portaal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Alle functionaliteit van Teams plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "SSO koppelen"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Beleidsconfiguratie is verplaatst en deze pagina wordt binnenkort niet meer ondersteund. Klik hieronder om het bedrijfsbeleidsportaal te gebruiken."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Enkele organisatie"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Rechten"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Business Portaal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Eventlogs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Alle verbindingen beheren"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Nieuwe verzamelingen aanmaken"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Iedere verzameling bewerken"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Iedere verzameling verwijderen"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Toegewezen collecties beheren"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Toegewezen verzamelingen bewerken"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Toegewezen verzamelingen verwijderen"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Groepen beheren"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Wachtwoordherstel beheren"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Je moet handmatig het Single Sign-On-verificatiebeleid uitschakelen voordat je dit beleid kunt uitgeschakeld."
|
||||
"disableRequiredError": {
|
||||
"message": "Je moet handmatig het $POLICYNAME$-beleid uitschakelen voordat je dit beleid kunt uitschakelen.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Een organisatiebeleid heeft invloed op je eigendomsopties."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Een organisatiebeleid heeft het importeren van items in je persoonlijke kluis uitgeschakeld."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Schakel persoonlijke eigendom uit voor organisatiegebruikers"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Sso-link voor gebruiker $ID$ opnieuw instellen",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Wachtwoord opnieuw instellen"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Weet je zeker dat je de volgende gebruikers wilt verwijderen? Dit proces duurt enkele seconden en kan niet worden onderbroken of geannuleerd."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Thema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Kies een thema voor je webkluis."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Systeemthema"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Donker"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Licht"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Bevestig selectie"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Gebruikers beheren moet ingeschakeld zijn met de optie Wachtwoordherstel beheren"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Providerinstellingen"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Je bent uitgenodigd om een nieuwe provider in te stellen. Om door te gaan, moet je inloggen of een nieuw Bitwarden-account aanmaken."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Vul de gegevens hieronder in om de configuratie van de provider te voltooien. Neem contact op met de klantenservice als je vragen hebt."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Providernaam"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "De provider is ingesteld."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Apparaten"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Providerbeheerder"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "De gebruiker met de hoogste toegang, die alle aspecten van je provider kan beheren alsmede toegang en klantorganisaties kan beheren."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Servicegebruiker"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Servicegebruikers hebben toegang tot alle clientorganisaties en kunnen deze beheren."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Nodig een nieuw gebruikers uit voor je provider door hun Bitwarden-account e-mailadres hieronder in te vullen. Wanneer ze nog geen Bitwarden-account hebben worden ze gevraagd om een nieuw account aan te maken."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Aansluiten bij provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Je bent uitgenodigd om je aan te sluiten bij de bovenstaande provider. Om de uitnodiging te accepteren, moet je inloggen of een nieuw Bitwarden-account aanmaken."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Kan de uitnodiging niet accepteren. Vraag een providerbeheerder om een nieuwe uitnodiging te versturen."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Je krijgt toegang tot deze provider zodra een beheerder je lidmaatschap bevestigt. We sturen je een e-mail wanneer dat gebeurt."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Je hebt gebruikers die hun uitnodiging hebben geaccepteerd, maar die nog moeten worden bevestigd. Gebruikers hebben geen toegang tot de provider totdat ze zijn bevestigd."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nieuwe klant-organisatie"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Maak een nieuwe klantorganisatie aan die aan jou als provider zal worden gekoppeld. Je kunt toegang krijgen tot en deze organisatie beheren."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Bestaande organisatie toevoegen"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Mijn provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Weet je zeker dat je $ORGANIZATION$ als client wilt toevoegen aan $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organisatie succesvol toegevoegd aan de provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Organisatie benaderen via provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is uitgeschakeld."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider bijgewerkt"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Je provider is $PROVIDER$. Ze hebben administratieve- en factuurrechten voor jouw organisatie.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "De organisatie $ORGANIZATION$ is losgekoppeld van jouw provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Weet je zeker dat je deze organisatie wilt loskoppelen? De organisatie zal blijven bestaan maar zal niet langer worden beheerd door de provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Toevoegen"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Hoofdwachtwoord bijgewerkt"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Hoofdwachtwoord bijwerken"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Je hoofdwachtwoord is onlangs veranderd door een beheerder in jouw organisatie. Om toegang te krijgen tot de kluis, moet je deze nu bijwerken. Doorgaan zal je huidige sessie uitloggen, waarna je opnieuw moet inloggen. Actieve sessies op andere apparaten blijven mogelijk nog een uur actief."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Time-out van de kluis"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Stel een maximale time-out van de kluis in voor alle gebruikers."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximale time-out van de kluis"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Ongeldige maximale time-out van de kluis."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Uren"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuten"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Het beleid van je organisatie heeft invloed op de time-out van je kluis. De maximaal toegestane time-out voor je kluis is $HOURS$ uur en $MINUTES$ minuten",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Aangepaste time-out van de kluis"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Je kluis time-out is hoger dan het maximum van jouw organisatie."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Persoonlijke kluis exporteren uitschakelen"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Verbiedt gebruikers om hun privékluisgegevens te exporteren."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Kluis exporteren uitgeschakeld"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Organisatiebeleid voorkomt dat je je persoonlijke kluis exporteert."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Selecteer Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Unsolicited Authentication Response toestaan"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Outbound Logout Requests uitschakelen"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuratie is opgeslagen."
|
||||
}
|
||||
}
|
||||
|
||||
4452
src/locales/nn/messages.json
Normal file
4452
src/locales/nn/messages.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Zmień adres e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Kontynuowanie spowoduje zmianę adresu e-mail konta. Nie spowoduje to zmiany adresu używanego do logowania dwustopniowego. Możesz zmienić ten adres w ustawieniach logowania dwustopniowego."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nowy adres e-mail"
|
||||
},
|
||||
@@ -921,10 +924,10 @@
|
||||
"message": "Adres e-mail został zmieniony"
|
||||
},
|
||||
"logBackIn": {
|
||||
"message": "Proszę zalogować się ponownie."
|
||||
"message": "Zaloguj się ponownie."
|
||||
},
|
||||
"logBackInOthersToo": {
|
||||
"message": "Proszę zalogować się ponownie. Jeśli używasz innych aplikacji Bitwarden, wyloguj się i zaloguj ponownie również w nich."
|
||||
"message": "Zaloguj się ponownie. Jeśli używasz innych aplikacji Bitwarden, wyloguj się i zaloguj ponownie również w nich."
|
||||
},
|
||||
"changeMasterPassword": {
|
||||
"message": "Zmień hasło główne"
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Sejf organizacji został wyczyszczony."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Dostęp do sejfu przez dostawcę."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Kontynuuj poniżej, aby usunąć wszystkie elementy i foldery z sejfu. Elementy udostępnione organizacji nie zostaną usunięte."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Zasady"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Logowanie jednokrotne"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edytuj zasady"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Potwierdzone"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Adres e-mail właściciela organizacji"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Właściciel"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Użytkownik z najwyższym uprawnieniem, który może zarządzać wszystkimi ustawieniami organizacji."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Ten użytkownik powinien być niezależny od dostawcy. Jeśli dostawca zostanie odłączony od organizacji, użytkownik ten zachowa własność organizacji."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrator"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Organizacja $ID$ została utworzona.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Organizacja $ID$ została dodana.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organizacja $ID$ została usunięta.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Dostęp do sejfu organizacji $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Urządzenie"
|
||||
},
|
||||
@@ -2677,7 +2728,7 @@
|
||||
"message": "Dołącz do organizacji"
|
||||
},
|
||||
"joinOrganizationDesc": {
|
||||
"message": "Zostałeś zaproszony do dołączenia do poniższej organizacji. Aby zaakceptować zaproszenie, musisz się zalogować lub utworzyć nowe konto Bitwarden."
|
||||
"message": "Zostałeś zaproszony do dołączenia do poniższej organizacji. Aby zaakceptować zaproszenie, musisz zalogować się lub utworzyć nowe konto Bitwarden."
|
||||
},
|
||||
"inviteAccepted": {
|
||||
"message": "Zaproszenie zostało zaakceptowane"
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Wpisz identyfikator instalacji"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Ustaw limit liczby stanowisk subskrypcji. Po osiągnięciu tego limitu nie będziesz mógł zapraszać nowych użytkowników."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maksymalna liczba stanowisk (opcjonalnie)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Maksymalny potencjalny koszt stanowisk"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Dodaj stanowiska",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Usuń stanowiska",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Twoja subskrypcja pozwala na łączną liczbę $COUNT$ użytkowników.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit subskrypcji (opcjonalnie)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Liczba stanowisk"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subskrypcja została zaktualizowana"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Dodatkowe opcje"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Aby uzyskać dodatkową pomoc w zarządzaniu subskrypcją, skontaktuj się z działem obsługi klienta."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Jeśli nowo zaproszeni użytkownicy przekroczą liczbę stanowisk w subskrypcji, otrzymasz proporcjonalną opłatę za dodatkowych użytkowników, aż do osiągnięcia limitu maksymalnej liczby stanowisk.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Zmiany w subskrypcji spowodują proporcjonalne zmiany w rozliczeniach. Nie można zaprosić więcej niż $COUNT$ użytkowników bez zwiększenia liczby stanowisk w subskrypcji.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Stanowiska do dodania"
|
||||
},
|
||||
@@ -3282,7 +3382,7 @@
|
||||
"message": "Ustaw hasło główne"
|
||||
},
|
||||
"ssoCompleteRegistration": {
|
||||
"message": "Aby zakończyć logowanie jednokrotne SSO, ustaw hasło główne, aby uzyskać dostęp do sejfu."
|
||||
"message": "W celu zakończenia jednokrotnego logowania SSO, ustaw hasło główne, aby uzyskać dostęp do sejfu."
|
||||
},
|
||||
"identifier": {
|
||||
"message": "Identyfikator"
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Możesz teraz zamknąć tę kartę i kontynuować w rozszerzeniu."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal biznesowy",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Wszystkie funkcje zespołów oraz:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Połącz logowanie jednokrotne SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Miejsce konfiguracji zasady zostało przeniesione i ta strona zostanie wkrótce wycofana. Kliknij poniżej, aby przejść do zasad przedsiębiorstwa."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Pojedyncza organizacja"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Uprawnienia"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Dostęp do portalu biznesowego"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Dostęp do dziennika zdarzeń"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Zarządzaj wszystkimi kolekcjami"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Utwórz nowe kolekcje"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edytuj dowolną kolekcję"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Usuń dowolną kolekcję"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Zarządzaj przypisanymi kolekcjami"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edytuj przypisane kolekcje"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Usuń przypisane kolekcje"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Zarządzaj grupami"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Zarządzaj resetowaniem hasła"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Musisz wyłączyć zasadę uwierzytelniania logowaniem jednokrotnym przed wyłączeniem tej zasady."
|
||||
"disableRequiredError": {
|
||||
"message": "Przed wyłączeniem tej zasady, musisz wyłączyć zasadę $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Zasada organizacji ma wpływ na opcję własności elementów."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Zasada organizacji uniemożliwia importowanie elementów do Twojego sejfu."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Wyłącz opcję własności osobistej dla użytkowników organizacji"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Resetuj link logowania jednokrotnego SSO dla użytkownika $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Zresetuj hasło"
|
||||
},
|
||||
@@ -3956,7 +4079,7 @@
|
||||
"message": "Automatycznie rejestruj nowych użytkowników"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Ta organizacja posiada zasadę, która automatycznie rejestruje użytkowników do resetowania hasła. Rejestracja zezwala administratorom organizacji na zmianę Twojego hasła głównego."
|
||||
"message": "Ta organizacja posługuje się zasadą, która automatycznie rejestruje użytkowników do resetowania hasła. Rejestracja umożliwia administratorom organizacji zmianę Twojego hasła głównego."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "Odpowiedź kluczy organizacji jest pusta"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Czy na pewno chcesz usunąć następujących użytkowników? Proces może potrwać kilka sekund i nie może zostać przerwany lub anulowany."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Motyw"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Wybierz motyw dla sejfu internetowego."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Użyj motywu systemowego"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Ciemny"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Jasny"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Potwierdź zaznaczone"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Zasada \"Zarządzaj użytkownikami\" musi być włączona wraz z uprawnieniem \"Zarządzaj resetowaniem hasła\""
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Ustawienia dostawcy"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Zostałeś zaproszony do konfiguracji nowego dostawcy. Aby kontynuować, zaloguj się lub utwórz nowe konto Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Wpisz dane, aby zakończyć konfigurację dostawcy. W razie pytań skontaktuj się z działem obsługi klienta."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Nazwa dostawcy"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Dostawca został skonfigurowany."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Klienci"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Administrator dostawcy"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Użytkownik z najwyższym uprawnieniem, który może zarządzać wszystkimi ustawieniami dostawcy oraz uzyskiwać dostęp do organizacji klientów i zarządzać nimi."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Serwisant"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Serwisant może uzyskać dostęp do wszystkich klientów organizacji i nimi zarządzać."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Zaproś nowego użytkownika do Twojego dostawcy poprzez wpisanie poniżej jego adresu e-mail. Jeśli nie posiada on jeszcze konta Bitwarden, zostanie poproszony o jego utworzenie."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Dołącz do dostawcy"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Zostałeś zaproszony do dołączenia do poniższego dostawcy. Aby zaakceptować zaproszenie, musisz zalogować się lub utworzyć nowe konto Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Nie można zaakceptować zaproszenia. Poproś administratora o wysłanie nowego zaproszenia."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Dostęp do tego dostawcy otrzymasz po potwierdzeniu członkostwa przez administratora. Dostaniesz wtedy wiadomość e-mail."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Posiadasz użytkowników, którzy zaakceptowali zaproszenie, ale muszą jeszcze zostać potwierdzeni. Użytkownicy nie będą posiadali dostępu do dostawcy, dopóki nie zostaną potwierdzeni."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Dostawca"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nowa organizacja klienta"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Utwórz nową organizację klienta, która będzie powiązana z Tobą jako dostawcą. Będziesz miał dostęp do tej organizacji i będziesz mógł nią zarządzać."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Dodaj obecną organizację"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Mój dostawca"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Czy na pewno chcesz dodać $ORGANIZATION$ jako organizację klienta do dostawcy $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organizacja została dodana do dostawcy"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Dostęp do organizacji za pomocą dostawcy $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Dostawca jest wyłączony."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Dostawca został zaktualizowany"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Twój dostawca to $PROVIDER$. Posiada on uprawnienia administracyjne i rozliczeniowe dla Twojej organizacji.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Organizacja $ORGANIZATION$ została odłączona od Twojego dostawcy.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Czy na pewno chcesz odłączyć tę organizację? Organizacja będzie nadal istnieć, ale nie będzie już zarządzana przez dostawcę."
|
||||
},
|
||||
"add": {
|
||||
"message": "Dodaj"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Hasło główne zostało zaktualizowane"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Zaktualizuj hasło główne"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Hasło główne zostało zmienione przez administratora Twojej organizacji. Musisz je zaktualizować, aby uzyskać dostęp do sejfu. Ta czynność spowoduje wylogowanie z bieżącej sesji, przez co konieczne będzie ponowne zalogowanie się. Aktywne sesje na innych urządzeniach mogą pozostać aktywne przez maksymalnie godzinę."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Blokowanie sejfu"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Ustaw maksymalny czas blokowania sejfu dla wszystkich użytkowników."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maksymalny czas blokowania sejfu"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Maksymalny czas blokowania sejfu jest nieprawidłowy."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Godziny"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuty"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Zasady organizacji mają wpływ czas blokowania sejfu. Maksymalny dozwolony czas wynosi $HOURS$ godz. i $MINUTES$ min.",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Niestandardowy czas blokowania sejfu"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Czas blokowania sejfu przekracza limit określony przez organizację."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Wyłącz eksportowanie osobistego sejfu"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Zabrania użytkownikom eksportowania ich prywatnych danych sejfu."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Eksportowanie sejfu zostało wyłączone"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Co najmniej jedna zasada organizacji uniemożliwia wyeksportowanie Twojego sejfu."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Wybierz rodzaj logowania jednokrotnego SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Rodzaj"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Konfiguracja połączenia OpenID"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Konfiguracja dostawcy usługi SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Konfiguracja dostawcy tożsamości SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Ścieżka wywołania zwrotnego"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Ścieżka wywołania zwrotnego wylogowania"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Dostawca tożsamości"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Identyfikator klienta"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Sekret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Adres metadanych"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Zachowanie przekierowania OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Uzyskaj elementy Claim od punktu końcowego informacji o użytkowniku"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Dodatkowe / niestandardowe zakresy (oddzielone przecinkami)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Dodatkowe / niestandardowe elementy Claim identyfikatora użytkownika (oddzielone przecinkami)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Dodatkowe / niestandardowe elementy Claim adresu e-mail (oddzielone przecinkami)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Dodatkowe / niestandardowe elementy Claim nazwy (oddzielone przecinkami)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Żądane wartości referencyjne klasy kontekstu uwierzytelniania (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Oczekiwano wartości \"acr\" elementu Claim w odpowiedzi (weryfikacja acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "Identyfikator jednostki SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "Adres URL metadanych SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Adres URL usługi Assertion Consumer Service (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Format identyfikatora nazwy"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Algorytm podpisu wychodzącego"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Zachowanie przy podpisywaniu"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimalny algorytm podpisu przychodzącego"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Chcę podpisać asercję"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Zweryfikuj certyfikaty"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Identyfikator jednostki"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Typ powiązania"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Adres URL logowania jednokrotnego"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Adres URL wylogowania jednokrotnego"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Adres URL usługi Artifact Resolution Service"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Certyfikat publiczny X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Algorytm podpisu wychodzącego"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Zezwalaj na niezamówioną odpowiedź uwierzytelniania"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Wyłącz wychodzące żądania wylogowania"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Chcę podpisać żądania uwierzytelniania"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Konfiguracja logowania jednokrotnego została zapisana."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Alterar e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Prosseguir irá alterar o endereço de e-mail da sua conta. Isso não mudará o endereço de e-mail usado para autenticação de dois fatores. Você pode alterar esse endereço de e-mail nas configurações de Login em Duas Etapas."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Novo e-mail"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Cofre da organização limpado."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Cofre acessado pelo provedor."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Continue abaixo para excluir todos os itens e pastas do seu cofre. Itens que pertencem a uma organização com a qual você compartilha não serão excluídos."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Políticas"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Logon Único"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Editar Política"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmado"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Email do Proprietário do Cliente"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Proprietário"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "O maior usuário de acesso que pode gerenciar todos os aspectos da sua organização."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Este usuário deve ser independente do Provedor. Se o Provedor estiver desassociado da organização, este usuário manterá a propriedade da organização."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrador"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "A organização $ID$ foi criada.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "A organização $ID$ foi adicionada.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Organização $ID$ removida.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Cofre da organização $ID$ acessado.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispositivo"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Insira o seu ID de instalação"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Defina um limite de vagas para sua assinatura. Quando esse limite for atingido, você não poderá convidar novos usuários."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Limite Máximo de Vaga (opcional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Custo de vaga máximo potencial"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Adicionar Assentos",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remover Assentos",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Ajustes em sua assinatura resultarão em alterações rateadas em seus totais de cobrança. Se os usuários recém-convidados excederem o número de vagas de sua assinatura, você receberá imediatamente uma cobrança proporcional pelos usuários adicionais."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Sua assinatura permite um total de $COUNT$ usuários.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Assinatura Limite (Opcional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Vagas de Assinatura"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Assinatura atualizada"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Opções Adicionais"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Para ajuda adicional no gerenciamento de sua assinatura, entre em contato com o suporte ao cliente."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Ajustes em sua assinatura resultarão em alterações rateadas em seus totais de cobrança. Se os usuários recém-convidados excederem o número de vagas de sua assinatura, você receberá imediatamente uma cobrança proporcional pelos usuários adicionais."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Ajustes em sua assinatura resultarão em alterações rateadas em seus totais de cobrança. Se os usuários recém-convidados excederem o número de vagas de sua assinatura, você receberá imediatamente uma cobrança proporcional para os usuários adicionais até que seu limite de $MAX$ de vaga seja atingido.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Ajustes em sua assinatura resultarão em alterações rateadas em seus totais de cobrança. Você não pode convidar mais de $COUNT$ usuários sem aumentar suas vagas de assinatura.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Assentos Para Adicionar"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Agora você pode fechar esta aba e continuar na extensão."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal para Empresas",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Recursos para Todas as Equipes, além de:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Vincular SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "A configuração de políticas foi movida, e esta página será descontinuada em breve. Por favor, clique abaixo para usar a página de políticas do Portal de Negócios."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organização Única"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissões"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Acessar Portal do Negócio"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Acessar Registro de Eventos"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Gerenciar Todas as Coleções"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Criar Novas Coleções"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Editar Qualquer Coleção"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Excluir Qualquer Coleção"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Gerenciar Coleções Atribuídas"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Editar Coleções Atribuídas"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Excluir Coleções Atribuídas"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gerenciar Grupos"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gerenciar Redefinição de Senha"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Você deve desativar manualmente a política de autenticação de logon único antes que esta política possa ser desativada."
|
||||
"disableRequiredError": {
|
||||
"message": "Você deve desativar manualmente a política $POLICYNAME$ antes que esta política possa ser desativada.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Uma política de organização está afetando suas opções de propriedade."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Uma política da organização desativou a importação de itens para o seu cofre pessoal."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Desativar propriedade pessoal para usuários da organização"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Redefinir link Sso para o usuário $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Redefinir Senha"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Tem certeza de que deseja remover os seguintes usuários? O processo pode levar alguns segundos para ser concluído e não pode ser interrompido ou cancelado."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Escolha um tema para o seu cofre web."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Usar Tema do Sistema"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Escuro"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Claro"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirmar Selecionado(s)"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Gerenciar Usuários também deve ser habilitado com a permissão para Gerenciar a Redefinição de Senha"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Configuração do Provedor"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Você foi convidado para configurar um novo provedor. Para continuar, você precisa iniciar sessão ou criar uma nova conta no Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Por favor, insira os detalhes abaixo para completar a configuração do provedor. Entre em Contato com o Suporte ao Cliente se tiver alguma dúvida."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Nome do Provedor"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "O provedor foi configurado."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clientes"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Administrador do Provedor"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "O usuário de maior acesso que pode gerenciar todos os aspectos do seu provedor, bem como acessar e gerenciar organizações de clientes."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Usuário de Serviço"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Os usuários do serviço podem acessar e gerenciar todas as organizações de clientes."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Convide um novo usuário para seu provedor digitando o endereço de e-mail da conta Bitwarden dele abaixo. Se ele não tiver uma conta no Bitwarden, ele será solicitado a criar uma nova conta."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Participar do Provedor"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Você foi convidado para participar do provedor listado acima. Para aceitar o convite, você precisa iniciar sessão ou criar uma nova conta no Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Não foi possível aceitar o convite. Peça ao administrador do provedor para enviar um novo convite."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Você pode acessar este provedor quando um administrador confirmar sua associação. Enviaremos um e-mail quando isso acontecer."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Você tem usuários que aceitaram o convite, mas ainda precisam ser confirmados. Os usuários não terão acesso ao provedor até que sejam confirmados."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provedor"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nova Organização de Cliente"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Crie uma nova organização de cliente que será associada a você como o provedor. Você poderá acessar e gerenciar esta organização."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Adicionar Organização Existente"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Meu Provedor"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Tem certeza de que deseja adicionar $ORGANIZATION$ como um cliente a $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organização foi adicionada com sucesso ao provedor"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Acessando a organização usando o provedor $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "O provedor está desativado."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provedor atualizado"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Seu provedor é $PROVIDER$. Eles têm privilégios administrativos e de cobrança para sua organização.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "A organização $ORGANIZATION$ foi desanexada do seu provedor.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Tem certeza de que deseja desanexar esta organização? A organização continuará existindo, mas não será mais gerenciada pelo provedor."
|
||||
},
|
||||
"add": {
|
||||
"message": "Adicionar"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Senha Mestra Atualizada"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Atualizar Senha Mestra"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"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."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Tempo Limite do Cofre"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure o tempo máximo para o cofre para todos os usuários."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Tempo Limite Máximo do Cofre"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Tempo Máximo de Cofre Inválido."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Horas"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutos"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "As políticas da sua organização estão afetando o tempo limite do seu cofre. O Tempo Limite Máximo permitido do Cofre é $HOURS$ hora(s) e $MINUTES$ minuto(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Tempo Limite do Cofre Personalizado"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "O tempo limite do seu cofre excede a restrição definida por sua organização."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Desabilitar Exportação de Cofre Pessoal"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Proíbe os usuários de exportar seus dados de cofre privados."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Exportação de Cofre Desabilitada"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Uma ou mais políticas da organização impdem que você exporte seu cofre pessoal."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Selecionar Tipo de SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Tipo"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Configuração OpenID Connect"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Configuração do Provedor de Serviço SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Configuração do Provedor de Identidade SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Caminho de Retorno"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Caminho de Retorno de Chamada Desconectado"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Autoridade"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID do Cliente"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Segredo do Cliente"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Endereço dos Metadados"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Comportamento de Redirecionamento OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Obter Reivindicações do Terminal de Informações do Usuário"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Escopos Adicionais/Personalizados (delimitado por vírgulas)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Tipos de Reivindicação de ID de Usuário Adicionais/Personalizados (delimitado por vírgulas)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Tipos de Reivindicação de E-mail Adicionais/Personalizados (delimitado por vírgulas)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Tipos de Reivindicação de Nome Adicionais/Personalizados (delimitado por vírgulas)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Valores de Referência de Classe de Contexto de Autenticação Solicitada (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Esperado Valor de Reivindicação \"acr\" Na Resposta (validação acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID da Entidade SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL de Metadados SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "URL do Serviço de Declaração de Consumidor (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Formato ID do Nome"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Algoritmo de Assinatura de Saída"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Comportamento de Assinatura"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Algoritmo de Assinatura de Entrada Mínima"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Precisa de Declarações Assinadas"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validar Certificados"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID da Entidade"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Tipo de Ligação"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "URL de Serviço de Logon Único"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "URL de Serviço de Desconexão Único"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "URL de Serviço de Resolução de Artefato"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Certificado Público X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Algoritmo de Assinatura de Saída"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Permitir Retorno de Autenticação Não Solicitada"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Desativar Solicitações de Desconexão de Saída"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Precisa de Pedidos de Autenticação Assinados"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Configuração de logon único foi salva."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Alterar email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Novo email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Cofre da organização purgado."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceda abaixo para eliminar todos os itens e pastas do seu cofre. Itens que pertençam a uma organização que partilhe não serão eliminados."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Políticas"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Editar política"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmado"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Proprietário"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "O utilizador com acesso mais elevado que pode gerir todos os aspetos da sua organização."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrador"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispositivo"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Introduza o id da sua instalação"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Adicionar lugares",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remover lugares",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "A sua subscrição permite um total de $COUNT$ utilizadores.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Lugares a adicionar"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal de Empresas",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Todas as funcionalidades de Equipas, mais:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Ligar SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Schimbare adresă e-mail"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "E-mail nou"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Seiful organizației a fost curățat."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Continuați în modul indicat mai jos pentru a șterge toate articolele și dosarele din seiful dvs. Articolele care aparțin unei organizații din care sunteți membru nu vor fi șterse."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Politici"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Editare politici"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmat"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Proprietar"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Contul cu cele mai mari privilegii care poate gestiona toate aspectele organizației."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Dispozitiv"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Introducere id de instalare"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Adăugare licențe",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Eliminare licențe",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Abonamentul dvs. permite un total de $COUNT$ utilizatori.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Licențe de adăugat"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Acum puteți închide această filă și puteți continua în extensie."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portal de afaceri",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Toate funcțiile planului Echipe, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Conectare SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Configurarea politicii a fost mutată și această pagină se va deprecia în curând. Vă rugăm să clicați mai jos pentru a utiliza în schimb pagina de politici a portalului de afaceri."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Organizație Single"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permisiuni"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Acces la portalul de afaceri"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Acces la jurnalele de evenimente"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Gestionați toate colecțiile"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Gestionați colecțiile alocate"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Gestionați grupurile"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Gestionați resetarea parolei"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Politica de autentificare la conectare unică (SSO) trebuie dezactivată manual înainte ca această politică să poată fi dezactivată."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "O politică de organizație vă afectează opțiunile de proprietate."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Dezactivează proprietatea personală pentru utilizatorii organizației"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Resetați parola"
|
||||
},
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Sunteți sigur că doriți să eliminați următorii utilizatori? Finalizarea procesului poate dura câteva secunde și nu poate fi întrerupt sau anulat."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirmați selecția"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Gestionare Utilizatori trebuie de asemenea activată cu Gestionare Permisiune de Resetare a Parolei"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Изменение email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "В результате будет изменен адрес email вашего аккаунта. Это не приведет к изменению адреса электронной почты, используемого для двухфакторной аутентификации. Вы можете изменить этот адрес электронной почты в настройках двухэтапного входа."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Новый email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Хранилище организации очищено."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Хранилище, к которому имеет доступ поставщик."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Чтобы удалить все элементы и папки из вашего хранилища, выполните следующие действия. Элементы, принадлежащие организации, с которой вы делитесь, удалены не будут."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Политики"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Единый вход"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Редактировать политику"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Подтверждено"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Email владельца клиента"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Владелец"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Высший пользовательский уровень доступа, который позволяет управлять всеми аспектами вашей организации."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Этот пользователь должен быть независимым от поставщика. Если поставщик будет отсоединен от организации, этот пользователь сохранит право собственности на организацию."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Администратор"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Создана организация $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Добавлена организация $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Удалена организация $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Доступ к хранилищу организации $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Устройство"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Введите идентификатор установки"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Установите лимит мест для вашей подписки. По достижении этого лимита вы не сможете приглашать новых пользователей."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Максимальный предел мест (необязательно)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Максимальная потенциальная стоимость места"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Добавить лицензии",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Удалить лицензии",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Корректировка вашей подписки приведет к пропорциональному изменению суммарного счета. Если количество новых приглашенных пользователей превысит количество мест в вашей подписке, вы сразу же получите пропорциональную плату за дополнительных пользователей."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Ваша подписка разрешает в общей сложности $COUNT$ пользователей.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Ограничить подписку (необязательно)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Места для подписки"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Подписка обновлена"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Дополнительные настройки"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "За дополнительной помощью в управлении подпиской обращайтесь в службу поддержки клиентов."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Корректировка вашей подписки приведет к пропорциональному изменению суммарного счета. Если количество новых приглашенных пользователей превысит количество мест в вашей подписке, вы сразу же получите пропорциональную плату за дополнительных пользователей."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Корректировка вашей подписки приведет к пропорциональному изменению суммарного счета. Если количество новых приглашенных пользователей превысит количество мест в вашей подписке, вы сразу же получите пропорциональную плату за дополнительных пользователей, пока не будет достигнут лимит мест $MAX$.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Изменения в вашей подписке приведут к пропорциональным изменениям в сумме счетов. Без увеличения числа мест подписки количество приглашаемых пользователей - не более $COUNT$.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Лицензии для добавления"
|
||||
},
|
||||
@@ -2932,10 +3032,10 @@
|
||||
"message": "Фильтры"
|
||||
},
|
||||
"vaultTimeout": {
|
||||
"message": "Таймаут хранилища"
|
||||
"message": "Тайм-аут хранилища"
|
||||
},
|
||||
"vaultTimeoutDesc": {
|
||||
"message": "Выберите таймаут для хранилища и действие, которое необходимо предпринять."
|
||||
"message": "Выберите тайм-аут для хранилища и действие, которое необходимо предпринять."
|
||||
},
|
||||
"oneMinute": {
|
||||
"message": "1 минута"
|
||||
@@ -3163,7 +3263,7 @@
|
||||
"message": "Предпочтения пользователя"
|
||||
},
|
||||
"vaultTimeoutAction": {
|
||||
"message": "Действие по таймауту хранилища"
|
||||
"message": "Действие по тайм-ауту хранилища"
|
||||
},
|
||||
"vaultTimeoutActionLockDesc": {
|
||||
"message": "Заблокированное хранилище потребует повторного ввода мастер-пароля для получения доступа к нему."
|
||||
@@ -3258,10 +3358,10 @@
|
||||
}
|
||||
},
|
||||
"vaultTimeoutLogOutConfirmation": {
|
||||
"message": "По истечении таймаута будет выполнен выход, что приведет к отмене всех прав доступа к вашему хранилищу и потребует онлайн-аутентификации. Вы уверены, что хотите использовать этот параметр?"
|
||||
"message": "По истечении тайм-аута будет выполнен выход, что приведет к отмене всех прав доступа к вашему хранилищу и потребует онлайн-аутентификации. Вы уверены, что хотите использовать этот параметр?"
|
||||
},
|
||||
"vaultTimeoutLogOutConfirmationTitle": {
|
||||
"message": "Подтверждение действия по таймауту"
|
||||
"message": "Подтверждение действия по тайм-ауту"
|
||||
},
|
||||
"hidePasswords": {
|
||||
"message": "Скрывать пароли"
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Теперь вы можете закрыть эту вкладку и продолжить в расширении."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Корпоративный портал",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Все функции команд, плюс:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Подключить SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Настройка политики была перемещена, и вскоре эта страница станет недоступной. Нажмите ниже, чтобы использовать вместо нее страницу политик для бизнес-портала."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Одна организация"
|
||||
},
|
||||
@@ -3707,7 +3800,7 @@
|
||||
"message": "Предполагаемый налог"
|
||||
},
|
||||
"custom": {
|
||||
"message": "Другой"
|
||||
"message": "Пользовательский"
|
||||
},
|
||||
"customDesc": {
|
||||
"message": "Позволяет более гибко контролировать права пользователей для расширенных конфигураций."
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Разрешения"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Доступ к бизнес-порталу"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Доступ к журналам событий"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Управлять всеми коллекциями"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Создать новые коллекции"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Редактировать любую коллекцию"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Удалить любую коллекцию"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Управление назначенными коллекциями"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Изменить назначенные коллекции"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Удалить назначенные коллекции"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Управление группами"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Управление сбросом пароля"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Перед отключением этой политики необходимо вручную отключить политику проверки подлинности SSO."
|
||||
"disableRequiredError": {
|
||||
"message": "Перед отключением этой политики необходимо сначала отключить политику $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Политика организации влияет на ваши варианты владения."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Импорт элементов в ваше личное хранилище отключен политикой организации."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Отключить личное владение для пользователей организации"
|
||||
},
|
||||
@@ -3878,7 +3992,7 @@
|
||||
"message": "Отменить сброс пароля"
|
||||
},
|
||||
"enrollPasswordResetSuccess": {
|
||||
"message": "Записано успешно!"
|
||||
"message": "Регистрация успешна!"
|
||||
},
|
||||
"withdrawPasswordResetSuccess": {
|
||||
"message": "Запись успешно отменена!"
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Сбросить SSO-ссылку для пользователя $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Сбросить пароль"
|
||||
},
|
||||
@@ -3956,7 +4079,7 @@
|
||||
"message": "Автоматически регистрировать новых пользователей"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Эта организация имеет политику предприятия, которая автоматически зачислит вас в сброс пароля. Регистрация позволит администраторам организации изменить ваш мастер-пароль."
|
||||
"message": "В этой организации действует корпоративная политика, которая автоматически зарегистрирует вас на сброс пароля. Регистрация позволит администраторам организации изменить ваш мастер-пароль."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "Ответ на ключи организации пустой"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Вы уверены, что хотите удалить следующих пользователей? Процесс может занять несколько секунд и не может быть прерван или отменен."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Тема"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Выберите тему для своего веб-хранилища."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Использовать системную тему"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Темная"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Светлая"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Подтвердить выбранное"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Управление пользователями также должно быть включено с разрешением Управление сбросом пароля"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Настройка поставщика"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Вы приглашены для установки нового поставщика. Чтобы продолжить, войдите или создайте новый аккаунт Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Введите подробную информацию ниже, чтобы завершить установку поставщика. Если у вас есть какие-либо вопросы, обратитесь в службу поддержки."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Название поставщика"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Поставщик настроен."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Клиенты"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Администратор поставщика"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Пользователь с наивысшим уровнем доступа, который может управлять всеми аспектами деятельности вашего поставщика, а также доступом и управлением клиентскими организациями."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Пользователь сервиса"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Пользователи сервиса могут получать доступ и управлять всеми клиентскими организациями."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Пригласите нового пользователя в свою организацию, введя адрес email его учетной записи Bitwarden ниже. Если у него еще нет учетной записи, ему будет предложено ее создать."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Присоединиться к поставщику"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Вас пригласили присоединиться к указанной выше организации. Чтобы принять приглашение, войдите или создайте новую учетную запись Bitwarden."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Невозможно принять приглашение. Попросите администратора поставщика отправить новое приглашение."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Вы сможете получить доступ к этому поставщику, как только администратор подтвердит ваше членство. Мы отправим вам email, когда это произойдет."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "У вас есть пользователи, которые приняли приглашение, но не были подтверждены. Пользователи не будут иметь доступа к поставщику, пока не получат подтверждение."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Поставщик"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Организация нового клиента"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Создайте новую организацию клиента, которая будет связана с вами как с поставщиком услуг. Вы сможете получить доступ к этой организации и управлять ею."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Добавить существующую организацию"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Мой поставщик"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Вы уверены, что хотите добавить $ORGANIZATION$ в качестве клиента к $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Организация была успешно добавлена к поставщику"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Доступ к организации с используя поставщика $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Поставщик отключен."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Поставщик обновлен"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Ваш поставщик услуг - $PROVIDER$. Он обладает административными и биллинговыми привилегиями для вашей организации.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Организация $ORGANIZATION$ была отсоединена от вашего поставщика.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Вы уверены, что хотите отсоединить эту организацию? Организация продолжит существовать, но больше не будет управляться поставщиком."
|
||||
},
|
||||
"add": {
|
||||
"message": "Добавить"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Мастер-пароль обновлен"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Обновить мастер-пароль"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Мастер-пароль недавно был изменен администратором вашей организации. Чтобы получить доступ к хранилищу, вы должны обновить мастер-пароль сейчас. В результате текущая сессия будет завершена, потребуется повторный вход. Активные сессии на других устройствах могут оставаться активными в течение одного часа."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Тайм-аут хранилища"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Настроить максимальный тайм-аут хранилища для всех пользователей."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Максимальный тайм-аут хранилища"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Недопустимый максимальный тайм-аут хранилища."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Час."
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Мин."
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Политики вашей организации влияют на тайм-аут хранилища. Максимально допустимый тайм-аут хранилища составляет $HOURS$ час. и $MINUTES$ мин.",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Пользовательский тайм-аут хранилища"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Тайм-аут вашего хранилища превышает ограничение, установленное вашей организацией."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Отключить экспорт личного хранилища"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Запрещает пользователям экспортировать данные своего личного хранилища."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Экспорт хранилища отключен"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Экспорт вашего личного хранилища запрещен одной или несколькими политиками организации."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Выберите тип SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Тип"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Конфигурация OpenID Connect"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Конфигурация поставщика услуг SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Конфигурация поставщика удостоверений SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Учреждение"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID клиента"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Секрет клиента"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Адрес метаданных"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Поведение перенаправления OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID объекта SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL метаданных SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "URL службы подтверждения клиентов (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Формат ID названия"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Алгоритм исходящей подписи"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Поведение при подписании"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Алгоритм минимальной входящей подписи"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Требуется подпись"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Проверка сертификатов"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID субъекта"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Тип привязки"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "URL службы единого входа"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "URL службы единого выхода"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "URL службы разрешения артефактов"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Публичный сертификат X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Алгоритм исходящей подписи"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Разрешить нежелательный ответ на аутентификацию"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Отключить исходящие запросы на выход"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Требуется подписать запросы на аутентификацию"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Конфигурация единого входа сохранена."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Zmeniť email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Pokračovaním sa zmení e-mailová adresa vášho účtu. Nezmení sa e-mailová adresa používaná na dvojstupňové overovanie. Túto e-mailovú adresu môžete zmeniť v nastaveniach dvojfázového prihlásenia."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Nový e-mail"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Trezor organizácie bol vyprázdnený."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Trezor sprístupnený poskytovateľom."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Pokračujte ďalej ak chcete odstrániť všetky položky a priečinky vo vašom trezore. Položky, ktoré ste zdieľali a patria k organizácii sa neodstránia."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Pravidlá"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Prihlásenie cez prihlasovací formulár"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Upraviť pravidlá"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Potvrdený"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "E-mail klienta"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Vlastník"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Používateľ s najvyššími oprávneniami, môže spravovať všetky aspekty organizácie."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Tento používateľ by mal byť nezávislý od poskytovateľa. Ak sa poskytovateľ odpojí od organizácie, tento používateľ si zachová vlastníctvo organizácie."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administrátor"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Vytvorená organizácia $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Pridaná organizácia $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Odstránená organizácia $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Prístup k trezoru organizácie $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Zariadenie"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Zadajte ID vašej inštalácie"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Nastavte limit počtu používateľov predplatného. Po jeho dosiahnutí nebudete môcť pozvať nových používateľov."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximálny počet miest (voliteľné)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Maximálne náklady na miesto"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Pridať licencie",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Odobrať licencie",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Úprava predplatného bude mať za následok proporcionálnu zmenu celkového účtu. Ak počet nových odporúčaných používateľov presiahne počet miest vo vašom predplatnom, okamžite dostanete primeraný poplatok za ďalších používateľov."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Vaše predplatné zahŕňa $COUNT$ používateľov.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Obmedziť predplatné (voliteľné)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Predplatené miesta"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Predplatené bolo aktualizované"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Ďalšie možnosti"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Ak chcete získať ďalšiu pomoc pri správe svojho predplatného, obráťte sa na zákaznícku podporu."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Úprava predplatného bude mať za následok proporcionálnu zmenu celkového účtu. Ak počet nových odporúčaných používateľov presiahne počet miest vo vašom predplatnom, okamžite dostanete primeraný poplatok za ďalších používateľov."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Úprava predplatného bude mať za následok proporcionálnu zmenu celkového účtu. Ak počet nových odporúčaných používateľov presiahne počet miest vo vašom predplatnom, okamžite dostanete primeraný poplatok za ďalších používateľov, kým sa naplní obmedzenie $MAX$ miest.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Úprava predplatného bude mať za následok proporcionálnu zmenu celkového účtu. Bez zvýšenia počtu miest na predplatné nemôžete pozvať viac ako $COUNT$ používateľov.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Pridať licencií"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Teraz môžete zavrieť túto kartu a pokračovať v rozšírení."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Portál spoločnosti",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Všetky funkcie verzie pre Tímy, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Prepojiť SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Konfigurácia pravidiel bola presunutá a táto stránka bude čoskoro zrušená. Ak chcete radšej konfigurovať pravidlá v Portáli spoločnosti, kliknite, prosím, na tlačidlo nižšie."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Jedna organizácia"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Povolenia"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Prístup k podnikovému portálu"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Prístup k protokolom udalostí"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Spravovať všetky zbierky"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Vytvoriť novú zbierku"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Upraviť ľubovoľnú zbierku"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Odstrániť ľubovoľnú zbierku"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Spravovať priradené zbierky"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Upraviť priradené zbierky"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Odstrániť priradené zbierky"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Spravovať skupiny"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Správa resetovania hesla"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Predtým, ako bude možné túto politiku deaktivovať, musíte manuálne vypnúť politiku overovania jediným prihlásením."
|
||||
"disableRequiredError": {
|
||||
"message": "Pred zakázaním tejto zásady musíte ručne vypnúť zásadu $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Politika organizácie ovplyvňuje vaše možnosti vlastníctva."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Zásady organizácie zakázali importovanie položiek do vášho osobného trezoru."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Zakázať osobné vlastníctvo pre používateľov organizácie"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Resetovať odkaz SSO pre používateľa $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Obnoviť heslo"
|
||||
},
|
||||
@@ -3956,7 +4079,7 @@
|
||||
"message": "Automaticky zaregistrovať nových používateľov"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Táto organizácia má podnikovú politiku, ktorá vás automaticky zaregistruje na obnovenia hesla. Registrácia umožní správcom organizácie zmeniť vaše hlavné heslo."
|
||||
"message": "Táto organizácia má podnikovú politiku, ktorá vás automaticky zaregistruje na obnovenie hesla. Registrácia umožní správcom organizácie zmeniť vaše hlavné heslo."
|
||||
},
|
||||
"resetPasswordOrgKeysError": {
|
||||
"message": "Prázdná odpoveď Organization Keys"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Naozaj chcete odstrániť týchto používateľov? Dokončenie procesu môže trvať niekoľko sekúnd a nie je možné ho prerušiť ani zrušiť."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Motív"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Zvoľte motív pre webový trezor."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Použiť systémový motív"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Tmavý"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Svetlý"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Potvrdiť vybrané"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Správa používateľov musí byť povolená aj s oprávnením spravovať obnovenie hesla"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Nastavenie poskytovateľa"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Boli ste pozvaný, aby ste nastavili nového poskytovateľa. Ak chcete pokračovať, musíte sa prihlásiť alebo si vytvoriť nový Bitwarden účet."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Na dokončenie nastavenia poskytovateľa zadajte nižšie uvedené údaje. V prípade akýchkoľvek otázok kontaktujte zákaznícku podporu."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Názov poskytovateľa"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Poskytovateľ bol nastavený."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Klienti"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Správca poskytovateľa"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Používateľ s najvyšším prístupom, ktorý môže spravovať všetky aspekty vášho poskytovateľa, ako aj prístup a správu klientskych organizácií."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Používateľ služby"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Používatelia služby môžu pristupovať a spravovať všetky klientske organizácie."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Pozvite používateľov k vášmu poskytovateľovi zadaním emailovej adresy ich Bitwarden účtu nižšie. Ak ešte nemajú Bitwarden účet, budú vyzvaní na jeho vytvorenie."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Pripojte sa k poskytovateľovi"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Boli ste pozvaný, aby ste sa pridali k poskytovateľovi uvedenému vyššie. Ak chcete pozvánku prijať, musíte sa prihlásiť alebo si vytvoriť nový Bitwarden účet."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Nie je možné prijať pozvanie. Požiadajte správcu poskytovateľa o zaslanie novej pozvánky."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Prístup k poskytovateľovi získate, keď administrátor potvrdí vaše členstvo. Keď sa tak stane, pošleme vám e-mail."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "Máte používateľov, ktorí prijali pozvanie, ale ešte ich musíte potvrdiť. Používatelia nebudú mať prístup k poskytovateľovi, kým nebudú potvrdení."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Poskytovateľ"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Nová klientská organizácia"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Vytvorí novú klientsku organizáciu, ktorá bude s vami spojená ako poskytovateľ. K tejto organizácii budete mať prístup a budete ju môcť spravovať."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Pridať existujúcu organizáciu"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Môj poskytovateľ"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Naozaj chcete pridať $ORGANIZATION$ ako klienta $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organizácia bola úspešne pridaná k poskytovateľovi"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Prístup k organizácii pomocou poskytovateľa $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Poskytovateľ je zakázaný."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Poskytovateľ aktualizovaný"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Váš poskytovateľ je $PROVIDER$. Má administratívne a fakturačné práva pre vašu organizáciu.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Organizácia $ORGANIZATION$ bola odpojená od vášho poskytovateľa.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Naozaj chcete túto organizáciu odpojiť? Organizácia bude naďalej existovať, ale už nebude spravovaná poskytovateľom."
|
||||
},
|
||||
"add": {
|
||||
"message": "Pridať"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Hlavné heslo aktualizované"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Aktualizovať hlavné heslo"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Vaše hlavné heslo nedávno zmenil správca vo vašej organizácii. Ak chcete získať prístup k trezoru, musíte aktualizovať vaše hlavné heslo teraz. Pokračovaním sa odhlásite z aktuálnej relácie a budete sa musieť znova prihlásiť. Aktívne relácie na iných zariadeniach môžu zostať aktívne až jednu hodinu."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Časový limit pre trezor"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Nastaviť maximálny časový limit trezora pre všetkých používateľov."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximálny časový limit pre trezor"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Neplatný maximálny časový limit pre trezor."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hodiny"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minúty"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Zásady vašej organizácie ovplyvňujú časový limit trezoru. Maximálny povolený časový limit trezoru je $HOURS$ h a $MINUTES$ m",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Vlastný časový limit pre trezor"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Časový limit vášho trezora prekračuje obmedzenia nastavené vašou organizáciou."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Zakázať export osobného trezora"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Zakazuje používateľom exportovať údaje zo súkromného trezora."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Export trezoru je zakázaný"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Jedna alebo viacero zásad organizácie vám bráni exportovať váš osobný trezor."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Vyberte typ SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Typ"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Konfigurácia OpenID Connect"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Konfigurácia poskytovateľa služieb SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Konfigurácia poskytovateľa identít SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Cesta spätného volania"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Cesta spätného volania na odhlásenie"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Autorita"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID klienta"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Tajný kľúč klienta"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Adresa metadát"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Správanie pri presmerovaní OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Získanie žiadostí z koncového bodu informácií o používateľovi"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Ďalšie/vlastné rozsahy (oddelené čiarkou)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID subjektu SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL metadát SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Formát názvu ID"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Overiť certifikáty"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID subjektu"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Verejný certifikát X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Change Email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "New Email"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Purged organization vault."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Proceed below to delete all items and folders in your vault. Items that belong to an organization that you share with will not be deleted."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Device"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -425,7 +425,7 @@
|
||||
"message": "Lägg till ny bilaga"
|
||||
},
|
||||
"deletedAttachment": {
|
||||
"message": "Raderade bilaga"
|
||||
"message": "Deleted attachment"
|
||||
},
|
||||
"deleteAttachmentConfirmation": {
|
||||
"message": "Är du säker på att du vill radera denna bilaga?"
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Ändra e-postadress"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Ny e-postadress"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Rensade organisationsvalv."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Fortsätt nedan för att radera alla objekt och mappar i ditt valv. Objekt som tillhör en organisation som du delar med kommer inte raderas."
|
||||
},
|
||||
@@ -1620,7 +1626,7 @@
|
||||
"message": "Kontots kredit kan användas för att göra köp. Tillgänglig kredit kommer automatiskt tillämpas mot fakturor som genereras för detta konto."
|
||||
},
|
||||
"goPremium": {
|
||||
"message": "Skaffa premium",
|
||||
"message": "Skaffa Premium",
|
||||
"description": "Another way of saying \"Get a premium membership\""
|
||||
},
|
||||
"premiumUpdated": {
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policyer"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Redigera policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Bekräftad"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Ägare"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Användaren med den högsta åtkomsten som kan hantera alla aspekter av din organisation."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Administratör"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Enhet"
|
||||
},
|
||||
@@ -2647,7 +2698,7 @@
|
||||
"message": "Verifiera e-postadress"
|
||||
},
|
||||
"verifyEmailDesc": {
|
||||
"message": "Verifiera ditt kontos e-postadress för att låsa upp alla funktioner."
|
||||
"message": "Verifiera din e-postadress för att få tillgång till alla funktioner."
|
||||
},
|
||||
"verifyEmailFirst": {
|
||||
"message": "Ditt kontos e-postadress måste verifieras först."
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Ange ditt installations-id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Lägg till platser",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Ta bort platser",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Ditt abonnemang tillåter totalt $COUNT$ användare.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Ytterligare alternativ"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Platser att lägga till"
|
||||
},
|
||||
@@ -3176,7 +3276,7 @@
|
||||
"description": "Verb form: to make secure or inaccesible by"
|
||||
},
|
||||
"trash": {
|
||||
"message": "Papperskorgen",
|
||||
"message": "Papperskorg",
|
||||
"description": "Noun: A special folder for holding deleted items that have not yet been permanently deleted"
|
||||
},
|
||||
"searchTrash": {
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Du kan nu stänga denna flik och fortsätta i tillägget."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Företagets portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Alla funktioner för team, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Länka SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policykonfigurationen har flyttats, och den här sidan kommer snart att fasas ut. Klicka nedan för att använda företagsportalens sida för policyer istället."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "En organisation"
|
||||
},
|
||||
@@ -3364,11 +3457,11 @@
|
||||
"message": "Text"
|
||||
},
|
||||
"createSend": {
|
||||
"message": "Skapa ny försändelse",
|
||||
"message": "Skapa ny Send",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"editSend": {
|
||||
"message": "Redigera försändelse",
|
||||
"message": "Redigera Send",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"createdSend": {
|
||||
@@ -3384,7 +3477,7 @@
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"deleteSend": {
|
||||
"message": "Radera försändelse",
|
||||
"message": "Radera Send",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"deleteSendConfirmation": {
|
||||
@@ -3392,7 +3485,7 @@
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"whatTypeOfSend": {
|
||||
"message": "Vilken typ av försändelse är det här?",
|
||||
"message": "What type of Send is this?",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"deletionDate": {
|
||||
@@ -3652,7 +3745,7 @@
|
||||
"message": "På grund av en av företagets policyer är du begränsad från att spara objekt till ditt personliga valv. Ändra ägarskap till en organisation och välj från tillgängliga samlingar."
|
||||
},
|
||||
"disableSend": {
|
||||
"message": "Inaktivera försändelser"
|
||||
"message": "Inaktivera Send"
|
||||
},
|
||||
"disableSendPolicyDesc": {
|
||||
"message": "Tillåt inte användare att skapa eller redigera försändelser. Att radera existerande försändelser kommer fortfarande vara tillåtet.",
|
||||
@@ -3688,7 +3781,7 @@
|
||||
"message": "Följande organisationspolicyer är aktiva just nu:"
|
||||
},
|
||||
"sendDisableHideEmailInEffect": {
|
||||
"message": "Användare får inte dölja sin e-postadress från mottagare när de skapar eller redigerar en Send.",
|
||||
"message": "Användare får inte dölja sin e-postadress för mottagare när de skapar eller redigerar en Send.",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"modifiedPolicyId": {
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Behörigheter"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Åtkomst till företagsportalen"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Åtkomst till händelseloggar"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Hantera alla samlingar"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Hantera tilldelade samlingar"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Hantera grupper"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Hantera lösenordsåterställning"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Du måste inaktivera policyn \"Autentisering med Single Sign-On\" manuellt innan denna policy kan inaktiveras."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "En organisationspolicy påverkar dina ägarskapsalternativ."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Inaktivera personligt ägarskap för organisationens användare"
|
||||
},
|
||||
@@ -3779,7 +3893,7 @@
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"send": {
|
||||
"message": "Försändelse",
|
||||
"message": "Send",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"sendAccessTaglineProductDesc": {
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Återställ lösenord"
|
||||
},
|
||||
@@ -3965,10 +4088,10 @@
|
||||
"message": "Svaret om detaljer om lösenordsåterställning är null"
|
||||
},
|
||||
"trashCleanupWarning": {
|
||||
"message": "Objekt som har varit i papperskorgen i mer än 30 dagar raderas automatiskt."
|
||||
"message": "Objekt som har legat i papperskorgen i mer än 30 dagar raderas automatiskt."
|
||||
},
|
||||
"trashCleanupWarningSelfHosted": {
|
||||
"message": "Objekt som har varit i papperskorgen ett tag raderas automatiskt."
|
||||
"message": "Objekt som har legat i papperskorgen ett tag raderas automatiskt."
|
||||
},
|
||||
"passwordPrompt": {
|
||||
"message": "Återupprepa huvudlösenord"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Är du säker på att du vill ta bort följande användare? Processen kan ta några sekunder att slutföra och kan inte pausas eller avbrytas."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Tema"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Mörkt"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Ljust"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Bekräfta valda"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Hantera användare måste också aktiveras med rättigheten Hantera lösenordsåterställning"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Timmar"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minuter"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Змінити адресу е-пошти"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Продовжуючи, ви зміните адресу електронної пошти вашого облікового запису. Ця дія не змінить адресу електронної пошти, що використовується для двоетапної перевірки. Ви можете змінити цю електронну адресу в налаштуваннях двоетапної перевірки."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Нова адреса е-пошти"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Сховище організації очищено."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Постачальник має доступ до сховища."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Продовжуйте внизу для видалення всіх записів і тек у вашому сховищі. Записи, що належать до спільної організації не будуть видалені."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Політики"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Єдиний вхід"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Змінити політику"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Підтверджено"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Е-пошта власника клієнта"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Власник"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "Користувач з найвищими привілеями, який може керувати всіма налаштуваннями організації."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "Цей користувач повинен бути незалежним від постачальника. Якщо постачальник не пов'язаний з організацією, цей користувач підтримуватиме право власності організації."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Адміністратор"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Створено організацію $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Додано організацію $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Вилучено організацію $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Отримано доступ до сховища організації $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Пристрій"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Введіть ID вашої інсталяції"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Встановіть ліміт місць для вашої передплати. Після досягнення цього ліміту ви не зможете запрошувати нових користувачів."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Максимальний ліміт місць (необов'язково)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Максимальна потенційна вартість місця"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Додати місця",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Вилучити місця",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Коригування вашої передплати призведе до відповідних змін у ваших рахунках. Якщо нові запрошені користувачі перевищать обмеження ваших місць, ви відразу отримаєте пропорційний рахунок для оплати за додаткових користувачів."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Ваша передплата дозволяє всього $COUNT$ користувачів.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Обмеження передплати (Необов'язково)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Передплачені місця"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Передплату оновлено"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Додаткові налаштування"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "Для отримання додаткової допомоги в керуванні вашою передплатою, будь ласка, зверніться до служби підтримки."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Коригування вашої передплати призведе до відповідних змін у ваших рахунках. Якщо нові запрошені користувачі перевищать обмеження ваших місць, ви відразу отримаєте пропорційний рахунок для оплати за додаткових користувачів."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Коригування вашої передплати призведе до відповідних змін у ваших рахунках. Якщо нові запрошені користувачі перевищать обмеження ваших місць, ви відразу отримаєте пропорційний рахунок для оплати за додаткових користувачів, доки не досягнуто вашого обмеження $MAX$ місць.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Коригування вашої передплати призведе до відповідних змін у ваших рахунках. Ви не можете запросити понад $COUNT$ користувачів без збільшення передплачених місць.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Додається місць"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "Тепер ви можете закрити цю вкладку і продовжити в розширенні."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Бізнес-портал",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "Усі функції команд, плюс:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Під'єднати SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Конфігурацію політик було переміщено і ця сторінка невдовзі стане застарілою. Натисніть нижче для використання нової сторінки політик бізнес-порталу."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Єдина організація"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Дозволи"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Доступ до Бізнес-порталу"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Доступ до журналів подій"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Керування всіма збірками"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Створювати нові збірки"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Редагувати будь-яку збірку"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Видаляти будь-яку збірку"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Керування призначеними збірками"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Редагувати призначені колекції"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Видаляти призначені колекції"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Керування групами"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Керувати скиданням пароля"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "Для вимкнення цієї політики ви повинні вручну вимкнути політику ідентифікації єдиного входу (SSO)."
|
||||
"disableRequiredError": {
|
||||
"message": "Перш ніж вимкнути цю політику, ви повинні вручну вимкнути політику $POLICYNAME$.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "Політика організації впливає на ваші параметри власності."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "Політика організації вимкнула імпортування елементів до вашого особистого сховища."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Вимкнути особисту власність для користувачів організації"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Скинути SSO-посилання для користувача $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Скинути пароль"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Автоматичне розгортання"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "Усі користувачі отримають автоматичне розгортання на скидання пароля одразу після схвалення запрошення."
|
||||
"message": "Усі користувачі отримають автоматичне розгортання на скидання пароля одразу після схвалення запрошення та не зможуть його відкликати."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Вже наявні користувачі організації не отримають активного розгортання на скидання пароля. Їм необхідно буде виконати самостійне розгортання, перш ніж адміністратори зможуть скинути їхній пароль."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Автоматично розгортати нових користувачів"
|
||||
"message": "Вимагати автоматичне розгортання нових користувачів"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "Ця організація має корпоративну політику, яка автоматично розгортає вас на скидання пароля. Розгортання дозволятиме адміністраторам організації змінювати ваш головний пароль."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Ви дійсно хочете вилучити зазначених користувачів? Цей процес може тривати кілька секунд і його неможливо перервати чи скасувати."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Тема"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Оберіть тему для вашого вебсховища."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Використовувати системну тему"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Темна"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Світла"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Підтвердити вибір"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Керування користувачами повинно також бути увімкнено з дозволом Керувати скиданням пароля"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Налаштування постачальника"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "Вас запрошено налаштувати нового постачальника. Для продовження вам необхідно увійти чи створити новий обліковий запис Bitwarden."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Будь ласка, введіть наведені нижче подробиці, щоб завершити налаштування постачальника. Зверніться до служби підтримки, якщо у вас виникли будь-які запитання."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Назва постачальника"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "Постачальника було налаштовано."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Клієнти"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Адміністратор постачальника"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "Користувач з найвищими привілеями, який може керувати усіма аспектами вашого постачальника, а також отримувати доступ до керування організаціями клієнтів."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Сервісний користувач"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Сервісні користувачі можуть отримувати доступ та керувати всіма організаціями клієнтів."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Запросіть нового користувача до вашого постачальника, ввівши адресу е-пошти його облікового запису Bitwarden. Якщо він ще не має облікового запису, він отримає запит на його створення."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Приєднатися до постачальника"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "Вас було запрошено приєднатися до зазначеного вгорі постачальника. Щоб підтвердити запрошення, вам необхідно увійти в обліковий запис Bitwarden, або створити його."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Не вдалося прийняти запрошення. Попросіть адміністратора постачальника надіслати вам нове."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "Ви можете отримати доступ до цього постачальника одразу після підтвердження адміністратором. Ми надішлемо вам електронне повідомлення, коли це станеться."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "У вас є користувачі, які підтвердили ваше запрошення, але все ще мають бути схвалені. Користувачі не матимуть доступу до постачальника доки ви їх не затвердите."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Постачальник"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "Нова організація клієнта"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Створіть нову організацію клієнта, яка буде пов'язана з вами, як постачальником. Ви зможете отримати доступ та керувати цією організацією."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Додати наявну організацію"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "Мій постачальник"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Ви дійсно хочете додати $ORGANIZATION$ як клієнт для $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Організацію було успішно додано до постачальника"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Доступ до організації з використанням постачальника $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Постачальника вимкнено."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Постачальника оновлено"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Ваш постачальник $PROVIDER$. Він має адміністраторські та платіжні повноваження для вашої організації.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "Організацію $ORGANIZATION$ було від'єднано від вашого постачальника.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Ви дійсно хочете від'єднати цю організацію? Організація продовжить існувати, але більше не керуватиметься провайдером."
|
||||
},
|
||||
"add": {
|
||||
"message": "Додати"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Головний пароль оновлено"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Оновити головний пароль"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Ваш головний пароль нещодавно був змінений адміністратором організації. Щоб отримати доступ до сховища, ви повинні оновити свій головний пароль зараз. Продовживши, ви вийдете з поточного сеансу, після чого необхідно буде повторно виконати вхід. Сеанси на інших пристроях можуть залишатися активними протягом однієї години."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Час очікування сховища"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Налаштувати максимальний час очікування сховища для всіх користувачів."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Максимальний час очікування сховища"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Недійсний максимальний час очікування сховища."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Годин"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Хвилин"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Політики вашої організації впливають на час очікування сховища. Максимальний дозволений час очікування сховища $HOURS$ годин, $MINUTES$ хвилин",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Власний час очікування сховища"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Час очікування сховища перевищує обмеження, встановлене вашою організацією."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Вимкнути експорт особистого сховища"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Забороняє користувачам експортувати їхні особисті дані сховища."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Експорт сховища вимкнено"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "Одна чи декілька організаційних політик не дозволяють вам експортувати особисте сховище."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Виберіть тип SSO"
|
||||
},
|
||||
"type": {
|
||||
"message": "Тип"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "Конфігурація з'єднання OpenID"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "Конфігурація постачальника послуг SAML"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "Конфігурація ідентифікації постачальника SAML"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Шлях до зворотного виклику"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Вихід зі шляху зворотного виклику"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Установа"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "ID клієнта"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Секретний ключ клієнта"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Адреса метаданих"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "Поведінка переспрямування OIDC"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Отримувати запити від інформації користувача кінцевої точки"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Додаткові/Власні межі (розділені комами)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів ID користувача (розділені комами)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів е-пошти (розділені комами)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Додаткові/Власні типи запитів імені (розділені комами)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Запитані значення посилання класу контексту автентифікації (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Очікувалось значення запиту \"acr\" у відповіді (засвідчення acr)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "ID об'єкта SP"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "URL метаданих SAML 2.0"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "URL-адреса служби підтвердження клієнтів (ACS)"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Формат ID назви"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Алгоритм вихідного підпису"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Поведінка при підписанні"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Мінімальний алгоритм вхідного підписання"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Вимагається підпис підтвердження"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Перевірка сертифікатів"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "ID об'єкта"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Тип пов'язування"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "URL служби єдиного входу"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "URL служби єдиного виходу"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "URL служби розв'язання артефактів"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "Публічний сертифікат X509"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Алгоритм вихідного підпису"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Дозволити небажану відповідь авторизації"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Вимкнути вихідні запити виходу"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Вимагається підписання запитів на підтвердження"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Конфігурацію єдиного входу збережено."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "Thay đổi địa chỉ email"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "Địa chỉ email mới"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "Đã xóa kho tổ chức."
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "Tiếp tục bên dưới để xóa hết tất cả mục và thư mục trong kho của bạn. Những mục thuộc về tổ chức mà bạn chia sẻ với sẽ không bị xóa."
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "Policies"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "Single Sign-On"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "Edit Policy"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "Confirmed"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "Client Owner Email"
|
||||
},
|
||||
"owner": {
|
||||
"message": "Owner"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your organization."
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "Admin"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "Created organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "Added organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "Removed organization $ID$.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "Thiết bị"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "Enter your installation id"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "Set a seat limit for your subscription. Once this limit is reached, you will not be able to invite new users."
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "Maximum Seat Limit (optional)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "Add Seats",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "Remove Seats",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "Your subscription allows for a total of $COUNT$ users.",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "Limit Subscription (Optional)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "Subscription Seats"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "Subscription updated"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "Additional Options"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "For additional help in managing your subscription, please contact Customer Support."
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users."
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. If newly invited users exceed your subscription seats, you will immediately receive a prorated charge for the additional users until your $MAX$ seat limit is reached.",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "Adjustments to your subscription will result in prorated changes to your billing totals. You cannot invite more than $COUNT$ users without increasing your subscription seats.",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "Seats To Add"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "You may now close this tab and continue in the extension."
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "Business Portal",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "All Teams features, plus:"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "Link SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "Policy configuration has been moved, and this page will soon be deprecated. Please click below to use the Business Portal policies page instead."
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "Single Organization"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "Permissions"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "Access Business Portal"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "Access Event Logs"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "Manage All Collections"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "Create New Collections"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "Manage Assigned Collections"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "Edit Assigned Collections"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "Delete Assigned Collections"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "Manage Groups"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "Manage Password Reset"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "You must manually disable the Single Sign-On Authentication policy before this policy can be disabled."
|
||||
"disableRequiredError": {
|
||||
"message": "You must manually disable the $POLICYNAME$ policy before this policy can be disabled.",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "An organization policy has disabled importing items into your personal vault."
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "Disable personal ownership for organization users"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "Reset Sso link for user $ID$",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "Reset Password"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "Automatic Enrollment"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted."
|
||||
"message": "All users will be automatically enrolled in password reset once their invite is accepted and will not be allowed to withdraw."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "Users already in the organization will not be retroactively enrolled in password reset. They will need to self-enroll before administrators can reset their master password."
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "Automatically enroll new users"
|
||||
"message": "Require new users to be enrolled automatically"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password."
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "Are you sure you want to remove the following users? The process may take a few seconds to complete and cannot be interrupted or canceled."
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "Choose a theme for your web vault."
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "Use System Theme"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "Light"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "Confirm Selected"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "Manage Users must also be enabled with the Manage Password Reset permission"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "Provider Setup"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "You've been invited to setup a new provider. To continue, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "Provider Name"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "The provider has been set up."
|
||||
},
|
||||
"clients": {
|
||||
"message": "Clients"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "Provider Admin"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "Service User"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "Join Provider"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "Provider"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "New Client Organization"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "Add Existing Organization"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "My Provider"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to add $ORGANIZATION$ as a client to $PROVIDER$?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "Organization was successfully added to the provider"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "Accessing organization using provider $PROVIDER$",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "Provider is disabled."
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "Provider updated"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "Your provider is $PROVIDER$. They have administrative and billing privileges for your organization.",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "Are you sure you want to detach this organization? The organization will continue to exist but will no longer be managed by the provider."
|
||||
},
|
||||
"add": {
|
||||
"message": "Add"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "Updated Master Password"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "Update Master Password"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour."
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "Vault Timeout"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "Configure a maximum vault timeout for all users."
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "Maximum Vault Timeout"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "Invalid Maximum Vault Timeout."
|
||||
},
|
||||
"hours": {
|
||||
"message": "Hours"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "Minutes"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "Custom Vault Timeout"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "Disable Personal Vault Export"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "Vault Export Disabled"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "Select SSO Type"
|
||||
},
|
||||
"type": {
|
||||
"message": "Type"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID Connect Configuration"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "Client ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "Client Secret"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP Entity ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "Name ID Format"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "Validate Certificates"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "Entity ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 Public Certificate"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "更改电子邮件"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "继续操作将更改您的帐户电子邮件地址。这不会更改用于双重身份验证的电子邮件地址。 您可以在两步登录设置中更改它。"
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "新电子邮件"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "组织密码库已清空。"
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "密码库被提供商访问。"
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "接下来的操作会删除密码库中的所有项目和文件夹。属于组织的共享项目将不会被删除。"
|
||||
},
|
||||
@@ -1434,7 +1440,7 @@
|
||||
"message": "发现未使用双重身份验证的登录"
|
||||
},
|
||||
"inactive2faFoundDesc": {
|
||||
"message": "我们在您的密码库中发现 $COUNT$ 个网站可能没有配置双重验证(通过 twofactorauth.org)。为了进一步保护这些账户,您应该启用双重验证。",
|
||||
"message": "我们在您的密码库中发现 $COUNT$ 个网站可能没有配置双重身份验证(通过 twofactorauth.org)。为了进一步保护这些账户,您应该启用双重身份验证。",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "策略"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "单点登录(SSO)"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "编辑策略"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "已确认"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "客户所有者电子邮件"
|
||||
},
|
||||
"owner": {
|
||||
"message": "所有者"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "可以管理组织的所有方面的最高权限用户。"
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "此用户应独立于提供商。如果提供商与组织断开关联,该用户将保留该组织的所有权。"
|
||||
},
|
||||
"admin": {
|
||||
"message": "管理员"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "已创建组织 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "已添加组织 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "已移除组织 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "已访问 $ID$ 组织密码库。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "设备"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "输入您的安装 ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "为您的订阅设置席位限制。达到此限制后,您将无法邀请新的用户。"
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "最大席位限制(可选)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "最大潜在席位成本"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "添加席位",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "移除席位",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "调整订阅将导致按比例调整您的账单总额。如果新邀请的用户超过了您的订阅座位,您将立即收到按比例的额外用户费用。"
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "您的订阅一共允许 $COUNT$ 位用户。",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "限制订阅(可选)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "订阅席位"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "订阅已更新"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "附加选项"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "如需更多订阅管理的帮助,请联系客服支持。"
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "调整订阅将导致按比例调整您的账单总额。如果新邀请的用户超过了您的订阅座位,您将立即收到按比例的额外用户费用。"
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "调整订阅将导致按比例调整您的账单总额。如果新邀请的用户超过了您的订阅席位,您将立即收到额外用户的按比例费用,直到您达到 $MAX$ 席位限制。",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "调整订阅将导致按比例调整您的账单总额。如果不增加订阅席位,您将不能邀请超过 $COUNT$ 位用户。",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "要添加的席位数"
|
||||
},
|
||||
@@ -3258,7 +3358,7 @@
|
||||
}
|
||||
},
|
||||
"vaultTimeoutLogOutConfirmation": {
|
||||
"message": "超时后注销将解除对密码库的所有访问权限,并需要进行在线验证。确定使用此设置吗?"
|
||||
"message": "超时后注销将解除对密码库的所有访问权限,并需要进行在线身份验证。确定使用此设置吗?"
|
||||
},
|
||||
"vaultTimeoutLogOutConfirmationTitle": {
|
||||
"message": "超时动作确认"
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "您现在可以在扩展中关闭此标签并继续。"
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "业务门户",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "包含所有团队版功能"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "链接 SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "策略配置已转移,此页面很快将废弃。请改用下方的业务门户策略页面。"
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "单一组织"
|
||||
},
|
||||
@@ -3340,7 +3433,7 @@
|
||||
"message": "不是所有者或管理员并且已是其他组织的成员的组织成员将从您的组织中移除。"
|
||||
},
|
||||
"requireSso": {
|
||||
"message": "单点登录验证"
|
||||
"message": "单点登录身份验证"
|
||||
},
|
||||
"requireSsoPolicyDesc": {
|
||||
"message": "要求用户使用企业单点登录(SSO)方式登录。"
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "权限"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "访问业务门户"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "访问事件日志"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "管理所有集合"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "创建新的集合"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "编辑任何集合"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "删除任何集合"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "管理已分配的集合"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "编辑已分配的集合"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "删除已分配的集合"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "管理群组"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "管理密码重置"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "您必须手动禁用单点登录验证策略,然后才能禁用此策略。"
|
||||
"disableRequiredError": {
|
||||
"message": "您必须先手动禁用 $POLICYNAME$ 策略,然后才能禁用此策略。",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "组织策略正在影响您的所有权选项。"
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "组织策略已禁用将项目导入您的个人密码库。"
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "为组织用户禁用个人所有权"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "重置用户 $ID$ 的 SSO 链接",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "重置密码"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "自动注册"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "所有邀请被接受后的用户将会被自动注册密码重置。"
|
||||
"message": "所有接受邀请的用戶,将会被自动注册密码重置,并且不允许撤销。"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "已经在组织中的用户将不会被注册密码重置。需要他们自行注册后,管理员才能重置他们的主密码。"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "自动为新用户注册"
|
||||
"message": "要求为新用户启用自动注册"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "此组织有一个企业策略,将自动为你注册密码重置。注册后将允许组织管理员更改您的主密码。"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "您确定要移除以下用户吗?该过程可能需要几秒钟才能完成,并且不能中断或取消。"
|
||||
},
|
||||
"theme": {
|
||||
"message": "主题"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "为您的网页密码库库选择一个主题。"
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "使用系统主题"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "深色"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "浅色"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "确认选择"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "必须启用管理密码重置权限后才能启用管理用户"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "提供商设置"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "您已被邀请设置一个新的提供商。要继续,您需要登录或创建一个新的 Bitwarden 帐户。"
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "请在下面输入详细信息以完成提供商设置。如果您有任何疑问,请联系客户支持。"
|
||||
},
|
||||
"providerName": {
|
||||
"message": "提供商名称"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "已完成提供商设置。"
|
||||
},
|
||||
"clients": {
|
||||
"message": "客户"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "提供商管理"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "能够管理您的提供商的所有方面的具有最高访问权限的用户也可以访问和管理客户组织。"
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "服务用户"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "服务用户可以访问和管理所有客户组织。"
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "通过在下面输入他们的 Bitwarden 帐户电子邮件地址,邀请新用户加入您的提供商。如果他们还没有 Bitwarden 帐户,将被提示创建一个新的帐户。"
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "加入提供商"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "您已被邀请加入上面列出的提供商。要接受邀请,您需要登录或创建一个新的 Bitwarden 帐户。"
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "无法接受邀请。请联系提供商管理员发送新的邀请。"
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "管理员确认您的会员资格后,您就可以访问此提供商了。发生这种情况时,我们会向您发送一封电子邮件。"
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "您有用户接受了他们的邀请,但仍然需要确认。用户在确认之前将无法访问提供商。"
|
||||
},
|
||||
"provider": {
|
||||
"message": "提供商"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "新客户组织"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "创建一个新的客户组织,该组织将作为提供商与你关联。您可以访问和管理这个组织。"
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "添加现有组织"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "我的提供商"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "您确定要将 $ORGANIZATION$ 添加为 $PROVIDER$ 的客户吗?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "组织已成功添加到此提供商"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "正在使用提供商 $PROVIDER$ 访问组织",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "提供商已被禁用。"
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "提供商已更新"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "您的提供商是 $PROVIDER$。他们对您的组织拥有管理和计费权限。",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "组织 $ORGANIZATION$ 已从您的提供商分离。",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "您确定要分离这个组织吗?该组织将继续存在,但不再由此提供商管理。"
|
||||
},
|
||||
"add": {
|
||||
"message": "添加"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "已更新主密码"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "更新主密码"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "您的主密码最近被您组织的管理员更改过。要访问密码库,您必须立即更新主密码。继续操作将使您退出当前会话,要求您重新登录。其他设备上的活动会话可能会继续保持活动状态长达一小时。"
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "密码库超时"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "为所有用户配置最大密码库超时。"
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "最大密码库超时"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "无效的最大密码库超时。"
|
||||
},
|
||||
"hours": {
|
||||
"message": "小时"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "分钟"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "您的组织策略正在影响您的密码库超时。最大允许的密码库超时时间是 $HOURS$ 小时 $MINUTES$ 分钟。",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "自定义密码库超时"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "您的密码库超时超出了您的组织设置的限制。"
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "禁用个人密码库导出"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "禁止用户导出个人密码库数据。"
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "密码库导出已禁用"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "一个或多个组织策略阻止您导出个人密码库。"
|
||||
},
|
||||
"selectType": {
|
||||
"message": "选择 SSO 类型"
|
||||
},
|
||||
"type": {
|
||||
"message": "类型"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID 连接配置"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML 服务提供商配置"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML 身份提供商配置"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "回调路径"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "注销回调路径"
|
||||
},
|
||||
"authority": {
|
||||
"message": "权威"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "客户 ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "客户密钥"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "元数据地址"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC 重定向行为"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "从用户信息端点获取声明"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "额外/自定义范围(逗号分隔)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "额外/自定义用户 ID 声明类型(逗号分隔)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "额外/自定义电子邮件声明类型(逗号分隔)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "额外/自定义名称声明类型 (逗号分隔)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "请求的身份验证上下文类参考值(acr_value)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "预期的 \"acr\" 声明值响应(acr 验证)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP 实体 ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 元数据 URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "断言消费者服务(ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "名称 ID 格式"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "出站签名算法"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "签名行为"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "最小入站签名算法"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "要求断言被签名"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "验证证书"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "实体 ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "绑定类型"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "单点登录服务 URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "单点登出服务 URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "工件解析服务 URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 公共证书"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "出站签名算法"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "允许未经请求的身份验证响应"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "禁用出站注销请求"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "要求身份验证请求被签名"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "单点登录配置已保存。"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -899,6 +899,9 @@
|
||||
"changeEmail": {
|
||||
"message": "變更電子郵件"
|
||||
},
|
||||
"changeEmailTwoFactorWarning": {
|
||||
"message": "Proceeding will change your account email address. It will not change the email address used for two-factor authentication. You can change this email address in the Two-Step Login settings."
|
||||
},
|
||||
"newEmail": {
|
||||
"message": "新的電子郵件"
|
||||
},
|
||||
@@ -998,6 +1001,9 @@
|
||||
"purgedOrganizationVault": {
|
||||
"message": "組織密碼庫已清空。"
|
||||
},
|
||||
"vaultAccessedByProvider": {
|
||||
"message": "Vault accessed by provider."
|
||||
},
|
||||
"purgeVaultDesc": {
|
||||
"message": "接下來的操作會刪除密碼庫當中的所有項目與資料夾。屬於組織的共享項目將不會刪除。"
|
||||
},
|
||||
@@ -2148,6 +2154,9 @@
|
||||
"policies": {
|
||||
"message": "原則"
|
||||
},
|
||||
"singleSignOn": {
|
||||
"message": "單一登入(SSO)"
|
||||
},
|
||||
"editPolicy": {
|
||||
"message": "編輯原則"
|
||||
},
|
||||
@@ -2238,12 +2247,18 @@
|
||||
"confirmed": {
|
||||
"message": "已確認"
|
||||
},
|
||||
"clientOwnerEmail": {
|
||||
"message": "客戶所有者電子郵件"
|
||||
},
|
||||
"owner": {
|
||||
"message": "擁有者"
|
||||
},
|
||||
"ownerDesc": {
|
||||
"message": "可以管理組織的所有方面的具有最高權限的使用者。"
|
||||
},
|
||||
"clientOwnerDesc": {
|
||||
"message": "This user should be independent of the Provider. If the Provider is disassociated with the organization, this user will maintain ownership of the organization."
|
||||
},
|
||||
"admin": {
|
||||
"message": "管理員"
|
||||
},
|
||||
@@ -2577,6 +2592,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"createdOrganizationId": {
|
||||
"message": "已創建組織 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addedOrganizationId": {
|
||||
"message": "已添加組織 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"removedOrganizationId": {
|
||||
"message": "已移除組 $ID$。",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"accessedClientVault": {
|
||||
"message": "Accessed $ID$ organization vault.",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "Google"
|
||||
}
|
||||
}
|
||||
},
|
||||
"device": {
|
||||
"message": "裝置"
|
||||
},
|
||||
@@ -2830,6 +2881,16 @@
|
||||
"enterInstallationId": {
|
||||
"message": "輸入您的安裝 ID"
|
||||
},
|
||||
"limitSubscriptionDesc": {
|
||||
"message": "爲您的訂閲設定一個席位限制。達到此限制后,您將無法邀請新的使用者。"
|
||||
},
|
||||
"maxSeatLimit": {
|
||||
"message": "最大席位限制(選用)",
|
||||
"description": "Upper limit of seats to allow through autoscaling"
|
||||
},
|
||||
"maxSeatCost": {
|
||||
"message": "Max potential seat cost"
|
||||
},
|
||||
"addSeats": {
|
||||
"message": "新增席位",
|
||||
"description": "Seat = User Seat"
|
||||
@@ -2838,6 +2899,9 @@
|
||||
"message": "移除席位",
|
||||
"description": "Seat = User Seat"
|
||||
},
|
||||
"subscriptionDesc": {
|
||||
"message": "對您的訂閱進行調整將導致按比例更改您的帳單總額。如果新邀請的使用者超過您的訂閱席位,您將立即收到按比例收取的額外使用者費用。"
|
||||
},
|
||||
"subscriptionUserSeats": {
|
||||
"message": "您的訂閱當中包含 $COUNT$ 位使用者的授權。",
|
||||
"placeholders": {
|
||||
@@ -2847,6 +2911,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"limitSubscription": {
|
||||
"message": "限制訂閲(選用)"
|
||||
},
|
||||
"subscriptionSeats": {
|
||||
"message": "訂閲席位"
|
||||
},
|
||||
"subscriptionUpdated": {
|
||||
"message": "訂閲已更新"
|
||||
},
|
||||
"additionalOptions": {
|
||||
"message": "進階選項"
|
||||
},
|
||||
"additionalOptionsDesc": {
|
||||
"message": "有關管理您的訂閲的更多幫助,請聯係客戶支援。"
|
||||
},
|
||||
"subscriptionUserSeatsUnlimitedAutoscale": {
|
||||
"message": "對您的訂閱進行調整將導致按比例更改您的帳單總額。如果新邀請的使用者超過您的訂閱席位,您將立即收到按比例收取的額外使用者費用。"
|
||||
},
|
||||
"subscriptionUserSeatsLimitedAutoscale": {
|
||||
"message": "對您的訂閱進行調整將導致按比例更改您的帳單總額。如果新邀請的使用者超過您的訂閱席位,您將立即收到按比例收取的額外使用者費用,直到達到 $MAX$ 席位限制。",
|
||||
"placeholders": {
|
||||
"max": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"subscriptionMaxReached": {
|
||||
"message": "對您的訂閱進行調整將導致按比例更改您的帳單總額。在不增加訂閱席位的情況下,您不能邀請超過 $COUNT$ 個使用者。",
|
||||
"placeholders": {
|
||||
"count": {
|
||||
"content": "$1",
|
||||
"example": "50"
|
||||
}
|
||||
}
|
||||
},
|
||||
"seatsToAdd": {
|
||||
"message": "要新增的席位數"
|
||||
},
|
||||
@@ -3299,10 +3399,6 @@
|
||||
"ssoHandOff": {
|
||||
"message": "您現在可以關閉此分頁,並且回到擴充套件繼續。"
|
||||
},
|
||||
"businessPortal": {
|
||||
"message": "業務入口",
|
||||
"description": "The web portal used by business organizations for configuring certain features."
|
||||
},
|
||||
"includeAllTeamsFeatures": {
|
||||
"message": "包含所有團隊版功能"
|
||||
},
|
||||
@@ -3324,9 +3420,6 @@
|
||||
"linkSso": {
|
||||
"message": "連結 SSO"
|
||||
},
|
||||
"webPoliciesDeprecationWarning": {
|
||||
"message": "原則配置已轉移,此頁面將很快被弃用。請改用下方的「業務入口」原則頁面。"
|
||||
},
|
||||
"singleOrg": {
|
||||
"message": "單一組織"
|
||||
},
|
||||
@@ -3715,9 +3808,6 @@
|
||||
"permissions": {
|
||||
"message": "權限"
|
||||
},
|
||||
"accessBusinessPortal": {
|
||||
"message": "存取業務入口"
|
||||
},
|
||||
"accessEventLogs": {
|
||||
"message": "存取事件紀錄"
|
||||
},
|
||||
@@ -3730,9 +3820,24 @@
|
||||
"manageAllCollections": {
|
||||
"message": "管理所有集合。"
|
||||
},
|
||||
"createNewCollections": {
|
||||
"message": "創建新的集合"
|
||||
},
|
||||
"editAnyCollection": {
|
||||
"message": "Edit Any Collection"
|
||||
},
|
||||
"deleteAnyCollection": {
|
||||
"message": "Delete Any Collection"
|
||||
},
|
||||
"manageAssignedCollections": {
|
||||
"message": "管理已分配的集合。"
|
||||
},
|
||||
"editAssignedCollections": {
|
||||
"message": "編輯已分配的集合"
|
||||
},
|
||||
"deleteAssignedCollections": {
|
||||
"message": "刪除已關聯的集合"
|
||||
},
|
||||
"manageGroups": {
|
||||
"message": "管理群組"
|
||||
},
|
||||
@@ -3748,12 +3853,21 @@
|
||||
"manageResetPassword": {
|
||||
"message": "管理密碼重設"
|
||||
},
|
||||
"disableRequireSsoError": {
|
||||
"message": "您必須手動停用單一登入認證原則,然後才能停用此原則。"
|
||||
"disableRequiredError": {
|
||||
"message": "您必須先手動停用 $POLICYNAME$ 策略,然後才能停用此策略。",
|
||||
"placeholders": {
|
||||
"policyName": {
|
||||
"content": "$1",
|
||||
"example": "Single Sign-On Authentication"
|
||||
}
|
||||
}
|
||||
},
|
||||
"personalOwnershipPolicyInEffect": {
|
||||
"message": "一個組織原則正在影響您的擁有權選項。"
|
||||
},
|
||||
"personalOwnershipPolicyInEffectImports": {
|
||||
"message": "某個組織虐策略已停用將項目匯入到您的個人密碼庫。"
|
||||
},
|
||||
"personalOwnershipCheckboxDesc": {
|
||||
"message": "為組織使用者禁用個人擁有權。"
|
||||
},
|
||||
@@ -3910,6 +4024,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"eventResetSsoLink": {
|
||||
"message": "為使用者 $ID$ 重置 SSO 鏈接",
|
||||
"placeholders": {
|
||||
"id": {
|
||||
"content": "$1",
|
||||
"example": "John Smith"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resetPassword": {
|
||||
"message": "重設密碼"
|
||||
},
|
||||
@@ -3947,13 +4070,13 @@
|
||||
"message": "自動註冊"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollDescription": {
|
||||
"message": "所有邀請被接受后的使用者將會被自動註冊密碼重設。"
|
||||
"message": "所有接受邀請的使用者,將會被自動註冊密碼重設,並且不允許撤銷。"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollWarning": {
|
||||
"message": "已經在組織中的使用者將不會被註冊密碼重設。他們需要先自行註冊後管理者才能重設他們的主密碼。"
|
||||
},
|
||||
"resetPasswordPolicyAutoEnrollCheckbox": {
|
||||
"message": "自動註冊新使用者"
|
||||
"message": "要求自動註冊新使用者"
|
||||
},
|
||||
"resetPasswordAutoEnrollInviteWarning": {
|
||||
"message": "此組織設定了讓您可自動重設密碼的企業政策。設定政策後,將允許組織管理員更改您的主控密碼。"
|
||||
@@ -3988,6 +4111,21 @@
|
||||
"removeUsersWarning": {
|
||||
"message": "您確定要移除以下使用者嗎?處理程序需要幾秒鐘去完成而且無法被中斷或取消。"
|
||||
},
|
||||
"theme": {
|
||||
"message": "主題"
|
||||
},
|
||||
"themeDesc": {
|
||||
"message": "爲您的網頁密碼庫選擇一個主題。"
|
||||
},
|
||||
"themeSystem": {
|
||||
"message": "使用系統主題"
|
||||
},
|
||||
"themeDark": {
|
||||
"message": "深色"
|
||||
},
|
||||
"themeLight": {
|
||||
"message": "淺色"
|
||||
},
|
||||
"confirmSelected": {
|
||||
"message": "確認所選"
|
||||
},
|
||||
@@ -4017,5 +4155,298 @@
|
||||
},
|
||||
"resetPasswordManageUsers": {
|
||||
"message": "必須開啟管理密碼重設權限後,才能開啟管理使用者權限"
|
||||
},
|
||||
"setupProvider": {
|
||||
"message": "提供商設定"
|
||||
},
|
||||
"setupProviderLoginDesc": {
|
||||
"message": "您被邀請設定一個新的供應商。要繼續,您需要登入或創建一個新的 Bitwarden 賬戶。"
|
||||
},
|
||||
"setupProviderDesc": {
|
||||
"message": "Please enter the details below to complete the provider setup. Contact Customer Support if you have any questions."
|
||||
},
|
||||
"providerName": {
|
||||
"message": "提供商名稱"
|
||||
},
|
||||
"providerSetup": {
|
||||
"message": "提供商已被設定。"
|
||||
},
|
||||
"clients": {
|
||||
"message": "客户"
|
||||
},
|
||||
"providerAdmin": {
|
||||
"message": "提供商管理"
|
||||
},
|
||||
"providerAdminDesc": {
|
||||
"message": "The highest access user that can manage all aspects of your provider as well as access and manage client organizations."
|
||||
},
|
||||
"serviceUser": {
|
||||
"message": "服務使用者"
|
||||
},
|
||||
"serviceUserDesc": {
|
||||
"message": "Service users can access and manage all client organizations."
|
||||
},
|
||||
"providerInviteUserDesc": {
|
||||
"message": "Invite a new user to your provider by entering their Bitwarden account email address below. If they do not have a Bitwarden account already, they will be prompted to create a new account."
|
||||
},
|
||||
"joinProvider": {
|
||||
"message": "加入提供商"
|
||||
},
|
||||
"joinProviderDesc": {
|
||||
"message": "You've been invited to join the provider listed above. To accept the invitation, you need to log in or create a new Bitwarden account."
|
||||
},
|
||||
"providerInviteAcceptFailed": {
|
||||
"message": "Unable to accept invitation. Ask a provider admin to send a new invitation."
|
||||
},
|
||||
"providerInviteAcceptedDesc": {
|
||||
"message": "You can access this provider once an administrator confirms your membership. We'll send you an email when that happens."
|
||||
},
|
||||
"providerUsersNeedConfirmed": {
|
||||
"message": "You have users that have accepted their invitation, but still need to be confirmed. Users will not have access to the provider until they are confirmed."
|
||||
},
|
||||
"provider": {
|
||||
"message": "提供商"
|
||||
},
|
||||
"newClientOrganization": {
|
||||
"message": "新的客戶組織"
|
||||
},
|
||||
"newClientOrganizationDesc": {
|
||||
"message": "Create a new client organization that will be associated with you as the provider. You will be able to access and manage this organization."
|
||||
},
|
||||
"addExistingOrganization": {
|
||||
"message": "添加現有的組織"
|
||||
},
|
||||
"myProvider": {
|
||||
"message": "我的提供商"
|
||||
},
|
||||
"addOrganizationConfirmation": {
|
||||
"message": "你確定要將 $ORGANIZATION$ 添加爲 $PROVIDER$ 的客戶嗎?",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
},
|
||||
"provider": {
|
||||
"content": "$2",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"organizationJoinedProvider": {
|
||||
"message": "已成功將組織添加到提供商"
|
||||
},
|
||||
"accessingUsingProvider": {
|
||||
"message": "正使用提供商 $PROVIDER$ 訪問組織",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providerIsDisabled": {
|
||||
"message": "提供商已被停用。"
|
||||
},
|
||||
"providerUpdated": {
|
||||
"message": "提供商已更新"
|
||||
},
|
||||
"yourProviderIs": {
|
||||
"message": "你的提供商是 $PROVIDER$。他們對您的組織具有管理和計費權限。",
|
||||
"placeholders": {
|
||||
"provider": {
|
||||
"content": "$1",
|
||||
"example": "My Provider Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachedOrganization": {
|
||||
"message": "The organization $ORGANIZATION$ has been detached from your provider.",
|
||||
"placeholders": {
|
||||
"organization": {
|
||||
"content": "$1",
|
||||
"example": "My Org Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detachOrganizationConfirmation": {
|
||||
"message": "您確定要分離此組織嗎?該組織將繼續存在,但不再由此提供商管理。"
|
||||
},
|
||||
"add": {
|
||||
"message": "新增"
|
||||
},
|
||||
"updatedMasterPassword": {
|
||||
"message": "已更新主密碼"
|
||||
},
|
||||
"updateMasterPassword": {
|
||||
"message": "更新主密碼"
|
||||
},
|
||||
"updateMasterPasswordWarning": {
|
||||
"message": "您的主密碼最近被您的組織管理者更改過。要存取密碼庫,您必須現在更新主密碼。繼續操作會登出目前的登入階段,要求您重新登入。其他裝置上使用中的登入階段可能持續最長一個小時。"
|
||||
},
|
||||
"maximumVaultTimeout": {
|
||||
"message": "密碼庫逾時"
|
||||
},
|
||||
"maximumVaultTimeoutDesc": {
|
||||
"message": "為所有使用者配置一個最大密碼庫逾時時長。"
|
||||
},
|
||||
"maximumVaultTimeoutLabel": {
|
||||
"message": "最大密碼庫逾時時長"
|
||||
},
|
||||
"invalidMaximumVaultTimeout": {
|
||||
"message": "無效的最大密碼庫逾時時長。"
|
||||
},
|
||||
"hours": {
|
||||
"message": "小時"
|
||||
},
|
||||
"minutes": {
|
||||
"message": "分鐘"
|
||||
},
|
||||
"vaultTimeoutPolicyInEffect": {
|
||||
"message": "Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is $HOURS$ hour(s) and $MINUTES$ minute(s)",
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"content": "$1",
|
||||
"example": "5"
|
||||
},
|
||||
"minutes": {
|
||||
"content": "$2",
|
||||
"example": "5"
|
||||
}
|
||||
}
|
||||
},
|
||||
"customVaultTimeout": {
|
||||
"message": "自定義密碼庫逾時時長"
|
||||
},
|
||||
"vaultTimeoutToLarge": {
|
||||
"message": "Your vault timeout exceeds the restriction set by your organization."
|
||||
},
|
||||
"disablePersonalVaultExport": {
|
||||
"message": "停用個人密碼庫匯出"
|
||||
},
|
||||
"disablePersonalVaultExportDesc": {
|
||||
"message": "Prohibits users from exporting their private vault data."
|
||||
},
|
||||
"vaultExportDisabled": {
|
||||
"message": "密碼庫匯出已停用"
|
||||
},
|
||||
"personalVaultExportPolicyInEffect": {
|
||||
"message": "One or more organization policies prevents you from exporting your personal vault."
|
||||
},
|
||||
"selectType": {
|
||||
"message": "選擇 SSO 類型"
|
||||
},
|
||||
"type": {
|
||||
"message": "類型"
|
||||
},
|
||||
"openIdConnectConfig": {
|
||||
"message": "OpenID 連接配置"
|
||||
},
|
||||
"samlSpConfig": {
|
||||
"message": "SAML Service Provider Configuration"
|
||||
},
|
||||
"samlIdpConfig": {
|
||||
"message": "SAML Identity Provider Configuration"
|
||||
},
|
||||
"callbackPath": {
|
||||
"message": "Callback Path"
|
||||
},
|
||||
"signedOutCallbackPath": {
|
||||
"message": "Signed Out Callback Path"
|
||||
},
|
||||
"authority": {
|
||||
"message": "Authority"
|
||||
},
|
||||
"clientId": {
|
||||
"message": "客戶 ID"
|
||||
},
|
||||
"clientSecret": {
|
||||
"message": "客戶金鑰"
|
||||
},
|
||||
"metadataAddress": {
|
||||
"message": "Metadata Address"
|
||||
},
|
||||
"oidcRedirectBehavior": {
|
||||
"message": "OIDC Redirect Behavior"
|
||||
},
|
||||
"getClaimsFromUserInfoEndpoint": {
|
||||
"message": "Get Claims From User Info Endpoint"
|
||||
},
|
||||
"additionalScopes": {
|
||||
"message": "Additional/Custom Scopes (comma delimited)"
|
||||
},
|
||||
"additionalUserIdClaimTypes": {
|
||||
"message": "Additional/Custom User ID Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalEmailClaimTypes": {
|
||||
"message": "Additional/Custom Email Claim Types (comma delimited)"
|
||||
},
|
||||
"additionalNameClaimTypes": {
|
||||
"message": "Additional/Custom Name Claim Types (comma delimited)"
|
||||
},
|
||||
"acrValues": {
|
||||
"message": "Requested Authentication Context Class Reference values (acr_values)"
|
||||
},
|
||||
"expectedReturnAcrValue": {
|
||||
"message": "Expected \"acr\" Claim Value In Response (acr validation)"
|
||||
},
|
||||
"spEntityId": {
|
||||
"message": "SP 實體 ID"
|
||||
},
|
||||
"spMetadataUrl": {
|
||||
"message": "SAML 2.0 Metadata URL"
|
||||
},
|
||||
"spAcsUrl": {
|
||||
"message": "Assertion Consumer Service (ACS) URL"
|
||||
},
|
||||
"spNameIdFormat": {
|
||||
"message": "名稱 ID 格式"
|
||||
},
|
||||
"spOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"spSigningBehavior": {
|
||||
"message": "Signing Behavior"
|
||||
},
|
||||
"spMinIncomingSigningAlgorithm": {
|
||||
"message": "Minimum Incoming Signing Algorithm"
|
||||
},
|
||||
"spWantAssertionsSigned": {
|
||||
"message": "Want Assertions Signed"
|
||||
},
|
||||
"spValidateCertificates": {
|
||||
"message": "驗證證書"
|
||||
},
|
||||
"idpEntityId": {
|
||||
"message": "實體 ID"
|
||||
},
|
||||
"idpBindingType": {
|
||||
"message": "Binding Type"
|
||||
},
|
||||
"idpSingleSignOnServiceUrl": {
|
||||
"message": "Single Sign On Service URL"
|
||||
},
|
||||
"idpSingleLogoutServiceUrl": {
|
||||
"message": "Single Log Out Service URL"
|
||||
},
|
||||
"idpArtifactResolutionServiceUrl": {
|
||||
"message": "Artifact Resolution Service URL"
|
||||
},
|
||||
"idpX509PublicCert": {
|
||||
"message": "X509 公共證書"
|
||||
},
|
||||
"idpOutboundSigningAlgorithm": {
|
||||
"message": "Outbound Signing Algorithm"
|
||||
},
|
||||
"idpAllowUnsolicitedAuthnResponse": {
|
||||
"message": "Allow Unsolicited Authentication Response"
|
||||
},
|
||||
"idpDisableOutboundLogoutRequests": {
|
||||
"message": "Disable Outbound Logout Requests"
|
||||
},
|
||||
"idpWantAuthnRequestsSigned": {
|
||||
"message": "Want Authentication Requests Signed"
|
||||
},
|
||||
"ssoSettingsSaved": {
|
||||
"message": "Single Sign-On configuration was saved."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -255,8 +255,8 @@ $themes: (
|
||||
btnDanger: $darkDanger,
|
||||
btnDangerHover: $darkDangerHover,
|
||||
btnDangerText: $darkDarkBlue2,
|
||||
btnLinkText: $darkGrey1,
|
||||
btnLinkTextHover: $white,
|
||||
btnLinkText: $white,
|
||||
btnLinkTextHover: $darkGrey1,
|
||||
btnOutlineDangerBackground: $darkDanger,
|
||||
btnOutlineDangerBackgroundHover: $darkDangerHover,
|
||||
btnOutlineDangerBorder: $darkDanger,
|
||||
|
||||
Reference in New Issue
Block a user