diff --git a/src/app/enums/docker-nvidia-status.enum.ts b/src/app/enums/docker-nvidia-status.enum.ts deleted file mode 100644 index 20181d88bf8..00000000000 --- a/src/app/enums/docker-nvidia-status.enum.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { marker as T } from '@biesbjerg/ngx-translate-extract-marker'; - -export enum DockerNvidiaStatus { - Absent = 'ABSENT', - Installed = 'INSTALLED', - Installing = 'INSTALLING', - InstallError = 'INSTALL_ERROR', - NotInstalled = 'NOT_INSTALLED', -} - -export const dockerNvidiaStatusLabels = new Map([ - [DockerNvidiaStatus.Absent, T('Absent')], - [DockerNvidiaStatus.Installed, T('Installed')], - [DockerNvidiaStatus.Installing, T('Installing')], - [DockerNvidiaStatus.InstallError, T('Error Installing')], - [DockerNvidiaStatus.NotInstalled, T('Not Installed')], -]); - -export interface DockerNvidiaStatusResponse { - status: DockerNvidiaStatus; -} diff --git a/src/app/interfaces/api/api-call-directory.interface.ts b/src/app/interfaces/api/api-call-directory.interface.ts index fb23cd877d2..1e16ff2c9d8 100644 --- a/src/app/interfaces/api/api-call-directory.interface.ts +++ b/src/app/interfaces/api/api-call-directory.interface.ts @@ -3,7 +3,6 @@ import { CloudsyncTransferSetting } from 'app/enums/cloudsync-transfer-setting.e import { DatasetRecordSize, DatasetType } from 'app/enums/dataset.enum'; import { DeviceType } from 'app/enums/device-type.enum'; import { DockerConfig, DockerStatusData } from 'app/enums/docker-config.interface'; -import { DockerNvidiaStatusResponse } from 'app/enums/docker-nvidia-status.enum'; import { EnclosureSlotStatus } from 'app/enums/enclosure-slot-status.enum'; import { FailoverDisabledReason } from 'app/enums/failover-disabled-reason.enum'; import { FailoverStatus } from 'app/enums/failover-status.enum'; @@ -608,7 +607,7 @@ export interface ApiCallDirectory { // Docker 'docker.config': { params: void; response: DockerConfig }; 'docker.status': { params: void; response: DockerStatusData }; - 'docker.nvidia_status': { params: void; response: DockerNvidiaStatusResponse }; + 'docker.nvidia_present': { params: void; response: boolean }; // LDAP 'ldap.config': { params: void; response: LdapConfig }; diff --git a/src/app/pages/apps/components/catalog-settings/apps-settings.component.html b/src/app/pages/apps/components/catalog-settings/apps-settings.component.html index 9fcd0f0a6f3..1b52b9724eb 100644 --- a/src/app/pages/apps/components/catalog-settings/apps-settings.component.html +++ b/src/app/pages/apps/components/catalog-settings/apps-settings.component.html @@ -51,12 +51,11 @@ } - @if (showNvidiaCheckbox()) { + @if (hasNvidiaCard$ | async) { } diff --git a/src/app/pages/apps/components/catalog-settings/apps-settings.component.spec.ts b/src/app/pages/apps/components/catalog-settings/apps-settings.component.spec.ts index 7df5828a04d..87f2ba4e837 100644 --- a/src/app/pages/apps/components/catalog-settings/apps-settings.component.spec.ts +++ b/src/app/pages/apps/components/catalog-settings/apps-settings.component.spec.ts @@ -8,7 +8,6 @@ import { fakeSuccessfulJob } from 'app/core/testing/utils/fake-job.utils'; import { mockAuth } from 'app/core/testing/utils/mock-auth.utils'; import { mockCall, mockJob, mockWebSocket } from 'app/core/testing/utils/mock-websocket.utils'; import { DockerConfig } from 'app/enums/docker-config.interface'; -import { DockerNvidiaStatus } from 'app/enums/docker-nvidia-status.enum'; import { CatalogConfig } from 'app/interfaces/catalog.interface'; import { DialogService } from 'app/modules/dialog/dialog.service'; import { IxCheckboxListHarness } from 'app/modules/forms/ix-forms/components/ix-checkbox-list/ix-checkbox-list.harness'; @@ -26,6 +25,7 @@ import { WebSocketService } from 'app/services/ws.service'; describe('AppsSettingsComponent', () => { let spectator: Spectator; let loader: HarnessLoader; + let hasNvidiaCard = false; const dockerConfig = { address_pools: [ @@ -44,6 +44,7 @@ describe('AppsSettingsComponent', () => { providers: [ mockWebSocket([ mockCall('catalog.update'), + mockCall('docker.nvidia_present', () => hasNvidiaCard), mockCall('catalog.trains', ['stable', 'community', 'test']), mockCall('catalog.config', { label: 'TrueNAS', @@ -62,23 +63,17 @@ describe('AppsSettingsComponent', () => { mockProvider(IxSlideInRef), mockProvider(FormErrorHandlerService), mockAuth(), + mockProvider(DockerStore, { + dockerConfig$: of(dockerConfig), + reloadDockerConfig: jest.fn(() => of({})), + }), ], }); describe('system has no nvidia card', () => { beforeEach(() => { - spectator = createComponent({ - providers: [ - mockProvider(DockerStore, { - nvidiaDriversInstalled$: of(false), - hasNvidiaCard$: of(false), - dockerConfig$: of(dockerConfig), - dockerNvidiaStatus$: of(DockerNvidiaStatus.NotInstalled), - reloadDockerConfig: jest.fn(() => of({})), - reloadDockerNvidiaStatus: jest.fn(() => of({})), - }), - ], - }); + hasNvidiaCard = false; + spectator = createComponent(); loader = TestbedHarnessEnvironment.loader(spectator.fixture); }); @@ -118,97 +113,51 @@ describe('AppsSettingsComponent', () => { }); }); - describe('has docker no nvidia drivers', () => { - describe('hasNvidiaCard is true', () => { - beforeEach(() => { - spectator = createComponent({ - providers: [ - mockProvider(DockerStore, { - nvidiaDriversInstalled$: of(false), - hasNvidiaCard$: of(true), - dockerConfig$: of(dockerConfig), - dockerNvidiaStatus$: of(DockerNvidiaStatus.NotInstalled), - setDockerNvidia: jest.fn(() => of(null)), - reloadDockerConfig: jest.fn(() => of({})), - reloadDockerNvidiaStatus: jest.fn(() => of({})), - }), - ], - }); - loader = TestbedHarnessEnvironment.loader(spectator.fixture); - }); - - it('shows Install NVIDIA Drivers checkbox when hasNvidiaCard is true', async () => { - const form = await loader.getHarness(IxFormHarness); - const values = await form.getValues(); - - expect(values).toMatchObject({ - 'Install NVIDIA Drivers': false, - 'Preferred Trains': ['test'], - }); - }); - - it('saves catalog updates and nvidia settings', async () => { - const form = await loader.getHarness(IxFormHarness); - await form.fillForm({ - 'Preferred Trains': ['stable'], - 'Install NVIDIA Drivers': true, - }); - - const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' })); - await saveButton.click(); + describe('has nvidia card', () => { + beforeEach(() => { + hasNvidiaCard = true; + spectator = createComponent(); + loader = TestbedHarnessEnvironment.loader(spectator.fixture); + }); - expect(spectator.inject(WebSocketService).call).toHaveBeenCalledWith('catalog.update', [ - { preferred_trains: ['stable'] }, - ]); + it('shows Install NVIDIA Drivers checkbox when nvidia card is present', async () => { + const form = await loader.getHarness(IxFormHarness); + const values = await form.getValues(); - expect(spectator.inject(DockerStore).setDockerNvidia).toHaveBeenCalled(); - expect(spectator.inject(AppsStore).loadCatalog).toHaveBeenCalled(); + expect(values).toMatchObject({ + 'Install NVIDIA Drivers': false, + 'Preferred Trains': ['test'], }); }); - describe('hasNvidiaCard is false and nvidiaDriversInstalled is true', () => { - beforeEach(() => { - spectator = createComponent({ - providers: [ - mockProvider(DockerStore, { - nvidiaDriversInstalled$: of(true), - hasNvidiaCard$: of(false), - dockerConfig$: of(dockerConfig), - dockerNvidiaStatus$: of(DockerNvidiaStatus.Installed), - reloadDockerConfig: jest.fn(() => of({})), - reloadDockerNvidiaStatus: jest.fn(() => of({})), - }), - ], - }); - loader = TestbedHarnessEnvironment.loader(spectator.fixture); + it('saves catalog updates and nvidia settings', async () => { + const form = await loader.getHarness(IxFormHarness); + await form.fillForm({ + 'Preferred Trains': ['stable'], + 'Install NVIDIA Drivers': true, }); - it('shows Install NVIDIA Drivers checkbox when docker.nvidia_status is not Absent OR when it is checked (so the user can uncheck it)', async () => { - const form = await loader.getHarness(IxFormHarness); - const values = await form.getValues(); + const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' })); + await saveButton.click(); - expect(values).toMatchObject({ - 'Install NVIDIA Drivers': true, - 'Preferred Trains': ['test'], - }); - }); + expect(spectator.inject(WebSocketService).job).toHaveBeenCalledWith('docker.update', [{ + nvidia: true, + enable_image_updates: false, + address_pools: [ + { + base: '172.17.0.0/12', + size: 12, + }, + ], + }]); + + expect(spectator.inject(AppsStore).loadCatalog).toHaveBeenCalled(); }); describe('other docker settings', () => { beforeEach(() => { - spectator = createComponent({ - providers: [ - mockProvider(DockerStore, { - nvidiaDriversInstalled$: of(true), - hasNvidiaCard$: of(true), - dockerConfig$: of(dockerConfig), - dockerNvidiaStatus$: of(DockerNvidiaStatus.Installed), - reloadDockerConfig: jest.fn(() => of({})), - reloadDockerNvidiaStatus: jest.fn(() => of({})), - setDockerNvidia: jest.fn(() => of(null)), - }), - ], - }); + hasNvidiaCard = false; + spectator = createComponent(); loader = TestbedHarnessEnvironment.loader(spectator.fixture); }); diff --git a/src/app/pages/apps/components/catalog-settings/apps-settings.component.ts b/src/app/pages/apps/components/catalog-settings/apps-settings.component.ts index 8f121d06015..a652e56314c 100644 --- a/src/app/pages/apps/components/catalog-settings/apps-settings.component.ts +++ b/src/app/pages/apps/components/catalog-settings/apps-settings.component.ts @@ -1,16 +1,15 @@ import { - ChangeDetectionStrategy, Component, computed, OnInit, signal, + ChangeDetectionStrategy, Component, OnInit, signal, } from '@angular/core'; -import { toSignal } from '@angular/core/rxjs-interop'; import { FormArray, FormBuilder, FormControl, FormGroup, Validators, } from '@angular/forms'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; import { - combineLatest, filter, forkJoin, of, switchMap, + async, + combineLatest, filter, forkJoin, switchMap, take, } from 'rxjs'; -import { dockerNvidiaStatusLabels } from 'app/enums/docker-nvidia-status.enum'; import { Role } from 'app/enums/role.enum'; import { singleArrayToOptions } from 'app/helpers/operators/options.operators'; import { helptextApps } from 'app/helptext/apps/apps'; @@ -30,12 +29,9 @@ import { WebSocketService } from 'app/services/ws.service'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class AppsSettingsComponent implements OnInit { - protected hasNvidiaCard = toSignal(this.dockerStore.hasNvidiaCard$); - protected nvidiaDriversInstalled = toSignal(this.dockerStore.nvidiaDriversInstalled$); - protected dockerNvidiaStatus = toSignal(this.dockerStore.dockerNvidiaStatus$); + protected hasNvidiaCard$ = this.ws.call('docker.nvidia_present'); protected isFormLoading = signal(false); protected readonly requiredRoles = [Role.AppsWrite, Role.CatalogWrite]; - protected readonly dockerNvidiaStatusLabels = dockerNvidiaStatusLabels; protected form = this.fb.group({ preferred_trains: [[] as string[], Validators.required], @@ -51,8 +47,6 @@ export class AppsSettingsComponent implements OnInit { singleArrayToOptions(), ); - protected showNvidiaCheckbox = computed(() => this.hasNvidiaCard() || this.nvidiaDriversInstalled()); - readonly tooltips = { preferred_trains: helptextApps.catalogForm.preferredTrains.tooltip, install_nvidia_driver: helptextApps.catalogForm.installNvidiaDriver.tooltip, @@ -86,14 +80,9 @@ export class AppsSettingsComponent implements OnInit { preferred_trains: catalogConfig.preferred_trains, enable_image_updates: dockerConfig.enable_image_updates, address_pools: dockerConfig.address_pools, + nvidia: dockerConfig.nvidia, }); }); - - if (this.nvidiaDriversInstalled()) { - this.form.patchValue({ - nvidia: this.nvidiaDriversInstalled(), - }); - } } addAddressPool(): void { @@ -118,13 +107,12 @@ export class AppsSettingsComponent implements OnInit { this.ws.job('docker.update', [{ enable_image_updates: values.enable_image_updates, address_pools: values.address_pools, + nvidia: values.nvidia, }]), ]) .pipe( - switchMap(() => (values.nvidia !== null ? this.dockerStore.setDockerNvidia(values.nvidia) : of(values.nvidia))), switchMap(() => forkJoin([ this.dockerStore.reloadDockerConfig(), - this.dockerStore.reloadDockerNvidiaStatus(), this.appsStore.loadCatalog(), ])), untilDestroyed(this), @@ -142,4 +130,5 @@ export class AppsSettingsComponent implements OnInit { } protected readonly helptext = helptextApps; + protected readonly async = async; } diff --git a/src/app/pages/apps/store/docker.store.spec.ts b/src/app/pages/apps/store/docker.store.spec.ts index 7b4b12ca47e..4f4cf661785 100644 --- a/src/app/pages/apps/store/docker.store.spec.ts +++ b/src/app/pages/apps/store/docker.store.spec.ts @@ -2,7 +2,6 @@ import { createServiceFactory, SpectatorService } from '@ngneat/spectator/jest'; import { MockWebSocketService } from 'app/core/testing/classes/mock-websocket.service'; import { mockCall, mockWebSocket } from 'app/core/testing/utils/mock-websocket.utils'; import { DockerConfig } from 'app/enums/docker-config.interface'; -import { DockerNvidiaStatus } from 'app/enums/docker-nvidia-status.enum'; import { DockerStatus } from 'app/enums/docker-status.enum'; import { DockerStore } from 'app/pages/apps/store/docker.store'; import { WebSocketService } from 'app/services/ws.service'; @@ -18,7 +17,6 @@ describe('DockerStore', () => { pool: 'pewl', nvidia: true, } as DockerConfig), - mockCall('docker.nvidia_status', { status: DockerNvidiaStatus.Installed }), mockCall('docker.status', { status: DockerStatus.Running, description: 'Docker is running', @@ -36,18 +34,15 @@ describe('DockerStore', () => { spectator.service.initialize(); expect(spectator.inject(WebSocketService).call).toHaveBeenCalledWith('docker.config'); - expect(spectator.inject(WebSocketService).call).toHaveBeenCalledWith('docker.nvidia_status'); expect(spectator.inject(WebSocketService).call).toHaveBeenCalledWith('docker.status'); expect(spectator.service.state()).toEqual({ dockerConfig: { enable_image_updates: true, - nvidia: true, pool: 'pewl', + nvidia: true, }, isLoading: false, - nvidiaDriversInstalled: true, - nvidiaStatus: DockerNvidiaStatus.Installed, statusData: { description: 'Docker is running', status: DockerStatus.Running, @@ -68,24 +63,9 @@ describe('DockerStore', () => { mockWebsocket.mockCall('docker.config', newDockerConfig); spectator.service.reloadDockerConfig().subscribe(); - spectator.service.reloadDockerNvidiaStatus().subscribe(); expect(mockWebsocket.call).toHaveBeenCalledWith('docker.config'); expect(spectator.service.state().dockerConfig).toEqual(newDockerConfig); }); }); - - describe('reloadDockerNvidiaStatus', () => { - it('reloads docker nvidia status and updates the state', () => { - const mockWebsocket = spectator.inject(MockWebSocketService); - jest.resetAllMocks(); - mockWebsocket.mockCall('docker.nvidia_status', { status: DockerNvidiaStatus.Installed }); - - spectator.service.reloadDockerConfig().subscribe(); - spectator.service.reloadDockerNvidiaStatus().subscribe(); - - expect(mockWebsocket.call).toHaveBeenCalledWith('docker.nvidia_status'); - expect(spectator.service.state().nvidiaStatus).toEqual(DockerNvidiaStatus.Installed); - }); - }); }); diff --git a/src/app/pages/apps/store/docker.store.ts b/src/app/pages/apps/store/docker.store.ts index f4af1d2a6af..a5a48d3ddc1 100644 --- a/src/app/pages/apps/store/docker.store.ts +++ b/src/app/pages/apps/store/docker.store.ts @@ -6,9 +6,7 @@ import { forkJoin, map, Observable, switchMap, tap, } from 'rxjs'; import { DockerConfig, DockerStatusData } from 'app/enums/docker-config.interface'; -import { DockerNvidiaStatus } from 'app/enums/docker-nvidia-status.enum'; import { DockerStatus } from 'app/enums/docker-status.enum'; -import { JobState } from 'app/enums/job-state.enum'; import { Job } from 'app/interfaces/job.interface'; import { DialogService } from 'app/modules/dialog/dialog.service'; import { ErrorHandlerService } from 'app/services/error-handler.service'; @@ -17,16 +15,12 @@ import { WebSocketService } from 'app/services/ws.service'; export interface DockerConfigState { isLoading: boolean; dockerConfig: DockerConfig; - nvidiaDriversInstalled: boolean; - nvidiaStatus: DockerNvidiaStatus; statusData: DockerStatusData; } const initialState: DockerConfigState = { isLoading: false, dockerConfig: null, - nvidiaDriversInstalled: false, - nvidiaStatus: null, statusData: { status: null, description: null, @@ -38,9 +32,6 @@ export class DockerStore extends ComponentStore { readonly isLoading$ = this.select((state) => state.isLoading); readonly dockerConfig$ = this.select((state) => state.dockerConfig); readonly selectedPool$ = this.select((state) => state.dockerConfig?.pool || null); - readonly nvidiaDriversInstalled$ = this.select((state) => state.nvidiaDriversInstalled); - readonly hasNvidiaCard$ = this.select((state) => state.nvidiaStatus !== DockerNvidiaStatus.Absent); - readonly dockerNvidiaStatus$ = this.select((state) => state.nvidiaStatus); readonly isDockerStarted$ = this.select((state) => { return state.statusData.status == null ? null : DockerStatus.Running === state.statusData.status; }); @@ -63,19 +54,17 @@ export class DockerStore extends ComponentStore { switchMap(() => forkJoin([ this.getDockerConfig(), this.getDockerStatus(), - this.getDockerNvidiaStatus(), ])), tap( - ([dockerConfig, statusData, nvidiaStatus]: [DockerConfig, DockerStatusData, DockerNvidiaStatus]) => { + ([dockerConfig, statusData]: [DockerConfig, DockerStatusData]) => { this.patchState({ dockerConfig, - nvidiaDriversInstalled: dockerConfig.nvidia, - nvidiaStatus, statusData, isLoading: false, }); }, ), + this.errorHandler.catchError(), ); }); @@ -83,10 +72,6 @@ export class DockerStore extends ComponentStore { return this.ws.call('docker.config'); } - private getDockerNvidiaStatus(): Observable { - return this.ws.call('docker.nvidia_status').pipe(map(({ status }) => status)); - } - private getDockerStatus(): Observable { return this.ws.call('docker.status'); } @@ -108,30 +93,6 @@ export class DockerStore extends ComponentStore { ); } - reloadDockerNvidiaStatus(): Observable { - return this.getDockerNvidiaStatus().pipe( - tap((nvidiaStatus) => { - this.patchState({ nvidiaStatus }); - }), - ); - } - - setDockerNvidia(nvidiaDriversInstalled: boolean): Observable> { - return this.dialogService.jobDialog( - this.ws.job('docker.update', [{ nvidia: nvidiaDriversInstalled }]), - { title: this.translate.instant('Configuring...') }, - ) - .afterClosed() - .pipe( - tap((job) => { - if (job.state === JobState.Success) { - this.patchState({ nvidiaDriversInstalled }); - } - }), - this.errorHandler.catchError(), - ); - } - /** * Updates docker status in `DockerStore` service * @returns An observable that should be subscribed to at component level. This event subscription should only diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index c3402940297..8b103cfd512 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -104,7 +104,6 @@ "Abort": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1019,7 +1018,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1581,7 +1579,6 @@ "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error counting eligible snapshots.": "", "Error creating device": "", @@ -2608,7 +2605,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 4cef7ae1875..5b896f26bc2 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -74,7 +74,6 @@ "ATA Security User": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -784,7 +783,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", "Custom App": "", @@ -1194,7 +1192,6 @@ "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error counting eligible snapshots.": "", "Error creating device": "", "Error deleting dataset {datasetName}.": "", @@ -2037,7 +2034,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", "Notes": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 169081b7cf9..e866d26ab82 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -37,7 +37,6 @@ "API Key:": "", "ARN": "", "Abort Job": "", - "Absent": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", "Account Read": "", @@ -239,7 +238,6 @@ "Cron Jobs": "", "Cron job created": "", "Cron job updated": "", - "Current status: {status}": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", "Custom app config in YAML format.": "", @@ -409,7 +407,6 @@ "Enter the number of last kept backups.": "", "Enter vm name to continue.": "", "Enter zvol name to continue.": "", - "Error Installing": "", "Error counting eligible snapshots.": "", "Error deleting dataset {datasetName}.": "", "Error detected reading App": "", @@ -695,7 +692,6 @@ "Node set allows setting NUMA nodes for multi NUMA processors when CPU set was defined. Better memory locality can be achieved by setting node set based on assigned CPU set. E.g. if cpus 0,1 belong to NUMA node 0 then setting nodeset to 0 will improve memory locality": "", "Nodes Virtual IP states do not agree.": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not enough free space. Maximum available: {space}": "", "Notransfer Timeout": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 00ec5b3a7dc..c1457cb26f3 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -115,7 +115,6 @@ "Abort": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Based Share Enumeration": "", "Access Control Entry": "", @@ -962,7 +961,6 @@ "Current Password": "", "Current Sensor": "", "Current State": "", - "Current status: {status}": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", "Custom App": "", @@ -1552,7 +1550,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2594,7 +2591,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not enough free space. Maximum available: {space}": "", "Notes about this disk.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index ca9f13edf06..76bb6cfac4a 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -16,7 +16,6 @@ "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "ALL Initiators Allowed": "", - "Absent": "", "Active Directory": "", "Add Custom App": "", "Add Expansion Shelf": "", @@ -154,7 +153,6 @@ "Cronjob": "", "Current Sensor": "", "Current Train:": "", - "Current status: {status}": "", "Custom ACME Server Directory URI": "", "Custom App via YAML": "", "Custom Config": "", @@ -219,7 +217,6 @@ "Encryption Root": "", "Encryption Standard": "", "End session": "", - "Error Installing": "", "Eula": "", "Exec": "", "Exit": "", @@ -473,7 +470,6 @@ "No VDEVs added.": "", "No available licensed Expansion Shelves ": "", "No jobs running.": "", - "Not Installed": "", "Notes": "", "Notifications": "", "Offload Read": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 427d7d320a0..659afe4f529 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -3,7 +3,6 @@ "1m Average": "", "{disk} has been detached.": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", - "Absent": "", "Add Custom App": "", "Additional Parameters String": "", "Address Pool": "", @@ -36,7 +35,6 @@ "Crashed": "", "Created": "", "Creating custom app": "", - "Current status: {status}": "", "Custom App via YAML": "", "Custom Config": "", "Custom app config in YAML format.": "", @@ -51,7 +49,6 @@ "Enable server support for NFSv3 or NFSv4 or both NFSv3 and NFSv4 clients.": "", "Enclosure Unavailable": "", "Ensure that ACL permissions are validated for all users and groups. Disabling this may allow configurations that do not provide the intended access. It is recommended to keep this option enabled.": "", - "Error Installing": "", "Error when loading similar apps.": "", "Exited": "", "Fast Storage": "", @@ -78,7 +75,6 @@ "No containers are available.": "", "No jobs running.": "", "No volume mounts": "", - "Not Installed": "", "Notes": "", "Ok": "", "Percentage of total core utilization": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index db390e7ddc0..91a41beba99 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -115,7 +115,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -954,7 +953,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", "Custom App": "", @@ -1548,7 +1546,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2691,7 +2688,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 4faaf01628e..273cd63fa4b 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -103,7 +103,6 @@ "Abort": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access": "", "Access Control Entry": "", @@ -908,7 +907,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1470,7 +1468,6 @@ "Environment": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2561,7 +2558,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index df2051d91c1..32498fe0418 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -27,7 +27,6 @@ "ALL Initiators Allowed": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Based Share Enumeration": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -658,7 +657,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1311,7 +1309,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2454,7 +2451,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 96c7b713613..a025d932559 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -117,7 +117,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1078,7 +1077,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1731,7 +1729,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2874,7 +2871,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 681e555f52d..351cb62eecc 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -22,7 +22,6 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Ace has errors.": "", "Active Directory is disabled.": "", @@ -297,7 +296,6 @@ "Cronjob": "", "Current Sensor": "", "Current Train:": "", - "Current status: {status}": "", "Custom App via YAML": "", "Custom Config": "", "Custom Name": "", @@ -426,7 +424,6 @@ "Enter the name of the new bucket. Only lowercase letters, numbers, and hyphens are allowed.": "", "Enter the number of last kept backups.": "", "Error ({code})": "", - "Error Installing": "", "Error when loading similar apps.": "", "Error:": "", "Eula": "", @@ -749,7 +746,6 @@ "No vdev info for this disk": "", "No volume mounts": "", "None requested": "", - "Not Installed": "", "Not Shared": "", "Notes": "", "Ok": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 12245caee17..9b407057678 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -110,7 +110,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -1034,7 +1033,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1684,7 +1682,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2824,7 +2821,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 7eeecd8ad07..4d4f342aca4 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -66,7 +66,6 @@ "ARN": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -1025,7 +1024,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1678,7 +1676,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2820,7 +2817,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index e4c53561478..33745fd2c81 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -58,7 +58,6 @@ "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Token generated by a Hubic account.": "", "Access Token for a Dropbox account. A token must be generated by the Dropbox account before adding it here.": "", @@ -472,7 +471,6 @@ "Cryptographic protocols for securing client/server connections. Select which Transport Layer Security (TLS) versions TrueNAS can use for connection security.": "", "Current Sensor": "", "Current Train:": "", - "Current status: {status}": "", "Custom App via YAML": "", "Custom Config": "", "Custom Name": "", @@ -866,7 +864,6 @@ "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error counting eligible snapshots.": "", "Error restarting web service": "", @@ -1644,7 +1641,6 @@ "Nodes Virtual IP states do not agree.": "", "None requested": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index b4905b149b1..c8b65afb046 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -52,7 +52,6 @@ "ARN": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -662,7 +661,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", "Custom App": "", @@ -1027,7 +1025,6 @@ "Enter zvol name to continue.": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error counting eligible snapshots.": "", "Error creating device": "", "Error deleting dataset {datasetName}.": "", @@ -1780,7 +1777,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index cd6c1672239..60b6d63dc11 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -41,7 +41,6 @@ "ALL Initiators Allowed": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access Settings": "", "Access denied to {method}": "", @@ -429,7 +428,6 @@ "Current Default Gateway": "", "Current Sensor": "", "Current Train:": "", - "Current status: {status}": "", "Custom ACME Server Directory URI": "", "Custom App via YAML": "", "Custom Config": "", @@ -628,7 +626,6 @@ "Enter zvol name to continue.": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error counting eligible snapshots.": "", "Error occurred": "", "Error validating pool name": "", @@ -1097,7 +1094,6 @@ "No warnings": "", "None requested": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Shared": "", "Notes": "", "Notifications": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 2841ca8bd5a..bc99a4850af 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -122,7 +122,6 @@ "Abort Job": "", "Aborting...": "", "About": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -1084,7 +1083,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1737,7 +1735,6 @@ "Error": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error checking for updates.": "", "Error counting eligible snapshots.": "", @@ -2880,7 +2877,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 00405d130bf..acdaf53287d 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -3,7 +3,6 @@ "...": "", "{disk} has been detached.": "", "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", - "Absent": "", "Administrative user": "", "All users": "", "Allow Duplicate GIDs": "", @@ -15,11 +14,9 @@ "Check Now": "", "Close Job": "", "Created Date": "", - "Current status: {status}": "", "Define the target as *iSCSI*, *Fibre Channel*, or *Both*.": "", "Device Attached": "", "Device detached": "", - "Error Installing": "", "Expected Finished Time:": "", "Fast Storage": "", "Fetching data...": "", @@ -27,7 +24,6 @@ "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "List of files and directories to exclude from backup.
Separate entries by pressing Enter. See restic exclude patterns for more details about the --exclude option.": "", "NFSv3 ownership model for NFSv4": "", - "Not Installed": "", "Now/Reboot": "", "Reboot After Update": "", "Reboot standby TrueNAS controller": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 3567f232a87..fec2e7cd777 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -106,7 +106,6 @@ "Abort": "", "Abort Job": "", "Aborting...": "", - "Absent": "", "Accept": "", "Access": "", "Access Based Share Enumeration": "", @@ -892,7 +891,6 @@ "Current State": "", "Current Train:": "", "Current Version": "", - "Current status: {status}": "", "Custom": "", "Custom ({customTransfers})": "", "Custom ACME Server Directory URI": "", @@ -1438,7 +1436,6 @@ "Environment": "", "Error ({code})": "", "Error In Apps Service": "", - "Error Installing": "", "Error Updating Production Status": "", "Error counting eligible snapshots.": "", "Error creating device": "", @@ -2406,7 +2403,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Installed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "",