diff --git a/src/app/enums/virtualization.enum.ts b/src/app/enums/virtualization.enum.ts index c40e6235a1a..c3da88faf47 100644 --- a/src/app/enums/virtualization.enum.ts +++ b/src/app/enums/virtualization.enum.ts @@ -79,6 +79,6 @@ export enum VirtualizationNicType { } export const virtualizationNicTypeLabels = new Map([ - [VirtualizationNicType.Bridged, T('Bridged')], + [VirtualizationNicType.Bridged, T('Bridged Adaptors')], [VirtualizationNicType.Macvlan, T('MAC VLAN')], ]); diff --git a/src/app/modules/page-header/header-badge/header-badge.component.html b/src/app/modules/page-header/header-badge/header-badge.component.html new file mode 100644 index 00000000000..559ebac6860 --- /dev/null +++ b/src/app/modules/page-header/header-badge/header-badge.component.html @@ -0,0 +1,14 @@ +
+ @if (customBadgeTitle(); as title) { + {{ title | translate }} + } @else { + {{ 'NEW' | translate }} + + + } +
diff --git a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.scss b/src/app/modules/page-header/header-badge/header-badge.component.scss similarity index 100% rename from src/app/modules/page-header/is-new-indicator/new-page-badge.component.scss rename to src/app/modules/page-header/header-badge/header-badge.component.scss diff --git a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.spec.ts b/src/app/modules/page-header/header-badge/header-badge.component.spec.ts similarity index 88% rename from src/app/modules/page-header/is-new-indicator/new-page-badge.component.spec.ts rename to src/app/modules/page-header/header-badge/header-badge.component.spec.ts index 4e12a58e013..0e4057841de 100644 --- a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.spec.ts +++ b/src/app/modules/page-header/header-badge/header-badge.component.spec.ts @@ -7,14 +7,14 @@ import { provideMockStore } from '@ngrx/store/testing'; import { IfNightlyDirective } from 'app/directives/if-nightly/if-nightly.directive'; import { SystemInfo } from 'app/interfaces/system-info.interface'; import { FeedbackDialogComponent } from 'app/modules/feedback/components/feedback-dialog/feedback-dialog.component'; -import { NewPageBadgeComponent } from 'app/modules/page-header/is-new-indicator/new-page-badge.component'; +import { HeaderBadgeComponent } from 'app/modules/page-header/header-badge/header-badge.component'; import { selectSystemInfo } from 'app/store/system-info/system-info.selectors'; -describe('NewPageBadgeComponent', () => { - let spectator: Spectator; +describe('HeaderBadgeComponent', () => { + let spectator: Spectator; let loader: HarnessLoader; const createComponent = createComponentFactory({ - component: NewPageBadgeComponent, + component: HeaderBadgeComponent, imports: [ IfNightlyDirective, ], diff --git a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.ts b/src/app/modules/page-header/header-badge/header-badge.component.ts similarity index 72% rename from src/app/modules/page-header/is-new-indicator/new-page-badge.component.ts rename to src/app/modules/page-header/header-badge/header-badge.component.ts index 663be40ef44..3373980ba06 100644 --- a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.ts +++ b/src/app/modules/page-header/header-badge/header-badge.component.ts @@ -1,4 +1,4 @@ -import { ChangeDetectionStrategy, Component } from '@angular/core'; +import { ChangeDetectionStrategy, Component, input } from '@angular/core'; import { MatButton } from '@angular/material/button'; import { MatDialog } from '@angular/material/dialog'; import { TranslateModule } from '@ngx-translate/core'; @@ -7,9 +7,9 @@ import { FeedbackDialogComponent } from 'app/modules/feedback/components/feedbac import { TestDirective } from 'app/modules/test-id/test.directive'; @Component({ - selector: 'ix-new-page-badge', - templateUrl: './new-page-badge.component.html', - styleUrls: ['./new-page-badge.component.scss'], + selector: 'ix-header-badge', + templateUrl: './header-badge.component.html', + styleUrls: ['./header-badge.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [ @@ -19,7 +19,9 @@ import { TestDirective } from 'app/modules/test-id/test.directive'; TranslateModule, ], }) -export class NewPageBadgeComponent { +export class HeaderBadgeComponent { + readonly customBadgeTitle = input(); + constructor(private matDialog: MatDialog) {} leaveFeedbackPressed(): void { diff --git a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.html b/src/app/modules/page-header/is-new-indicator/new-page-badge.component.html deleted file mode 100644 index 862d4f08458..00000000000 --- a/src/app/modules/page-header/is-new-indicator/new-page-badge.component.html +++ /dev/null @@ -1,10 +0,0 @@ -
- {{ 'NEW' | translate }} - - -
diff --git a/src/app/modules/page-header/page-title-header/page-header.component.html b/src/app/modules/page-header/page-title-header/page-header.component.html index 3744feb1a5a..116230ea07f 100644 --- a/src/app/modules/page-header/page-title-header/page-header.component.html +++ b/src/app/modules/page-header/page-title-header/page-header.component.html @@ -3,8 +3,8 @@

{{ pageTitle() ? (pageTitle() | translate) : (currentTitle$ | async) | translate }}

- @if (hasNewIndicator$ | async) { - + @if ((hasNewIndicator$ | async) || customBadgeTitle()) { + }
diff --git a/src/app/modules/page-header/page-title-header/page-header.component.ts b/src/app/modules/page-header/page-title-header/page-header.component.ts index 18ee1acc06c..b84c545ec47 100644 --- a/src/app/modules/page-header/page-title-header/page-header.component.ts +++ b/src/app/modules/page-header/page-title-header/page-header.component.ts @@ -6,7 +6,7 @@ import { TranslateModule } from '@ngx-translate/core'; import { map } from 'rxjs/operators'; import { FakeProgressBarComponent } from 'app/modules/loader/components/fake-progress-bar/fake-progress-bar.component'; import { BreadcrumbComponent } from 'app/modules/page-header/breadcrumb/breadcrumb.component'; -import { NewPageBadgeComponent } from 'app/modules/page-header/is-new-indicator/new-page-badge.component'; +import { HeaderBadgeComponent } from 'app/modules/page-header/header-badge/header-badge.component'; import { LayoutService } from 'app/services/layout.service'; import { PageTitleService } from 'app/services/page-title.service'; @@ -23,7 +23,7 @@ import { PageTitleService } from 'app/services/page-title.service'; standalone: true, imports: [ BreadcrumbComponent, - NewPageBadgeComponent, + HeaderBadgeComponent, FakeProgressBarComponent, TranslateModule, AsyncPipe, @@ -31,6 +31,7 @@ import { PageTitleService } from 'app/services/page-title.service'; }) export class PageHeaderComponent implements OnInit, OnDestroy { readonly pageTitle = input(); + readonly customBadgeTitle = input(); readonly loading = input(false); /** diff --git a/src/app/pages/virtualization/components/all-instances/all-instances-header/global-config-form/global-config-form.component.html b/src/app/pages/virtualization/components/all-instances/all-instances-header/global-config-form/global-config-form.component.html index bdfbbc96d99..0d00987d17f 100644 --- a/src/app/pages/virtualization/components/all-instances/all-instances-header/global-config-form/global-config-form.component.html +++ b/src/app/pages/virtualization/components/all-instances/all-instances-header/global-config-form/global-config-form.component.html @@ -16,7 +16,7 @@ > - + + diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html index fd1b9c1784c..1edfc1d9416 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html @@ -114,9 +114,6 @@ - - - - - @if (hasPendingInterfaceChanges()) { -

- {{ 'NIC selection is currently restricted due to pending network changes.' | translate }} -

- } @else { - + + - @if (form.controls.nic_type.value === VirtualizationNicType.Bridged) { + @if (!form.controls.use_default_network.value) { + @if (hasPendingInterfaceChanges()) { +

+ {{ 'NIC selection is currently restricted due to pending network changes.' | translate }} +

+ } @else { @if ((bridgedNicDevices$ | async); as devices) { @if (devices.length > 0) { +

{{ bridgedNicTypeLabel | translate }}

+
@for (device of devices; track device) { }
- } @else { -

{{ 'No NICs Found' | translate }}

} } @else { } - } - @if (form.controls.nic_type.value === VirtualizationNicType.Macvlan) { @if ((macVlanNicDevices$ | async); as devices) { @if (devices.length > 0) { +

{{ macVlanNicTypeLabel | translate }}

+
@for (device of devices; track device) { }
- } @else { -

{{ 'No NICs Found' | translate }}

} } @else { diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts index 4ddf147b67e..ef3b898f91e 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts @@ -148,6 +148,9 @@ describe('InstanceWizardComponent', () => { const usbDeviceCheckbox = await loader.getHarness(IxCheckboxHarness.with({ label: 'xHCI Host Controller (0003)' })); await usbDeviceCheckbox.setValue(true); + const useDefaultNetworkCheckbox = await loader.getHarness(IxCheckboxHarness.with({ label: 'Use default network settings' })); + await useDefaultNetworkCheckbox.setValue(false); + const nicDeviceCheckbox = await loader.getHarness(IxCheckboxHarness.with({ label: 'nic1' })); await nicDeviceCheckbox.setValue(true); @@ -185,4 +188,39 @@ describe('InstanceWizardComponent', () => { expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); }); + + it('sends no NIC devices when default network settings checkbox is set', async () => { + await form.fillForm({ + Name: 'new', + Autostart: true, + 'CPU Configuration': '1-2', + 'Memory Size': '1 GiB', + }); + + const browseButton = await loader.getHarness(MatButtonHarness.with({ text: 'Browse Catalog' })); + await browseButton.click(); + + const useDefaultNetworkCheckbox = await loader.getHarness(IxCheckboxHarness.with({ label: 'Use default network settings' })); + await useDefaultNetworkCheckbox.setValue(false); + + const nicDeviceCheckbox = await loader.getHarness(IxCheckboxHarness.with({ label: 'nic1' })); + await nicDeviceCheckbox.setValue(true); + + await useDefaultNetworkCheckbox.setValue(true); // no nic1 should be send now + + const createButton = await loader.getHarness(MatButtonHarness.with({ text: 'Create' })); + await createButton.click(); + + expect(spectator.inject(ApiService).job).toHaveBeenCalledWith('virt.instance.create', [{ + name: 'new', + autostart: true, + cpu: '1-2', + devices: [], + image: 'almalinux/8/cloud', + memory: GiB, + environment: {}, + }]); + expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); + expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); + }); }); diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts index 424f060b428..3f187e757b5 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts @@ -36,7 +36,6 @@ import { VirtualizationDevice, } from 'app/interfaces/virtualization.interface'; import { DialogService } from 'app/modules/dialog/dialog.service'; -import { IxButtonGroupComponent } from 'app/modules/forms/ix-forms/components/ix-button-group/ix-button-group.component'; import { IxCheckboxComponent } from 'app/modules/forms/ix-forms/components/ix-checkbox/ix-checkbox.component'; import { IxExplorerComponent } from 'app/modules/forms/ix-forms/components/ix-explorer/ix-explorer.component'; import { IxFieldsetComponent } from 'app/modules/forms/ix-forms/components/ix-fieldset/ix-fieldset.component'; @@ -76,7 +75,6 @@ import { ApiService } from 'app/services/websocket/api.service'; IxListComponent, IxListItemComponent, IxSelectComponent, - IxButtonGroupComponent, IxExplorerComponent, NgxSkeletonLoaderModule, ], @@ -93,7 +91,8 @@ export class InstanceWizardComponent implements OnInit { protected readonly hasPendingInterfaceChanges = toSignal(this.api.call('interface.has_pending_changes')); protected readonly proxyProtocols$ = of(mapToOptions(virtualizationProxyProtocolLabels, this.translate)); - readonly nicType$ = of(mapToOptions(virtualizationNicTypeLabels, this.translate)); + protected readonly bridgedNicTypeLabel = virtualizationNicTypeLabels.get(VirtualizationNicType.Bridged); + protected readonly macVlanNicTypeLabel = virtualizationNicTypeLabels.get(VirtualizationNicType.Macvlan); readonly directoryNodeProvider = this.filesystem.getFilesystemNodeProvider(); @@ -124,6 +123,7 @@ export class InstanceWizardComponent implements OnInit { image: ['', Validators.required], cpu: ['', [cpuValidator()]], memory: [null as number], + use_default_network: [true], usb_devices: this.formBuilder.record({}), gpu_devices: this.formBuilder.record({}), bridged_nics: this.formBuilder.record({}), @@ -139,7 +139,6 @@ export class InstanceWizardComponent implements OnInit { destination: FormControl; }>>([]), environment_variables: new FormArray([]), - nic_type: [VirtualizationNicType.Bridged], }); get hasRequiredRoles(): Observable { @@ -303,21 +302,25 @@ export class InstanceWizardComponent implements OnInit { dev_type: VirtualizationDeviceType.Gpu, })); - const macVlanNics = Object.entries(this.form.controls.mac_vlan_nics.value) - .filter(([_, isSelected]) => isSelected) - .map(([parent]) => ({ - parent, - dev_type: VirtualizationDeviceType.Nic, - nic_type: VirtualizationNicType.Macvlan, - })); - - const bridgedNics = Object.entries(this.form.controls.bridged_nics.value) - .filter(([_, isSelected]) => isSelected) - .map(([parent]) => ({ - parent, - dev_type: VirtualizationDeviceType.Nic, - nic_type: VirtualizationNicType.Bridged, - })); + const macVlanNics = !this.form.controls.use_default_network.value + ? Object.entries(this.form.controls.mac_vlan_nics.value) + .filter(([_, isSelected]) => isSelected) + .map(([parent]) => ({ + parent, + dev_type: VirtualizationDeviceType.Nic, + nic_type: VirtualizationNicType.Macvlan, + })) + : []; + + const bridgedNics = !this.form.controls.use_default_network.value + ? Object.entries(this.form.controls.bridged_nics.value) + .filter(([_, isSelected]) => isSelected) + .map(([parent]) => ({ + parent, + dev_type: VirtualizationDeviceType.Nic, + nic_type: VirtualizationNicType.Bridged, + })) + : []; const proxies = this.form.controls.proxies.value.map((proxy) => ({ dev_type: VirtualizationDeviceType.Proxy, diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 9f1651526cf..40fac4ddbc9 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -339,7 +339,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -880,6 +880,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1397,6 +1398,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2236,7 +2238,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2389,7 +2390,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4090,6 +4090,7 @@ "Use Absolute Paths": "", "Use Debug": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 5fa6b1b4ece..0efcb04fab4 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -466,7 +466,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browse to the existing path on the remote host to sync with. Maximum path length is 255 characters": "", @@ -900,6 +900,7 @@ "Dedup VDEVs": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", "Default Checksum Warning": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1278,6 +1279,7 @@ "Expand Row": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -1992,7 +1994,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2106,7 +2107,6 @@ "No Encryption (less secure, but faster)": "", "No Inherit": "", "No Isolated GPU Device(s) configured": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools Found": "", @@ -3542,6 +3542,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "", "Use the KMIP server to manage ZFS encrypted dataset keys. The key server stores, applies, and destroys encryption keys whenever an encrypted dataset is created, when an existing key is modified, an encrypted dataset is unlocked, or an encrypted dataset is removed. Unsetting this option leaves all encryption key management with the local system.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index ba25cda1c09..6c336aa9a38 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -136,7 +136,7 @@ "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", "Both": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Bucket Name": "", "Bucket Policy Only": "", @@ -266,6 +266,7 @@ "Dedup": "", "Dedup VDEVs": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", + "Default Network": "", "Default widgets restored": "", "Default – follow upstream / TrueNAS default": "", "Define a length of time to retain the snapshot on this system. After the time expires, the snapshot is removed. Snapshots which have been replicated to other systems are not affected.": "", @@ -400,6 +401,7 @@ "Existing Pool": "", "Existing presets": "", "Exited": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -715,7 +717,6 @@ "No Datasets": "", "No Enclosure Dispersal Strategy": "", "No Isolated GPU Device(s) configured": "", - "No NICs Found": "", "No NICs added.": "", "No Propagate Inherit": "", "No Search Results.": "", @@ -1411,6 +1412,7 @@ "Use Sudo For ZFS Commands": "", "Use Syslog Only": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use this option to allow legacy SMB clients to connect to the server. Note that SMB1 is being deprecated and it is advised to upgrade clients to operating system versions that support modern versions of the SMB protocol.": "", "Use this option to log more detailed information about SMB.": "", @@ -3739,7 +3741,6 @@ "NFSv4 DNS Domain": "Dominio DNS NFSv4", "NIC": "NIC", "NIC To Attach": "NIC para adjuntar", - "NIC Type": "Tipo de NIC", "NOTICE": "AVISO", "NS": "NS", "NTLMv1 Auth": "Autenticación NTLMv1", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 0714d810ffc..13be7994d0a 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -582,7 +582,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1076,6 +1076,7 @@ "Default": "", "Default ACL Options": "", "Default Checksum Warning": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1643,6 +1644,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2491,7 +2493,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2644,7 +2645,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4397,6 +4397,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index a1c93ded15b..f7f0d282676 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -76,7 +76,7 @@ "Box": "", "Bridge Members": "", "Bridge Settings": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Bucket Name": "", "Bulk Actions": "", @@ -170,6 +170,7 @@ "Dataset ZFS Encryption": "", "Dataset is locked": "", "Datasets": "", + "Default Network": "", "Default Route": "", "Defect": "", "Delete App": "", @@ -229,6 +230,7 @@ "Exec": "", "Exit": "", "Exited": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -454,7 +456,6 @@ "NFS4 Session": "", "NFSv4 DNS Domain": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -508,7 +509,6 @@ "Newsletter": "", "No Changelog": "", "No Enclosure Dispersal Strategy": "", - "No NICs Found": "", "No NICs added.": "", "No VDEVs added.": "", "No available licensed Expansion Shelves ": "", @@ -879,6 +879,7 @@ "Usages": "", "Use Absolute Paths": "", "Use Debug": "", + "Use default network settings": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", "User Bind Path": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 86ea64972bf..1862aea4c00 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -50,7 +50,7 @@ "Block I/O": "", "Block I/O read and writes": "", "Both": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "CPU & Memory": "", "CPU Overview": "", @@ -88,6 +88,7 @@ "Custom app config in YAML format.": "", "Dataset is locked": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", + "Default Network": "", "Default widgets restored": "", "Delete App": "", "Delete Fibre Channel Port": "", @@ -118,6 +119,7 @@ "Environment Variables": "", "Error when loading similar apps.": "", "Exited": "", + "Experimental": "", "Expires": "", "Expires at": "", "FTP Service": "", @@ -193,7 +195,6 @@ "Move selected items to the right side list": "", "My API Keys": "", "NFS Service": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -202,7 +203,6 @@ "Network Reconnection Issue": "", "Network Reset": "", "Network size of each docker network which will be cut off from base subnet.": "", - "No NICs Found": "", "No NICs added.": "", "No containers are available.": "", "No devices added.": "", @@ -317,6 +317,7 @@ "Updating settings": "", "Use Absolute Paths": "", "Use Debug": "", + "Use default network settings": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", "User linked API Keys": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 377fa29b037..32bf0710112 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -576,7 +576,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a storage location and add the name of the new raw file on the end of the path.": "", @@ -1077,6 +1077,7 @@ "Default": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1642,6 +1643,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2572,7 +2574,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2737,7 +2738,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -3786,6 +3786,7 @@ "Use Custom ACME Server Directory URI": "", "Use Debug": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", "User Execute": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 61b417485c1..ee9b0fbf2b7 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -544,7 +544,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browse to the existing path on the remote host to sync with. Maximum path length is 255 characters": "", @@ -1030,6 +1030,7 @@ "Dedup VDEVs": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", "Default Checksum Warning": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default widgets restored": "", @@ -1565,6 +1566,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2459,7 +2461,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2614,7 +2615,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools Found": "", @@ -4350,6 +4350,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 41b30c6a107..304d3ec3a21 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -128,7 +128,7 @@ "Block I/O": "", "Block I/O read and writes": "", "Both": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Burst": "", "By clicking the share creation checkbox below, a new share will be created on form submission with the default share settings Additionally, local TrueNAS users will have access to the resulting share and some more configuration options will be available.": "", @@ -532,6 +532,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -774,6 +775,7 @@ "Exec": "", "Expand Row": "", "Expander Status": "", + "Experimental": "", "Expires at": "", "Export Password Secret Seed": "", "Export Read Only": "", @@ -2489,6 +2491,7 @@ "Use Signature Version 2": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", @@ -4219,7 +4222,6 @@ "NFS4 Session": "NFS4 세션", "NFSv4 DNS Domain": "NFSv4 DNS 도메인", "NIC To Attach": "탑재할 NIC", - "NIC Type": "NIC 유형", "NOTICE": "공지", "NTP Server": "NTP 서버", "NTP Server Settings": "NTP 서버 설정", @@ -4314,7 +4316,6 @@ "No Encryption (less secure, but faster)": "암호화 하지 않음 (덜 안전하지만, 더 빠름)", "No Inherit": "상속 없음", "No Logs": "기록 없음", - "No NICs Found": "NIC 찾을 수 없음", "No NICs added.": "추가된 NIC이(가) 없습니다.", "No Pools": "풀 없음", "No Pools Found": "풀 찾을 수 없음", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 15a7ee44493..1e93a509feb 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -636,7 +636,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1208,6 +1208,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1823,6 +1824,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2753,7 +2755,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2918,7 +2919,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4817,6 +4817,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 61a8a9d9afd..b154fb5714b 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -22,7 +22,7 @@ "Associate": "", "Available Host Memory": "", "Both": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Controller A WWPN": "", "Controller B WWPN": "", @@ -31,6 +31,7 @@ "Created Date": "", "Creating Instance": "", "Dataset for use by an application. If you plan to deploy container applications, the system automatically creates the ix-apps dataset but this is not used for application data storage.": "", + "Default Network": "", "Delete App": "", "Delete Fibre Channel Port": "", "Delete Item": "", @@ -48,6 +49,7 @@ "Enable this to create a token with no expiration date. The token will stay active until it is manually revoked or updated.": "", "Environment Variable": "", "Environment Variables": "", + "Experimental": "", "Expires": "", "Expires at": "", "FTP Service": "", @@ -89,11 +91,9 @@ "MiB": "", "My API Keys": "", "NFS Service": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", - "No NICs Found": "", "No NICs added.": "", "No devices added.": "", "No disks added.": "", @@ -144,6 +144,7 @@ "Updating Instance": "", "Use Absolute Paths": "", "Use Debug": "", + "Use default network settings": "", "Use this option to log more detailed information about SMB.": "", "Virtualization Image Read": "", "Virtualization Image Write": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 7f912dbbd7f..52a701a82a5 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -595,7 +595,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1161,6 +1161,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1776,6 +1777,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2705,7 +2707,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2868,7 +2869,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4746,6 +4746,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 7c4e6fdd108..4ff32c0b75e 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -584,7 +584,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1156,6 +1156,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1771,6 +1772,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2700,7 +2702,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2865,7 +2866,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4764,6 +4764,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index a774c75da7c..bb839015f4f 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -263,7 +263,7 @@ "Both": "", "Bridge Members": "", "Bridge Settings": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Bulk Actions": "", "Burst": "", @@ -560,6 +560,7 @@ "Debug could not be downloaded.": "", "Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", + "Default Network": "", "Default Route": "", "Default is UTF-8 which supports all characters in all languages.": "", "Default widgets restored": "", @@ -952,6 +953,7 @@ "Exited": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -1590,7 +1592,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -1721,7 +1722,6 @@ "No Enclosure Dispersal Strategy": "", "No Encryption (less secure, but faster)": "", "No Isolated GPU Device(s) configured": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Propagate Inherit": "", @@ -3075,6 +3075,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index ebab853ef41..73a74f789a5 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -407,7 +407,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browse to the path to be copied. Linux file path limits apply. Other operating systems can have different limits which might affect how they can be used as sources or destinations.": "", @@ -761,6 +761,7 @@ "Dedup": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", "Default Checksum Warning": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default widgets restored": "", @@ -1113,6 +1114,7 @@ "Expand": "", "Expand Row": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -1721,7 +1723,6 @@ "NFSv4": "", "NFSv4 DNS Domain": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -1850,7 +1851,6 @@ "No Enclosure Dispersal Strategy": "", "No Inherit": "", "No Isolated GPU Device(s) configured": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools Found": "", @@ -3176,6 +3176,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "", "Use the KMIP server to manage ZFS encrypted dataset keys. The key server stores, applies, and destroys encryption keys whenever an encrypted dataset is created, when an existing key is modified, an encrypted dataset is unlocked, or an encrypted dataset is removed. Unsetting this option leaves all encryption key management with the local system.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 24d0ff27577..a23127320ec 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -261,7 +261,7 @@ "Box": "", "Bridge Members": "", "Bridge Settings": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browser time: {time}": "", @@ -517,6 +517,7 @@ "De-duplication tables are stored on this special VDEV type. These VDEVs must be sized to X GiB for each X TiB of general storage.": "", "Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "", "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "", + "Default Network": "", "Default Route": "", "Default widgets restored": "", "Default – follow upstream / TrueNAS default": "", @@ -708,6 +709,7 @@ "Exec": "", "Exit": "", "Exited": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -1101,7 +1103,6 @@ "NFS4 Session": "", "NFSv4 DNS Domain": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -1196,7 +1197,6 @@ "Next Page": "", "No Changelog": "", "No Enclosure Dispersal Strategy": "", - "No NICs Found": "", "No NICs added.": "", "No VDEVs added.": "", "No available licensed Expansion Shelves ": "", @@ -1935,6 +1935,7 @@ "Use Preset": "", "Use Snapshot": "", "Use Syslog Only": "", + "Use default network settings": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index c6613168f82..bb172f8feb4 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -642,7 +642,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browsable to Network Clients": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", @@ -1214,6 +1214,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default is UTF-8 which supports all characters in all languages.": "", @@ -1829,6 +1830,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2759,7 +2761,6 @@ "NFSv4 DNS Domain": "", "NIC": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2924,7 +2925,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4823,6 +4823,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use existing disk image": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index f688b8e245b..03ef97527b6 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -34,7 +34,7 @@ "Available Host Memory": "", "Base Image": "", "Both": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "CPU & Memory": "", "Cannot be enabled for built-in users.": "", @@ -55,6 +55,7 @@ "Credentials have been successfully added.": "", "Custom Reason": "", "Dataset is locked": "", + "Default Network": "", "Delete App": "", "Delete Fibre Channel Port": "", "Delete Item": "", @@ -76,6 +77,7 @@ "Enter an email address to override the admin account’s default email. If left blank, the admin account’s email address will be used": "", "Environment Variable": "", "Environment Variables": "", + "Experimental": "", "Expires": "", "Expires at": "", "FTP Service": "", @@ -138,13 +140,11 @@ "Move selected items to the right side list": "", "My API Keys": "", "NFS Service": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", "Name ~ \"admin\"": "", "Network Reset": "", - "No NICs Found": "", "No NICs added.": "", "No devices added.": "", "No disks added.": "", @@ -239,6 +239,7 @@ "Updating settings": "", "Use Absolute Paths": "", "Use Debug": "", + "Use default network settings": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", "User linked API Keys": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 5fa4bd07209..133cc4badb0 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -539,7 +539,7 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Bridged": "", + "Bridged Adaptors": "", "Browse Catalog": "", "Browse to a CD-ROM file present on the system storage.": "", "Browse to a storage location and add the name of the new raw file on the end of the path.": "", @@ -1010,6 +1010,7 @@ "Default ACL Options": "", "Default Checksum Warning": "", "Default Gateway": "", + "Default Network": "", "Default Route": "", "Default TrueNAS controller": "", "Default widgets restored": "", @@ -1526,6 +1527,7 @@ "Expand pool ": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Experimental": "", "Expiration Date": "", "Expires": "", "Expires at": "", @@ -2310,7 +2312,6 @@ "NFSv4": "", "NFSv4 DNS Domain": "", "NIC To Attach": "", - "NIC Type": "", "NIC modifications are currently restricted due to pending network changes.": "", "NIC selection is currently restricted due to pending network changes.": "", "NIC was added": "", @@ -2457,7 +2458,6 @@ "No Inherit": "", "No Isolated GPU Device(s) configured": "", "No Logs": "", - "No NICs Found": "", "No NICs added.": "", "No Pods Found": "", "No Pools": "", @@ -4094,6 +4094,7 @@ "Use an exported encryption key file to unlock datasets.": "", "Use as Home Share": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", + "Use default network settings": "", "Use settings from a saved replication.": "", "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "", "Use the Log In to GMail button to obtain the credentials for this form.": "",