diff --git a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.html b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.html
index 6b7e60d775f..f60b8613632 100644
--- a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.html
+++ b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.html
@@ -1,3 +1,19 @@
{{ 'Drive Temperatures' | translate }}
-Not implemented.
+@if (disks()) {
+
+ @for (disk of disks(); track disk) {
+ -
+ {{ disk.dev }}:
+ {{ disk.temperature || ('Temperature not available.' | translate) }}
+
+ @if (!disk.temperature) {
+
+ }
+
+ }
+
+}
diff --git a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.scss b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.scss
index 1424d572a42..21a9ecdd1fa 100644
--- a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.scss
+++ b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.scss
@@ -3,3 +3,11 @@
h3 {
@include section-title;
}
+
+.disk {
+ margin: 8px 0 6px;
+
+ .dev {
+ margin-right: 6px;
+ }
+}
diff --git a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.spec.ts b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.spec.ts
new file mode 100644
index 00000000000..ba967c78498
--- /dev/null
+++ b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.spec.ts
@@ -0,0 +1,79 @@
+import { createComponentFactory, mockProvider, Spectator } from '@ngneat/spectator/jest';
+import { of } from 'rxjs';
+import { EnclosureElementType, EnclosureStatus } from 'app/enums/enclosure-slot-status.enum';
+import {
+ DashboardEnclosure,
+ DashboardEnclosureElements,
+ DashboardEnclosureSlot,
+} from 'app/interfaces/enclosure.interface';
+import { TooltipComponent } from 'app/modules/tooltip/tooltip.component';
+import { MiniDriveTemperaturesComponent } from 'app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component';
+import { EnclosureStore } from 'app/pages/system/enclosure/services/enclosure.store';
+import { DiskTemperatureService, Temperature } from 'app/services/disk-temperature.service';
+
+describe('MiniDriveTemperaturesComponent', () => {
+ let spectator: Spectator;
+ const enclosure = {
+ elements: {
+ [EnclosureElementType.ArrayDeviceSlot]: {
+ 1: {
+ dev: 'ada1',
+ status: EnclosureStatus.Ok,
+ is_front: true,
+ } as DashboardEnclosureSlot,
+ 2: {
+ dev: 'ada2',
+ status: EnclosureStatus.Crit,
+ is_front: true,
+ } as DashboardEnclosureSlot,
+ 3: {
+ dev: null,
+ status: EnclosureStatus.Ok,
+ is_front: true,
+ } as DashboardEnclosureSlot,
+ },
+ } as DashboardEnclosureElements,
+ } as DashboardEnclosure;
+ const createComponent = createComponentFactory({
+ component: MiniDriveTemperaturesComponent,
+ imports: [
+ TooltipComponent,
+ ],
+ providers: [
+ mockProvider(EnclosureStore, {
+ selectedEnclosure: () => enclosure,
+ selectedSlot: () => null as DashboardEnclosureSlot,
+ selectSlot: jest.fn(),
+ }),
+ mockProvider(DiskTemperatureService, {
+ temperature$: of({
+ values: { ada1: 37 },
+ keys: ['ada1'],
+ unit: 'Celsius',
+ symbolText: '°',
+ } as Temperature),
+ }),
+ ],
+ });
+
+ beforeEach(() => {
+ spectator = createComponent();
+ });
+
+ it('renders lines with temperature values', () => {
+ const lines = spectator.queryAll('.disk');
+ expect(lines).toHaveLength(2);
+
+ const contents = lines.map((line) => {
+ return {
+ label: line.querySelector('.dev').textContent.trim(),
+ temperature: line.querySelector('.temperature').textContent.trim(),
+ hideTooltip: !line.querySelector('ix-tooltip'),
+ };
+ });
+ expect(contents).toEqual([
+ { label: 'ada1:', temperature: '37 °C', hideTooltip: true },
+ { label: 'ada2:', temperature: 'Temperature not available.', hideTooltip: false },
+ ]);
+ });
+});
diff --git a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.ts b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.ts
index 4068abafc61..ab43fb29508 100644
--- a/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.ts
+++ b/src/app/pages/system/enclosure/components/pages/mini-page/mini-drive-temperatures/mini-drive-temperatures.component.ts
@@ -1,4 +1,11 @@
-import { ChangeDetectionStrategy, Component } from '@angular/core';
+import {
+ ChangeDetectionStrategy, Component, OnDestroy, computed,
+} from '@angular/core';
+import { toSignal } from '@angular/core/rxjs-interop';
+import { EnclosureStore } from 'app/pages/system/enclosure/services/enclosure.store';
+import { getSlotsOfSide } from 'app/pages/system/enclosure/utils/get-slots-of-side.utils';
+import { EnclosureSide } from 'app/pages/system/enclosure/utils/supported-enclosures';
+import { DiskTemperatureService } from 'app/services/disk-temperature.service';
@Component({
selector: 'ix-mini-drive-temperatures',
@@ -6,6 +13,35 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
styleUrl: './mini-drive-temperatures.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
-export class MiniDriveTemperaturesComponent {
+export class MiniDriveTemperaturesComponent implements OnDestroy {
+ private temperature = toSignal(this.diskTemperatureService.temperature$);
+ private readonly slots = computed(() => {
+ return getSlotsOfSide(this.store.selectedEnclosure(), EnclosureSide.Front);
+ });
+
+ protected readonly disks = computed(() => {
+ return this.slots()
+ .filter((slot) => slot.dev)
+ .map((slot) => {
+ const value = this.temperature()?.values?.[slot.dev] || null;
+ const symbolText = `${this.temperature()?.symbolText}C`;
+ return {
+ dev: slot.dev,
+ temperature: value !== null ? `${value} ${symbolText}` : undefined,
+ };
+ });
+ });
+
+ constructor(
+ private store: EnclosureStore,
+ private diskTemperatureService: DiskTemperatureService,
+ ) {
+ this.diskTemperatureService.listenForTemperatureUpdates();
+ this.diskTemperatureService.diskTemperaturesSubscribe();
+ }
+
+ ngOnDestroy(): void {
+ this.diskTemperatureService.diskTemperaturesUnsubscribe();
+ }
}
diff --git a/src/app/pages/system/enclosure/enclosure.module.ts b/src/app/pages/system/enclosure/enclosure.module.ts
index 0692757bb15..56fa418fc27 100644
--- a/src/app/pages/system/enclosure/enclosure.module.ts
+++ b/src/app/pages/system/enclosure/enclosure.module.ts
@@ -20,6 +20,7 @@ import { AppLoaderModule } from 'app/modules/loader/app-loader.module';
import { FileSizePipe } from 'app/modules/pipes/file-size/file-size.pipe';
import { MapValuePipe } from 'app/modules/pipes/map-value/map-value.pipe';
import { TestIdModule } from 'app/modules/test-id/test-id.module';
+import { TooltipComponent } from 'app/modules/tooltip/tooltip.component';
import { EnclosureDashboardComponent } from 'app/pages/system/enclosure/components/enclosure-dashboard/enclosure-dashboard.component';
import {
EnclosureHeaderComponent,
@@ -112,6 +113,7 @@ import { SvgCacheService } from 'app/pages/system/enclosure/services/svg-cache.s
NgxSkeletonLoaderModule,
AppLoaderModule,
DiskIconComponent,
+ TooltipComponent,
],
declarations: [
EnclosureDashboardComponent,
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index b28bf0ac155..a78adde9c6a 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -2590,6 +2590,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -3870,6 +3871,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index eea3428392c..cc15db16db0 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -2014,6 +2014,7 @@
"No records have been added yet": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -3041,6 +3042,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index d4d10d1521f..438e4dff271 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -1528,6 +1528,7 @@
"No records have been added yet": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -2327,6 +2328,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Terminal": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index f99bbe67a66..0b419485d27 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -2703,6 +2703,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4063,6 +4064,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index 5b4ee5db42e..b3bcb8d90d0 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -721,6 +721,7 @@
"No options are passed": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -1114,6 +1115,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Terminal": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index fe611590296..a8611376151 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -2669,6 +2669,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4070,6 +4071,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 47951732d17..8fef06c5a83 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -2543,6 +2543,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -3801,6 +3802,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index 34826bad8f2..9b4c3a7ccc2 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -2433,6 +2433,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -3834,6 +3835,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 3d93cae7ef9..1b1414cc3b9 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -2856,6 +2856,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4257,6 +4258,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index 1e91fc9ce14..eedd727e1d3 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -693,6 +693,7 @@
"No options are passed": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -990,6 +991,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Terminal": "",
@@ -1065,7 +1067,6 @@
"Unix Primary Group": "",
"Unknown Disk": "",
"Unknown PID": "",
- "Unknown error code": "",
"Unselect All": "",
"Unsupported Hardware": "",
"Unused Disks": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index e418b6ea6e3..abf002a3aee 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -2806,6 +2806,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4185,6 +4186,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index f3a10e56928..b08dbd69372 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -2802,6 +2802,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4203,6 +4204,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index 2a5b57f0981..04d501b0a28 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -1608,6 +1608,7 @@
"No pools on this enclosure.": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -2547,6 +2548,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index 351244bb999..4471a419458 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -1758,6 +1758,7 @@
"No records have been added yet": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -2692,6 +2693,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index 18dea8b8237..39f34f8c369 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -1053,6 +1053,7 @@
"No options are passed": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -1543,6 +1544,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Terminal": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index f60549364e4..4fc23f2e06b 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -2862,6 +2862,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -4263,6 +4264,7 @@
"Temperature Alerts": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index e617d0248b2..344eeccc082 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -728,6 +728,7 @@
"No options are passed": "",
"No results found in {section}": "",
"No similar apps found.": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -1044,6 +1045,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Terminal": "",
@@ -1122,7 +1124,6 @@
"Unix Primary Group": "",
"Unknown Disk": "",
"Unknown PID": "",
- "Unknown error code": "",
"Unselect All": "",
"Unsupported Hardware": "",
"Unused Disks": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index a2025b87d47..7a97a166406 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -2384,6 +2384,7 @@
"No results found in {section}": "",
"No similar apps found.": "",
"No snapshots sent yet": "",
+ "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "",
"No temperature data was reported by the system. There can be a number of reasons why this might occur. For troubleshooting tips please go here": "",
"No unused disks": "",
"No update found.": "",
@@ -3556,6 +3557,7 @@
"Temperature": "",
"Temperature Sensors": "",
"Temperature data missing.": "",
+ "Temperature not available.": "",
"Template": "",
"Tenant Domain": "",
"Tenant ID": "",