From d0159ca8225458a441693aa01952ba0461904e33 Mon Sep 17 00:00:00 2001 From: Alex Karpov Date: Wed, 28 Aug 2024 11:38:39 +0300 Subject: [PATCH] NAS-130786: Enclosure page shouldn't break when there is no enclosure (#10556) * NAS-130786: Enclosure page shouldn't break when there is no enclosure * NAS-130786: PR update * NAS-130786: PR update * NAS-130786: PR update * NAS-130786: PR update --- .../enclosure-dashboard.component.html | 2 ++ .../enclosure-dashboard.component.scss | 3 +++ .../enclosure-dashboard.component.spec.ts | 21 +++++++++++++------ .../enclosure-dashboard.component.ts | 12 +++++++++++ .../enclosure/utils/get-default-side.utils.ts | 2 +- src/assets/i18n/af.json | 2 ++ src/assets/i18n/ar.json | 2 ++ src/assets/i18n/ast.json | 2 ++ src/assets/i18n/az.json | 2 ++ src/assets/i18n/be.json | 2 ++ src/assets/i18n/bg.json | 2 ++ src/assets/i18n/bn.json | 2 ++ src/assets/i18n/br.json | 2 ++ src/assets/i18n/bs.json | 2 ++ src/assets/i18n/ca.json | 2 ++ src/assets/i18n/cs.json | 2 ++ src/assets/i18n/cy.json | 2 ++ src/assets/i18n/da.json | 2 ++ src/assets/i18n/de.json | 2 ++ src/assets/i18n/dsb.json | 2 ++ src/assets/i18n/el.json | 2 ++ src/assets/i18n/en-au.json | 2 ++ src/assets/i18n/en-gb.json | 2 ++ src/assets/i18n/en.json | 2 ++ src/assets/i18n/eo.json | 2 ++ src/assets/i18n/es-ar.json | 2 ++ src/assets/i18n/es-co.json | 2 ++ src/assets/i18n/es-mx.json | 2 ++ src/assets/i18n/es-ni.json | 2 ++ src/assets/i18n/es-ve.json | 2 ++ src/assets/i18n/es.json | 2 ++ src/assets/i18n/et.json | 2 ++ src/assets/i18n/eu.json | 2 ++ src/assets/i18n/fa.json | 2 ++ src/assets/i18n/fi.json | 2 ++ src/assets/i18n/fr.json | 2 ++ src/assets/i18n/fy.json | 2 ++ src/assets/i18n/ga.json | 2 ++ src/assets/i18n/gd.json | 2 ++ src/assets/i18n/gl.json | 2 ++ src/assets/i18n/he.json | 2 ++ src/assets/i18n/hi.json | 2 ++ src/assets/i18n/hr.json | 2 ++ src/assets/i18n/hsb.json | 2 ++ src/assets/i18n/hu.json | 2 ++ src/assets/i18n/ia.json | 2 ++ src/assets/i18n/id.json | 2 ++ src/assets/i18n/io.json | 2 ++ src/assets/i18n/is.json | 2 ++ src/assets/i18n/it.json | 2 ++ src/assets/i18n/ja.json | 2 ++ src/assets/i18n/ka.json | 2 ++ src/assets/i18n/kk.json | 2 ++ src/assets/i18n/km.json | 2 ++ src/assets/i18n/kn.json | 2 ++ src/assets/i18n/ko.json | 2 ++ src/assets/i18n/lb.json | 2 ++ src/assets/i18n/lt.json | 2 ++ src/assets/i18n/lv.json | 2 ++ src/assets/i18n/mk.json | 2 ++ src/assets/i18n/ml.json | 2 ++ src/assets/i18n/mn.json | 2 ++ src/assets/i18n/mr.json | 2 ++ src/assets/i18n/my.json | 2 ++ src/assets/i18n/nb.json | 2 ++ src/assets/i18n/ne.json | 2 ++ src/assets/i18n/nl.json | 2 ++ src/assets/i18n/nn.json | 2 ++ src/assets/i18n/os.json | 2 ++ src/assets/i18n/pa.json | 2 ++ src/assets/i18n/pl.json | 2 ++ src/assets/i18n/pt-br.json | 2 ++ src/assets/i18n/pt.json | 2 ++ src/assets/i18n/ro.json | 2 ++ src/assets/i18n/ru.json | 2 ++ src/assets/i18n/sk.json | 2 ++ src/assets/i18n/sl.json | 2 ++ src/assets/i18n/sq.json | 2 ++ src/assets/i18n/sr-latn.json | 2 ++ src/assets/i18n/sr.json | 2 ++ src/assets/i18n/strings.json | 2 ++ src/assets/i18n/sv.json | 2 ++ src/assets/i18n/sw.json | 2 ++ src/assets/i18n/ta.json | 2 ++ src/assets/i18n/te.json | 2 ++ src/assets/i18n/th.json | 2 ++ src/assets/i18n/tr.json | 2 ++ src/assets/i18n/tt.json | 2 ++ src/assets/i18n/udm.json | 2 ++ src/assets/i18n/uk.json | 2 ++ src/assets/i18n/vi.json | 2 ++ src/assets/i18n/zh-hans.json | 2 ++ src/assets/i18n/zh-hant.json | 2 ++ 93 files changed, 209 insertions(+), 7 deletions(-) create mode 100644 src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.scss diff --git a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.html b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.html index 864f15cdc60..cccb7b84a3e 100644 --- a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.html +++ b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.html @@ -17,4 +17,6 @@ @if (selectedEnclosure()) { +} @else { + } diff --git a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.scss b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.scss new file mode 100644 index 00000000000..368c7ff53f0 --- /dev/null +++ b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.scss @@ -0,0 +1,3 @@ +ix-empty { + height: inherit; +} diff --git a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.spec.ts b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.spec.ts index 468911acada..5b3f6dfc0be 100644 --- a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.spec.ts +++ b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.spec.ts @@ -4,10 +4,11 @@ import { mockProvider, SpectatorRouting, } from '@ngneat/spectator/jest'; +import { MockComponent } from 'ng-mocks'; import { of } from 'rxjs'; import { mockAuth } from 'app/core/testing/utils/mock-auth.utils'; import { mockCall, mockWebSocket } from 'app/core/testing/utils/mock-websocket.utils'; -import { DashboardEnclosure } from 'app/interfaces/enclosure.interface'; +import { EmptyComponent } from 'app/modules/empty/empty.component'; import { EnclosureDashboardComponent, } from 'app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component'; @@ -18,13 +19,12 @@ describe('EnclosureDashboardComponent', () => { const createComponent = createRoutingFactory({ component: EnclosureDashboardComponent, shallow: true, + declarations: [ + MockComponent(EmptyComponent), + ], componentProviders: [ mockProvider(EnclosureStore, { - selectedEnclosure: () => ({ - id: 'enclosure-id', - name: 'M50', - label: 'Current label', - } as DashboardEnclosure), + selectedEnclosure: jest.fn(), initiate: jest.fn(), listenForDiskUpdates: jest.fn(() => of()), selectEnclosure: jest.fn(), @@ -43,6 +43,15 @@ describe('EnclosureDashboardComponent', () => { spectator = createComponent(); }); + it('shows empty message when no enclosure is available', () => { + spectator.inject(EnclosureStore, true).selectedEnclosure.mockReturnValueOnce(undefined); + + spectator.detectChanges(); + + const emptyComponent = spectator.query(EmptyComponent); + expect(emptyComponent).toExist(); + }); + it('initializes store when component is initialized', () => { expect(spectator.inject(EnclosureStore, true).initiate).toHaveBeenCalled(); }); diff --git a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.ts b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.ts index 428467b10a4..1b48035c0b5 100644 --- a/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.ts +++ b/src/app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component.ts @@ -3,6 +3,9 @@ import { } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; +import { TranslateService } from '@ngx-translate/core'; +import { EmptyType } from 'app/enums/empty-type.enum'; +import { EmptyConfig } from 'app/interfaces/empty-config.interface'; import { EnclosureStore } from 'app/pages/system/enclosure/services/enclosure.store'; import { WebSocketService } from 'app/services/ws.service'; @@ -11,6 +14,7 @@ import { WebSocketService } from 'app/services/ws.service'; selector: 'ix-enclosure-dashboard', templateUrl: './enclosure-dashboard.component.html', changeDetection: ChangeDetectionStrategy.OnPush, + styleUrls: ['./enclosure-dashboard.component.scss'], providers: [ EnclosureStore, ], @@ -20,10 +24,18 @@ export class EnclosureDashboardComponent { readonly selectedEnclosure = this.enclosureStore.selectedEnclosure; + emptyDashboardConf: EmptyConfig = { + type: EmptyType.NoPageData, + large: true, + title: this.translate.instant('Enclosure Unavailable'), + message: this.translate.instant('We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.'), + }; + constructor( private enclosureStore: EnclosureStore, private route: ActivatedRoute, private ws: WebSocketService, + private translate: TranslateService, ) { this.enclosureStore.initiate(); this.enclosureStore.listenForDiskUpdates().pipe(untilDestroyed(this)).subscribe(); diff --git a/src/app/pages/system/enclosure/utils/get-default-side.utils.ts b/src/app/pages/system/enclosure/utils/get-default-side.utils.ts index 9c88c637d29..a0c97539eda 100644 --- a/src/app/pages/system/enclosure/utils/get-default-side.utils.ts +++ b/src/app/pages/system/enclosure/utils/get-default-side.utils.ts @@ -2,5 +2,5 @@ import { DashboardEnclosure } from 'app/interfaces/enclosure.interface'; import { EnclosureSide } from 'app/pages/system/enclosure/utils/supported-enclosures'; export function getDefaultSide(enclosure: DashboardEnclosure): EnclosureSide { - return enclosure.top_loaded ? EnclosureSide.Top : EnclosureSide.Front; + return enclosure?.top_loaded ? EnclosureSide.Top : EnclosureSide.Front; } diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index e1ce4ba4511..64d6e7d1fce 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1456,6 +1456,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4251,6 +4252,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When a group is selected, the root user is also limited to the permissions of that group.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index f8cf3ec5931..ced598f6fab 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1093,6 +1093,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -3467,6 +3468,7 @@ "Webhook URL": "", "Wednesday": "", "Week(s)": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "When a group is selected, the root user is also limited to the permissions of that group.": "", "When a user is selected, the root user is limited to the permissions of that user.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 6f28e7492a6..a9b916b90b4 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -800,6 +800,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encryption Mode": "", "Encryption Options Saved": "", @@ -2668,6 +2669,7 @@ "WebDAV Service": "", "Wednesday": "", "Week(s)": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "When battery power is low or the shutdown timer ends, enter the custom command to overrule the default shutdown command.": "", "When both days of month and days of week have restrictions, these restrictions work as an OR condition.": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 798c028fc34..5275d52a319 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1445,6 +1445,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4578,6 +4579,7 @@ "Webhook URL": "", "Wednesday": "", "Week(s)": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When a group is selected, the root user is also limited to the permissions of that group.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index e4f8050a152..39f9dcca9a6 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -213,6 +213,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encryption Mode": "", "Encryption Protocol": "", @@ -982,6 +983,7 @@ "Watch List": "", "Weak Ciphers": "", "WebDAV": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "Widget {slot} Settings": "", "Widgets": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 0215f7a9587..c611c035843 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -22,6 +22,7 @@ "Device «{disk}» has been detached.": "", "Device «{name}» was successfully attached.": "", "Docker Write": "", + "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 when loading similar apps.": "", "Exited": "", @@ -50,6 +51,7 @@ "View Logs": "", "Volume Mounts": "", "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "{ n, plural, one {# snapshot} other {# snapshots} }": "", "{coreCount, plural, one {# core} other {# cores} }": "", "{n, plural, =0 {No Errors} one {# Error} other {# Errors}}": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 652e9a4f226..e6be3dfbc18 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1372,6 +1372,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4614,6 +4615,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 231ad6b84b6..6df695dc04a 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1337,6 +1337,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4310,6 +4311,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 4bd182fd5b8..4cf6cfeb5cb 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1136,6 +1136,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4378,6 +4379,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 9cb73fb8949..65148c7eb49 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -1555,6 +1555,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4794,6 +4795,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index d0662b1b37b..d86933aa31c 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -384,6 +384,7 @@ "Enable this TrueCloud Backup Task. Unset to disable this TrueCloud Backup Task without deleting it.": "", "Enclosure Options": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Encryption Mode": "", "Encryption Protocol": "", "Encryption Root": "", @@ -1155,6 +1156,7 @@ "Web Interface Address": "", "Web Interface Port": "", "Web Portal": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "When set, the following text will be shown prior to showing login page to the user": "", "Widget Category": "", "Widget Editor": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index a7d46f69d29..423326944c2 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1508,6 +1508,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4725,6 +4726,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index cd6cbbc6ea4..5287fa9a50f 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -1502,6 +1502,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4743,6 +4744,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index a022738cf1b..7068af06be5 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -701,6 +701,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -2982,6 +2983,7 @@ "WebDAV account password.": "", "WebDAV account username.": "", "Webhook URL": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "When a group is selected, the root user is also limited to the permissions of that group.": "", "When a user is selected, the root user is limited to the permissions of that user.": "", "When battery power is low or the shutdown timer ends, enter the custom command to overrule the default shutdown command.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 5193043136b..57828ad79b9 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -955,6 +955,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encryption Key Format": "", "Encryption Key Location in Target System": "", @@ -3085,6 +3086,7 @@ "Webhook URL": "", "Wednesday": "", "Week(s)": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "When battery power is low or the shutdown timer ends, enter the custom command to overrule the default shutdown command.": "", "When both days of month and days of week have restrictions, these restrictions work as an OR condition.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 2bab3a0567d..8fd6a47c50c 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -586,6 +586,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encryption Mode": "", "Encryption Protocol": "", @@ -1765,6 +1766,7 @@ "Web Portal": "", "Web Shell Access": "", "WebDAV": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "When set, the following text will be shown prior to showing login page to the user": "", "Widget Category": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 49425af76eb..e6766c89e33 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -1561,6 +1561,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4803,6 +4804,7 @@ "Wednesday": "", "Week(s)": "", "Weeks": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 607b73959c3..6d8e8d63e08 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -396,6 +396,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encryption Mode": "", "Encryption Protocol": "", @@ -1211,6 +1212,7 @@ "Web Interface Address": "", "Web Interface Port": "", "Web Portal": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "When set, the following text will be shown prior to showing login page to the user": "", "Widget Category": "", "Widget Editor": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 1a30bb82135..92bb8966632 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1273,6 +1273,7 @@ "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", + "Enclosure Unavailable": "", "Enclosure Write": "", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
ZLE is a fast algorithm that only eliminates runs of zeroes.": "", "Encrypted Datasets": "", @@ -4038,6 +4039,7 @@ "Wed": "", "Wednesday": "", "Week(s)": "", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", "What and When": "", "What and Where": "", "When a group is selected, the root user is also limited to the permissions of that group.": "",