@@ -12,6 +11,12 @@
[dataProvider]="dataProvider"
[column]="column"
>
+ @if (column.headerTooltip) {
+
+
+ }
@if (!column.disableSorting) {
diff --git a/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.ts b/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.ts
index c6b1b9eeafb..64051aa7f7d 100644
--- a/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.ts
+++ b/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.ts
@@ -2,14 +2,15 @@ import { NgClass, NgStyle } from '@angular/common';
import {
AfterViewInit, ChangeDetectorRef, ChangeDetectionStrategy, Component, Input,
} from '@angular/core';
-import { MatTooltip } from '@angular/material/tooltip';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
+import { TranslateModule } from '@ngx-translate/core';
import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component';
import { IxTableHeaderCellDirective } from 'app/modules/ix-table/directives/ix-header-cell.directive';
import { SortDirection } from 'app/modules/ix-table/enums/sort-direction.enum';
import { Column, ColumnComponent } from 'app/modules/ix-table/interfaces/column-component.class';
import { DataProvider } from 'app/modules/ix-table/interfaces/data-provider.interface';
import { TestDirective } from 'app/modules/test-id/test.directive';
+import { TooltipComponent } from 'app/modules/tooltip/tooltip.component';
@UntilDestroy()
@Component({
@@ -20,11 +21,12 @@ import { TestDirective } from 'app/modules/test-id/test.directive';
standalone: true,
imports: [
NgClass,
- MatTooltip,
NgStyle,
IxTableHeaderCellDirective,
IxIconComponent,
TestDirective,
+ TooltipComponent,
+ TranslateModule,
],
})
export class IxTableHeadComponent
implements AfterViewInit {
diff --git a/src/app/modules/ix-table/interfaces/column-component.class.ts b/src/app/modules/ix-table/interfaces/column-component.class.ts
index 53971735088..3e329ae564c 100644
--- a/src/app/modules/ix-table/interfaces/column-component.class.ts
+++ b/src/app/modules/ix-table/interfaces/column-component.class.ts
@@ -5,7 +5,7 @@ import { DataProvider } from 'app/modules/ix-table/interfaces/data-provider.inte
export abstract class ColumnComponent {
propertyName?: keyof T;
title?: string;
- toolTip?: string;
+ headerTooltip?: string;
cssClass?: string;
uniqueRowTag: (row: T) => string;
ariaLabels: (row: T) => string[];
diff --git a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.spec.ts b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.spec.ts
index 5c9cb346cfb..9af36389c7c 100644
--- a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.spec.ts
+++ b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.spec.ts
@@ -32,7 +32,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: null,
- poh_ago: 0,
+ power_on_hours_ago: 1,
},
{
num: 2,
@@ -43,7 +43,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: 50,
- poh_ago: 0,
+ power_on_hours_ago: 25,
},
{
num: 3,
@@ -54,7 +54,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: null,
- poh_ago: 0,
+ power_on_hours_ago: 49,
}],
}, {
disk: 'sdb',
@@ -67,7 +67,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: null,
- poh_ago: 0,
+ power_on_hours_ago: 1,
},
{
num: 2,
@@ -78,7 +78,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: 0.5,
- poh_ago: 0,
+ power_on_hours_ago: 25,
},
{
num: 3,
@@ -89,7 +89,7 @@ describe('SmartTestResultListComponent', () => {
lba_of_first_error: null,
status: SmartTestResultStatus.Success,
remaining: 0,
- poh_ago: 0,
+ power_on_hours_ago: 49,
}],
}];
diff --git a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts
index 1566bdd8ff0..fe76557ab84 100644
--- a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts
+++ b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts
@@ -83,10 +83,10 @@ export class SmartTestResultListComponent implements OnInit {
}),
textColumn({
title: this.translate.instant('Power On Hours Ago'),
- propertyName: 'poh_ago',
- toolTip: '"Power On Hours" are how many hours have passed while the disk has been powered on. "Power On Hours Ago" is how many power on hours have passed since each test.',
+ propertyName: 'power_on_hours_ago',
+ headerTooltip: this.translate.instant('"Power On Hours" are how many hours have passed while the disk has been powered on. "Power On Hours Ago" is how many power on hours have passed since each test.'),
getValue: (row) => {
- return row.poh_ago || this.translate.instant('N/A');
+ return row.power_on_hours_ago || this.translate.instant('N/A');
},
}),
textColumn({
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index 88e0cbdd08d..0413255c0b5 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -1,5 +1,6 @@
{
"": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
" TrueNAS Forums - Find answers from other users in the forums.": "",
"Transport Protocol for the remote system log server connection. Choosing Transport Layer Security (TLS) also requires selecting a preconfigured system Certificate.": "",
" TrueNAS Licensing - Learn more about enterprise-grade support.": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index ee90ecec0c4..a1dfaf2346b 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -4,6 +4,7 @@
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index d9da723e9cd..9b72f1b105d 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -4,6 +4,7 @@
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index 2de20aeba24..516bb3c727b 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index 215d304d6d0..ed31dd9a75d 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -1,5 +1,6 @@
{
"": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"...": "",
"1m Average": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index 2df2295465f..2675a900904 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -1,5 +1,6 @@
{
"": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"1m Average": "",
"Add Custom App": "",
"Add to trusted store": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index d88395a5707..0541af01f95 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 160872e108e..c2363c20d22 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -4,6 +4,7 @@
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index 6f18ca756d4..afcbeb22afa 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -3,6 +3,7 @@
"\n It looks like your session has been inactive for more than {lifetime} seconds.
\n For security reasons we will log you out at {time}.\n ": "",
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"... Make sure the TrueNAS system is powered on and connected to the network.": "",
"1m Average": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 3982a4f25c9..bac7df54c32 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -5,6 +5,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(24 Hours)": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index b28fe54f7b5..2093f90c963 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -1,6 +1,7 @@
{
"": "",
" Est. Usable Raw Capacity": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"... Make sure the TrueNAS system is powered on and connected to the network.": "",
"1m Average": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index cf10a26b854..ed97bb7a02d 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -5,6 +5,7 @@
" When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index ddd5a95adec..8a41482f3fd 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -4,6 +4,7 @@
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index 837c1bf582c..e156d8d7816 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -1,6 +1,7 @@
{
"": "",
" Est. Usable Raw Capacity": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"... Make sure the TrueNAS system is powered on and connected to the network.": "",
"1m Average": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index 5692c374607..6130269f0a2 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -4,6 +4,7 @@
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index 10c58b6a673..903068c1ffd 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -3,6 +3,7 @@
"\n It looks like your session has been inactive for more than {lifetime} seconds.
\n For security reasons we will log you out at {time}.\n ": "",
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"(Optional)": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"...": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index 0f75cba0aaa..c3bd37f1200 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -6,6 +6,7 @@
" as of {dateTime}": "",
" bytes.": "",
" seconds.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"% of all cores": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index 8d26178af01..157b7309daf 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -2,6 +2,7 @@
"": "",
" Est. Usable Raw Capacity": "",
" as of {dateTime}": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"({n, plural, =1 {# widget} other {# widgets}})": "",
"...": "",
"... Make sure the TrueNAS system is powered on and connected to the network.": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index ae010cb77bb..d9dad849abe 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -5,6 +5,7 @@
" When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": "",
" as of {dateTime}": "",
" bytes.": "",
+ "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "",
"'Hosts Allow' or 'Hosts Deny' has been set": "",
"'Hosts Allow' or 'Hosts Deny' has been updated": "",
"(No description)": "",