diff --git a/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.html b/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.html
index 51ff9da36f5..93e5033d4cd 100644
--- a/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.html
+++ b/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.html
@@ -17,12 +17,14 @@
[allowNewEntries]="false"
>
-
+ @if(isEnterprise()) {
+
+ }
{
let spectator: Spectator;
@@ -54,8 +59,26 @@ describe('PrivilegeFormComponent', () => {
{ name: Role.SharingSmbRead, title: Role.SharingSmbRead, builtin: false },
{ name: Role.SharingSmbWrite, title: Role.SharingSmbWrite, builtin: false },
] as PrivilegeRole[]),
+ mockCall('system.general.update'),
]),
mockProvider(SlideInRef),
+ mockProvider(DialogService, {
+ confirm: jest.fn(() => of(true)),
+ }),
+ provideMockStore({
+ selectors: [
+ {
+ selector: selectIsEnterprise,
+ value: true,
+ },
+ {
+ selector: selectGeneralConfig,
+ value: {
+ ds_auth: false,
+ },
+ },
+ ],
+ }),
mockAuth(),
{ provide: SLIDE_IN_DATA, useValue: undefined },
],
@@ -91,7 +114,7 @@ describe('PrivilegeFormComponent', () => {
const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' }));
await saveButton.click();
- expect(api.call).toHaveBeenLastCalledWith('privilege.create', [{
+ expect(api.call).toHaveBeenCalledWith('privilege.create', [{
ds_groups: [],
local_groups: [],
name: 'new privilege',
@@ -136,7 +159,7 @@ describe('PrivilegeFormComponent', () => {
const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' }));
await saveButton.click();
- expect(api.call).toHaveBeenLastCalledWith('privilege.update', [10, {
+ expect(api.call).toHaveBeenCalledWith('privilege.update', [10, {
ds_groups: [],
local_groups: [111, 222],
name: 'updated privilege',
@@ -175,7 +198,7 @@ describe('PrivilegeFormComponent', () => {
const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' }));
await saveButton.click();
- expect(api.call).toHaveBeenLastCalledWith('privilege.update', [10, {
+ expect(api.call).toHaveBeenCalledWith('privilege.update', [10, {
ds_groups: [],
local_groups: [111, 222],
web_shell: false,
diff --git a/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.ts b/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.ts
index 77191d4c98e..4d646ff41ce 100644
--- a/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.ts
+++ b/src/app/pages/credentials/groups/privilege/privilege-form/privilege-form.component.ts
@@ -1,18 +1,23 @@
import {
Component, ChangeDetectionStrategy, ChangeDetectorRef, Inject, OnInit,
} from '@angular/core';
+import { toSignal } from '@angular/core/rxjs-interop';
import { Validators, ReactiveFormsModule } from '@angular/forms';
import { MatButton } from '@angular/material/button';
import { MatCard, MatCardContent } from '@angular/material/card';
import { FormBuilder } from '@ngneat/reactive-forms';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
+import { Store } from '@ngrx/store';
import { TranslateService, TranslateModule } from '@ngx-translate/core';
-import { Observable, map } from 'rxjs';
+import {
+ Observable, finalize, map, of, switchMap,
+} from 'rxjs';
import { RequiresRolesDirective } from 'app/directives/requires-roles/requires-roles.directive';
import { Role, roleNames } from 'app/enums/role.enum';
import { helptextPrivilege } from 'app/helptext/account/priviledge';
import { Group } from 'app/interfaces/group.interface';
import { Privilege, PrivilegeUpdate } from 'app/interfaces/privilege.interface';
+import { DialogService } from 'app/modules/dialog/dialog.service';
import { FormActionsComponent } from 'app/modules/forms/ix-forms/components/form-actions/form-actions.component';
import { IxCheckboxComponent } from 'app/modules/forms/ix-forms/components/ix-checkbox/ix-checkbox.component';
import { ChipsProvider } from 'app/modules/forms/ix-forms/components/ix-chips/chips-provider';
@@ -26,6 +31,10 @@ import { SlideInRef } from 'app/modules/slide-ins/slide-in-ref';
import { SLIDE_IN_DATA } from 'app/modules/slide-ins/slide-in.token';
import { TestDirective } from 'app/modules/test-id/test.directive';
import { ApiService } from 'app/services/websocket/api.service';
+import { AppState } from 'app/store';
+import { generalConfigUpdated } from 'app/store/system-config/system-config.actions';
+import { waitForGeneralConfig } from 'app/store/system-config/system-config.selectors';
+import { selectIsEnterprise } from 'app/store/system-info/system-info.selectors';
@UntilDestroy()
@Component({
@@ -66,6 +75,7 @@ export class PrivilegeFormComponent implements OnInit {
});
protected readonly helptext = helptextPrivilege;
+ protected readonly isEnterprise = toSignal(this.store$.select(selectIsEnterprise));
get isNew(): boolean {
return !this.existingPrivilege;
@@ -122,6 +132,8 @@ export class PrivilegeFormComponent implements OnInit {
private cdr: ChangeDetectorRef,
private errorHandler: FormErrorHandlerService,
private slideInRef: SlideInRef,
+ private store$: Store,
+ private dialog: DialogService,
@Inject(SLIDE_IN_DATA) private existingPrivilege: Privilege,
) { }
@@ -161,7 +173,16 @@ export class PrivilegeFormComponent implements OnInit {
request$ = this.api.call('privilege.update', [this.existingPrivilege.id, values]);
}
- request$.pipe(untilDestroyed(this)).subscribe({
+ request$.pipe(
+ switchMap(() => this.store$.pipe(waitForGeneralConfig)),
+ switchMap((generalConfig) => {
+ if (this.isEnterprise() && !generalConfig.ds_auth) {
+ return this.enableDsAuth();
+ }
+ return of(null);
+ }),
+ untilDestroyed(this),
+ ).subscribe({
next: () => {
this.isLoading = false;
this.slideInRef.close(true);
@@ -175,6 +196,22 @@ export class PrivilegeFormComponent implements OnInit {
});
}
+ private enableDsAuth(): Observable {
+ return this.dialog.confirm({
+ title: this.translate.instant('Allow access'),
+ message: this.translate.instant('Allow Directory Service users to access WebUI?'),
+ buttonText: this.translate.instant('Allow'),
+ }).pipe(
+ switchMap((confirmed) => {
+ if (confirmed) {
+ return this.api.call('system.general.update', [{ ds_auth: true }])
+ .pipe(finalize(() => this.store$.dispatch(generalConfigUpdated())));
+ }
+ return of(null);
+ }),
+ );
+ }
+
private get localGroupsUids(): number[] {
return this.localGroups
.filter((group) => this.form.value.local_groups.includes(group.group))
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index 57162c28889..6a741389b60 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -88,6 +88,8 @@
"Adjust Scrub/Resilver Priority": "",
"Adjust how often alert notifications are sent, use the Frequency drop-down. Setting the Frequency to NEVER prevents that alert from being added to alert notifications, but the alert can still show in the web interface if it is triggered.": "",
"All Users": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow access": "",
"Allow anonymous FTP logins with access to the directory specified in Path.": "",
"Allow any local user to log in. By default, only members of the ftp group are allowed to log in.": "",
"Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index a81de3febd9..f7ebe7be59f 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -229,10 +229,12 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Specific": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index 106132848c6..295c121d399 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -64,6 +64,8 @@
"Address Pools": "",
"Adjust Resilver Priority": "",
"Adjust Scrub Priority": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow access": "",
"Allow group members to use sudo. Group members are prompted for their password when using sudo.": "",
"Allow more ciphers for sshd(8) in addition to the defaults in sshd_config(5). None
allows unencrypted SSH connections and AES128-CBC
allows the 128-bit Advanced Encryption Standard.
WARNING: these ciphers are considered security vulnerabilities and should only be allowed in a secure network environment.": "",
"Allow non-unique serialed disks (not recommended)": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index 5c85d639809..a694be02fe7 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -318,6 +318,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -327,6 +328,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index 619eac311b7..80c85110f1d 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -31,6 +31,8 @@
"Admins": "",
"Aliases": "",
"All Users": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow access": "",
"Always Chroot": "",
"Api Keys": "",
"App": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index ed42266f427..2101c9958a5 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -18,6 +18,8 @@
"Address Pool": "",
"Address Pools": "",
"All Users": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow access": "",
"Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
"Also unlock any separate encryption roots that are children of this dataset. Child datasets that inherit encryption from this encryption root will be unlocked in either case.": "",
"An update is already applied. Please restart the system.": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index 0892c95b479..de85b0dc83f 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -312,6 +312,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -321,6 +322,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 965c0809dd7..91e134c017f 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -296,6 +296,7 @@
"Allow Anonymous Login": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
"Allow Password Authentication": "",
@@ -303,6 +304,7 @@
"Allow TCP Port Forwarding": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index 931300efc0a..543fa605947 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -113,9 +113,11 @@
"Allow Anonymous Login": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
"Allow non-unique serialed disks (not recommended)": "",
"Allowed Address": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 3033de6ac2c..3a3dccad34c 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -338,6 +338,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -347,6 +348,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index a1a10c49725..7e32324febd 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -6,6 +6,57 @@
"Actions for {device}": "",
"Add Disk": "",
"Add Proxy": "",
+ "Add SMB Share": "",
+ "Add SPN": "",
+ "Add SSH Connection": "",
+ "Add SSH Keypair": "",
+ "Add Share": "",
+ "Add Smart Test": "",
+ "Add Snapshot Task": "",
+ "Add TrueCloud Backup Task": "",
+ "Add Tunable": "",
+ "Add VM": "",
+ "Add Virtual Machine": "",
+ "Add Volume": "",
+ "Add Widget": "",
+ "Add iSCSI": "",
+ "Add the required no. of disks to get a vdev size estimate": "",
+ "Add to trusted store": "",
+ "Add user linked API Key": "",
+ "Add {item}": "",
+ "Adding, removing, or changing hardware components.": "",
+ "Additional Domains:": "",
+ "Additional Hardware": "",
+ "Additional Parameters String": "",
+ "Address Pool": "",
+ "Address Pools": "",
+ "Adjust Resilver Priority": "",
+ "Adjust Scrub Priority": "",
+ "Admin Password": "",
+ "Admin Username": "",
+ "Administrators": "",
+ "Administrators Group": "",
+ "Admins": "",
+ "Alert List Write": "",
+ "Aliases": "",
+ "All Users": "",
+ "All disks healthy.": "",
+ "Allow Anonymous Binding": "",
+ "Allow Anonymous Login": "",
+ "Allow DNS Updates": "",
+ "Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow Local User Login": "",
+ "Allow Transfer Resumption": "",
+ "Allow Trusted Domains": "",
+ "Allow access": "",
+ "Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
+ "Allow non-unique serialed disks (not recommended)": "",
+ "Allowed Address": "",
+ "Allowed IP Addressed": "",
+ "Allowed IP Addresses Settings": "",
+ "Allowed Initiators": "",
+ "Also Include Naming Schema": "",
"Also unlock any separate encryption roots that are children of this dataset. Child datasets that inherit encryption from this encryption root will be unlocked in either case.": "",
"Api Keys": "",
"Archs": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index ed640ca44c2..37645a930b0 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -298,6 +298,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -307,6 +308,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index 9e8bd9a0ed2..39e94d3207b 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -286,6 +286,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -295,6 +296,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index 1b6bfb7faf2..1e4df4feb99 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -141,9 +141,11 @@
"Allow Anonymous Login": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow any local user to log in. By default, only members of the ftp group are allowed to log in.": "",
"Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
"Allow configuring a non-standard port to access the GUI over HTTP. Changing this setting might require changing a Firefox configuration setting.": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index 853e45c47a1..b78f5fb7689 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -210,10 +210,12 @@
"Allow Anonymous Login": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Specific": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index b08d6cb6d8c..aa17150aad8 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -127,9 +127,11 @@
"Allow Anonymous Login": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "",
"Allow non-unique serialed disks (not recommended)": "",
"Allowed Address": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index f3a3bb34827..e3188cd222d 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -343,6 +343,7 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Guest Access": "",
"Allow Kerberos Authentication": "",
"Allow Local User Login": "",
@@ -352,6 +353,7 @@
"Allow Taking Empty Snapshots": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index a376e52f61f..faa6b75794c 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -13,6 +13,8 @@
"Add user linked API Key": "",
"Adding, removing, or changing hardware components.": "",
"All Users": "",
+ "Allow Directory Service users to access WebUI?": "",
+ "Allow access": "",
"Also unlock any separate encryption roots that are children of this dataset. Child datasets that inherit encryption from this encryption root will be unlocked in either case.": "",
"An update is already applied. Please restart the system.": "",
"Api Keys": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index 32fcf582373..af2f9365c13 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -285,10 +285,12 @@
"Allow Compressed WRITE Records": "",
"Allow DNS Updates": "",
"Allow Directory Service users to access WebUI": "",
+ "Allow Directory Service users to access WebUI?": "",
"Allow Local User Login": "",
"Allow Specific": "",
"Allow Transfer Resumption": "",
"Allow Trusted Domains": "",
+ "Allow access": "",
"Allow all initiators": "",
"Allow all sudo commands": "",
"Allow all sudo commands with no password": "",