diff --git a/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.html b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.html new file mode 100644 index 00000000000..a4146e1ed7d --- /dev/null +++ b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.html @@ -0,0 +1,13 @@ + + + {{ currentMessage() }} + + + + {{ 'Explore TrueNAS Enterprise' | translate }} + + diff --git a/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.scss b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.scss new file mode 100644 index 00000000000..2c3cdb9d10e --- /dev/null +++ b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.scss @@ -0,0 +1,23 @@ +@import 'scss-imports/variables'; + +:host { + margin: 0 auto 5px; +} + +a { + cursor: pointer; + display: block; + margin-bottom: 2px; + text-align: center; + text-decoration: none; + + span { + color: var(--primary-txt); + display: block; + + &.text-above { + color: var(--primary); + margin-bottom: 2px; + } + } +} diff --git a/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.spec.ts b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.spec.ts new file mode 100644 index 00000000000..eebd7a35e6c --- /dev/null +++ b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.spec.ts @@ -0,0 +1,82 @@ +import { createComponentFactory, Spectator } from '@ngneat/spectator/jest'; +import { UseEnterpriseMarketingLinkComponent } from './use-enterprise-marketing-link.component'; + +const lastShownDate = 'marketingMessageLastShownDate'; +const lastMessageHash = 'marketingMessageLastHash'; + +describe('UseEnterpriseMarketingLinkComponent', () => { + let spectator: Spectator; + + const createComponent = createComponentFactory({ + component: UseEnterpriseMarketingLinkComponent, + }); + + beforeEach(() => { + spectator = createComponent(); + jest.spyOn(global.Date.prototype, 'toDateString').mockReturnValue('2025-02-26'); + localStorage.clear(); + }); + + afterEach(() => { + jest.restoreAllMocks(); + }); + + it('should display the first message by default', () => { + const message = spectator.component.currentMessage(); + expect(message).toBe('Optimize Your Storage'); + }); + + it('should rotate to the next message on a new day', () => { + localStorage.setItem(lastShownDate, '2025-02-25'); + localStorage.setItem(lastMessageHash, spectator.component.hashMessage('Optimize Your Storage')); + + const nextMessage = spectator.component.getTodaysMessage(); + expect(nextMessage).toBe('More Performance, More Protection'); + }); + + it('should loop to the first message after the last message', () => { + localStorage.setItem(lastShownDate, '2025-02-25'); + localStorage.setItem(lastMessageHash, spectator.component.hashMessage('5 Nines of Uptime with HA')); + + const nextMessage = spectator.component.getTodaysMessage(); + expect(nextMessage).toBe('Optimize Your Storage'); + }); + + it('should update localStorage with new date and hash', () => { + spectator.component.getTodaysMessage(); + + expect(localStorage.getItem(lastShownDate)).toBe('2025-02-26'); + expect(localStorage.getItem(lastMessageHash)).toBe(spectator.component.hashMessage('Optimize Your Storage')); + }); + + it('should maintain consistent message even if array order changes', () => { + const originalHash = spectator.component.hashMessage('Boost Performance & Support'); + localStorage.setItem('marketingMessageLastShownDate', '2025-02-25'); + localStorage.setItem('marketingMessageLastHash', originalHash); + + spectator.component.messages = [ + 'Boost Performance & Support', + 'Optimize Your Storage', + 'More Performance, More Protection', + ]; + + const nextMessage = spectator.component.getTodaysMessage(); + expect(nextMessage).toBe('Optimize Your Storage'); + }); + + it('should return the first message if hash is not found', () => { + localStorage.setItem(lastShownDate, '2025-02-26'); + localStorage.setItem(lastMessageHash, 'unknownHash'); + + const currentMessage = spectator.component.getTodaysMessage(); + expect(currentMessage).toBe('Optimize Your Storage'); + }); + + it('should not change message within the same day', () => { + localStorage.setItem(lastShownDate, '2025-02-26'); + localStorage.setItem(lastMessageHash, spectator.component.hashMessage('Optimize Your Storage')); + + const currentMessage = spectator.component.getTodaysMessage(); + expect(currentMessage).toBe('Optimize Your Storage'); + }); +}); diff --git a/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.ts b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.ts new file mode 100644 index 00000000000..50686647e51 --- /dev/null +++ b/src/app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component.ts @@ -0,0 +1,68 @@ +import { + Component, ChangeDetectionStrategy, computed, +} from '@angular/core'; +import { TranslateModule, TranslateService } from '@ngx-translate/core'; +import { TestDirective } from 'app/modules/test-id/test.directive'; + +@Component({ + selector: 'ix-use-enterprise-marketing-link', + templateUrl: './use-enterprise-marketing-link.component.html', + styleUrls: ['./use-enterprise-marketing-link.component.scss'], + changeDetection: ChangeDetectionStrategy.OnPush, + standalone: true, + imports: [ + TestDirective, + TranslateModule, + ], +}) +export class UseEnterpriseMarketingLinkComponent { + protected readonly targetUrl = 'https://truenas.com/explore-truenas-enterprise/'; + + messages = [ + this.translate.instant('Optimize Your Storage'), + this.translate.instant('More Performance, More Protection'), + this.translate.instant('Boost Performance & Support'), + this.translate.instant('Unlock High Performance Solutions'), + this.translate.instant('Expert Support When You Need It'), + this.translate.instant('5 Nines of Uptime with HA'), + ]; + + currentMessage = computed(() => this.getTodaysMessage()); + currentMessageHref = computed(() => `${this.targetUrl}?m=${this.hashMessage(this.currentMessage())}`); + + constructor( + private translate: TranslateService, + ) {} + + getTodaysMessage(): string { + const today = new Date().toDateString(); + const lastShownDate = localStorage.getItem('marketingMessageLastShownDate'); + const lastMessageHash = localStorage.getItem('marketingMessageLastHash'); + + if (lastShownDate !== today) { + const nextMessage = this.getNextMessage(lastMessageHash); + + localStorage.setItem('marketingMessageLastShownDate', today); + localStorage.setItem('marketingMessageLastHash', this.hashMessage(nextMessage)); + + return nextMessage; + } + + return this.getCurrentMessage(lastMessageHash); + } + + getNextMessage(lastMessageHash: string | null): string { + const lastIndex = this.messages.findIndex((message) => this.hashMessage(message) === lastMessageHash); + const nextIndex = lastIndex >= 0 ? (lastIndex + 1) % this.messages.length : 0; + return this.messages[nextIndex]; + } + + getCurrentMessage(lastMessageHash: string | null): string { + const currentIndex = this.messages.findIndex((message) => this.hashMessage(message) === lastMessageHash); + return currentIndex >= 0 ? this.messages[currentIndex] : this.messages[0]; + } + + hashMessage(message: string): string { + return btoa(encodeURIComponent(message)); + } +} diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.html b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.html index c2826ac32da..bca0e353853 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.html +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.html @@ -199,6 +199,12 @@

{{ 'System Information' | translate }}

> } + + @if (!isEnterprise()) { + + + + } diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.scss b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.scss index e6a1d33b4f3..2085f0d798e 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.scss +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.scss @@ -18,3 +18,7 @@ } } } + +.use-enterprise { + height: calc(var(--mdc-list-list-item-one-line-container-height, 48px) * 2); +} diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.ts b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.ts index 582fe323321..22908150871 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.ts +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.ts @@ -19,6 +19,7 @@ import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component'; import { selectUpdateJobForActiveNode } from 'app/modules/jobs/store/job.selectors'; import { LocaleService } from 'app/modules/language/locale.service'; import { TestDirective } from 'app/modules/test-id/test.directive'; +import { UseEnterpriseMarketingLinkComponent } from 'app/modules/use-enterprise-marketing-link/use-enterprise-marketing-link.component'; import { WidgetResourcesService } from 'app/pages/dashboard/services/widget-resources.service'; import { SlotSize } from 'app/pages/dashboard/types/widget.interface'; import { ProductImageComponent } from 'app/pages/dashboard/widgets/system/common/product-image/product-image.component'; @@ -52,6 +53,7 @@ import { CopyButtonComponent, TranslateModule, UptimePipe, + UseEnterpriseMarketingLinkComponent, ], }) export class WidgetSysInfoActiveComponent { diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index e951c00c5ce..0dc102c14e5 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1,6 +1,7 @@ { "": "", "\"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.": "", + "5 Nines of Uptime with HA": "", " 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.": "", @@ -337,6 +338,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1417,9 +1419,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2250,6 +2254,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2577,6 +2582,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4142,6 +4148,7 @@ "Unlink": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 441f05b0983..685c7cc6d2c 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -16,6 +16,7 @@ "1m Average": "", "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", + "5 Nines of Uptime with HA": "", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "", "Authentication protocol used to authenticate messages sent on behalf of the specified Username.": "", "Encryption protocol used to encrypt messages sent on behalf of the specified Username.": "", @@ -465,6 +466,7 @@ "Block (iSCSI) Shares Targets": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1314,9 +1316,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export All Keys": "", "Export Config": "", "Export Key": "", @@ -2032,6 +2036,7 @@ "Module": "", "Monitor": "", "Month(s)": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2300,6 +2305,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -3580,6 +3586,7 @@ "Unlink": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index c9611f83396..e8484f02de2 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -1,14 +1,20 @@ { "": "", + "5 Nines of Uptime with HA": "", "Add PCI Passthrough Device": "", + "Boost Performance & Support": "", "Change Root Disk Setup": "", "Choose the disk I/O bus type that best suits your system’s needs:

• NVMe – Ideal for high-performance storage with faster read and write speeds.

• Virtio-BLK – Efficient for virtualized environments, offering direct block device access with lower overhead.

• Virtio-SCSI – Flexible and scalable, supporting advanced features like hot-swapping and multiple devices.": "", "Edit Disks": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "I/O Bus": "", "Machine Time: {machineTime} \n Browser Time: {browserTime}": "", "Metadata (Special) Small Block Size": "", "Method Call": "", + "More Performance, More Protection": "", "Name ^ \"Local\" AND \"Web Shell Access\" = true": "", + "Optimize Your Storage": "", "Pods": "", "Post Init": "", "Post Script": "", @@ -45,6 +51,7 @@ "Strip ACL": "", "Stripe": "", "Truenas Connect Service": "", + "Unlock High Performance Solutions": "", "{license} Contract,": "", "\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 ": "\nParece que tu sesión estuvo inactiva durante más de {lifetime} segundos.
\nPor razones de seguridad, vamos a cerrar tu sesión a las {time}.\n", " Est. Usable Raw Capacity": " Capacidad bruta utilizable estimada", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 4a3824e0ca1..0213049c3f2 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -37,6 +37,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -576,6 +577,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot Environment Read": "", "Boot Environment Write": "", "Boot Pool Disk Replaced": "", @@ -1654,9 +1656,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2496,6 +2500,7 @@ "Monitor User": "", "Month(s)": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2814,6 +2819,7 @@ "OpenStack Swift": "", "Opened at": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4382,6 +4388,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 0eb6359f9b2..095e1fb5256 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -5,6 +5,7 @@ "1m Average": "", "2FA": "", "2FA Settings": "", + "5 Nines of Uptime with HA": "", "CPU Configuration
Enter the number of cores. Use multiple values or ranges to set the CPU topology.
Example: 1-2, 5, 9-11.": "", "ACL": "", "ACL Mode": "", @@ -82,6 +83,7 @@ "Bind Password": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -246,6 +248,8 @@ "Exit": "", "Exited": "", "Experimental": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "Export Key": "", "Exporter": "", "Exporters": "", @@ -439,6 +443,7 @@ "Missing group - {gid}": "", "Mixed Capacity": "", "Module": "", + "More Performance, More Protection": "", "More info...": "", "Multichannel": "", "Multiple Errors": "", @@ -519,6 +524,7 @@ "One-Time Password copied to clipboard": "", "OpenStack Swift": "", "Operation": "", + "Optimize Your Storage": "", "Other Execute": "", "Other Read": "", "Other Registry": "", @@ -812,6 +818,7 @@ "URL": "", "Unix NSS Info": "", "Unlink": "", + "Unlock High Performance Solutions": "", "Upload New Image": "", "Uploading": "", "Uploading Image": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index ac23f8f45f0..0e4dcea7d8b 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -2,6 +2,7 @@ "": "", "\"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": "", + "5 Nines of Uptime with HA": "", "CPU Configuration
Enter the number of cores. Use multiple values or ranges to set the CPU topology.
Example: 1-2, 5, 9-11.": "", "Why choose Container?
Containers offer lightweight, efficient virtualization by sharing the host OS kernel, providing faster startup times and reduced resource usage compared to VMs. Ideal for scalable applications.

Why choose VM?
Choose a VM for full OS isolation, kernel independence, and running diverse OS types.": "", "This option is experimental in rclone and we recommend you do not use it. It may not work correctly with long filenames.

Encrypt (PUSH) or decrypt (PULL) file names with the rclone \"Standard\" file name encryption mode. The original directory structure is preserved. A filename with the same name always has the same encrypted filename.

PULL tasks that have Filename Encryption enabled and an incorrect Encryption Password or Encryption Salt will not transfer any files but still report that the task was successful. To verify that files were transferred successfully, click the finished task status to see a list of transferred files.": "", @@ -72,6 +73,7 @@ "Base Image": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment Read": "", "Boot Environment Write": "", "Both": "", @@ -202,8 +204,10 @@ "Existing Ports": "", "Exited": "", "Experimental": "", + "Expert Support When You Need It": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Expose Snapshots": "", "FTP Service": "", "Failed to configure certificate in system UI": "", @@ -323,6 +327,7 @@ "MiB": "", "Microsoft OneDrive": "", "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "", + "More Performance, More Protection": "", "Move all items to the left side list": "", "Move all items to the right side list": "", "Move selected items to the left side list": "", @@ -368,6 +373,7 @@ "Ok": "", "One-Time Password": "", "One-Time Password copied to clipboard": "", + "Optimize Your Storage": "", "Other Registry": "", "Outlook": "", "Override Admin Email": "", @@ -530,6 +536,7 @@ "URI": "", "USB Devices": "", "Unexpected power loss necessitating a restart.": "", + "Unlock High Performance Solutions": "", "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Update completed successfully. The system will reboot shortly": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 68114b45f47..be085bc126f 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1,12 +1,19 @@ { "": "", + "5 Nines of Uptime with HA": "", + "Boost Performance & Support": "", "Change Root Disk Setup": "", "Choose the disk I/O bus type that best suits your system’s needs:

• NVMe – Ideal for high-performance storage with faster read and write speeds.

• Virtio-BLK – Efficient for virtualized environments, offering direct block device access with lower overhead.

• Virtio-SCSI – Flexible and scalable, supporting advanced features like hot-swapping and multiple devices.": "", "Edit Disks": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "I/O Bus": "", + "More Performance, More Protection": "", + "Optimize Your Storage": "", "Root Disk I/O Bus": "", "Set to use a snapshot of the dataset before a PUSH.": "", "Truenas Connect Service": "", + "Unlock High Performance Solutions": "", "\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 ": "\nSembra che la tua sessione sia stata inattiva per più di {lifetime} secondi.
\nPer motivi di sicurezza, verrai disconnesso alle {time}.", " Est. Usable Raw Capacity": " Capacità lorda utilizzabile stimata", " When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": " Quando la Modalità UPS è impostata su slave. Inserisci il numero della porta di rete aperta del sistema UPS Master. La porta predefinita è 3493.", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index ff55f29a2c9..71098fa27dd 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -32,6 +32,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -540,6 +541,7 @@ "Block (iSCSI) Shares Targets": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -1582,9 +1584,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2466,6 +2470,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2786,6 +2791,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4325,6 +4331,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 810baec6be3..3eb0189c8a4 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1,13 +1,20 @@ { "": "", + "5 Nines of Uptime with HA": "", + "Boost Performance & Support": "", "Change Root Disk Setup": "", "Choose the disk I/O bus type that best suits your system’s needs:

• NVMe – Ideal for high-performance storage with faster read and write speeds.

• Virtio-BLK – Efficient for virtualized environments, offering direct block device access with lower overhead.

• Virtio-SCSI – Flexible and scalable, supporting advanced features like hot-swapping and multiple devices.": "", "Compression": "", "Edit Disks": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "I/O Bus": "", + "More Performance, More Protection": "", + "Optimize Your Storage": "", "Root Disk I/O Bus": "", "Set to use a snapshot of the dataset before a PUSH.": "", "Truenas Connect Service": "", + "Unlock High Performance Solutions": "", "\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 ": "세션의 비활성화 시간이 {lifetime}초를 넘었습니다.
보안을 위해 {time}에 로그아웃 되었습니다.", " Est. Usable Raw Capacity": " 사용 가능한 원시 용량 추정", " When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": " UPS 모드슬레이브일 때, 마스터 UPS 시스템의 네트워크 포트 번호를 입력합니다. 기본 포트는 3493입니다.", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index b1640d50dab..63a2af81bc5 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -35,6 +35,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -624,6 +625,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1829,9 +1831,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2749,6 +2753,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3090,6 +3095,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4769,6 +4775,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 89cd1a9d4c1..230d7cc18db 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -1,5 +1,6 @@ { "": "", + "5 Nines of Uptime with HA": "", "CPU Configuration
Enter the number of cores. Use multiple values or ranges to set the CPU topology.
Example: 1-2, 5, 9-11.": "", "API Key copied to clipboard": "", "Activates iSCSI Extensions for RDMA (iSER) in TrueNAS, enabling the iSCSI protocol to directly transfer data into and out of SCSI memory buffers for improved performance. Enabling is limited to TrueNAS Enterprise-licensed systems and requires the system and network environment have Remote Direct Memory Access (RDMA)-capable hardware.": "", @@ -16,6 +17,7 @@ "Are you sure you want to delete volume {name}?": "", "Are you sure you want to generate a one-time password for \"{username}\" user?": "", "Automatic": "", + "Boost Performance & Support": "", "Boot Environment Read": "", "Boot Environment Write": "", "CPU Temperature Per Core": "", @@ -41,6 +43,8 @@ "Enable VLAN": "", "Enable iSCSI Extensions for RDMA (iSER)": "", "Enterprise": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "Expose Snapshots": "", "Failover is unhealthy. Rebooting now will cause a production outage.": "", "Finish": "", @@ -59,6 +63,7 @@ "Macvlan": "", "Manage Volumes": "", "Maprange": "", + "More Performance, More Protection": "", "NS ID": "", "Name cannot be changed after instance is created": "", "Network General Write": "", @@ -71,6 +76,7 @@ "Not used": "", "One-Time Password": "", "One-Time Password copied to clipboard": "", + "Optimize Your Storage": "", "PCI Passthrough": "", "Pool Disks have {alerts} alerts.": "", "Pool Read": "", @@ -109,6 +115,7 @@ "TrueNAS Connect Write": "", "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Two-Factor Authentication has been enabled on this system. You are required to setup your 2FA authentication. You will not be able to proceed without setting up 2FA for your account. Make sure to scan the QR code with your authenticator app in the end before logging out of the system or navigating away. Otherwise, you will be locked out of the system and will be unable to login after logging out.": "", + "Unlock High Performance Solutions": "", "Upload New Image": "", "Uploading": "", "Use an ISO image": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 90e16da0e33..077a287cadd 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1,5 +1,6 @@ { "": "", + "5 Nines of Uptime with HA": "", "Extended attributes are preserved, but must be supported by both systems.": "", "MEGA account password.": "", "MEGA account username.": "", @@ -13,6 +14,7 @@ "Allow configuring a non-standard port to access the GUI over HTTP. Changing this setting might require changing a Firefox configuration setting.": "", "At least one module must be defined in rsyncd.conf(5) of the rsync server or in the Rsync Modules of another system.": "", "Attaches privileges to the group. Only needed if you need users in this group access to TrueNAS API or WebUI.": "", + "Boost Performance & Support": "", "Boot environment name. Alphanumeric characters, dashes (-), underscores (_), and periods (.) are allowed.": "", "Browse to the existing path on the remote host to sync with. Maximum path length is 255 characters": "", "Browse to the exported key file that can be used to unlock this dataset.": "", @@ -64,6 +66,8 @@ "Establishing a connection requires that one of the connection systems has open TCP ports. Choose which system (LOCAL or REMOTE) will open ports. Consult your IT department to determine which systems are allowed to open ports.": "", "Exclude specific child dataset snapshots from the replication. Use with Recursive snapshots. List child dataset names to exclude. Separate entries by pressing Enter. Example: pool1/dataset1/child1. A recursive replication of pool1/dataset1 snapshots includes all child dataset snapshots except child1.": "", "Exclude specific child datasets from the snapshot. Use with recursive snapshots. List paths to any child datasets to exclude. Example: pool1/dataset1/child1. A recursive snapshot of pool1/dataset1 will include all child datasets except child1. Separate entries by pressing Enter.": "", + "Expert Support When You Need It": "", + "Explore TrueNAS Enterprise": "", "Files are split into chunks of this size before upload. The number of chunks that can be simultaneously transferred is set by the Transfers number. The single largest file being transferred must fit into no more than 10,000 chunks.": "", "Generate a name for the snapshot using the naming schema from a previously created Periodic Snapshot Task. This allows the snapshot to be replicated. Cannot be used with a Name.": "", "Generate an alert when the pool has this percent space remaining. This is typically configured at the pool level when using zvols or at the extent level for both file and device based extents.": "", @@ -101,6 +105,7 @@ "Maximum Transmission Unit, the largest protocol data unit that can be communicated. The largest workable MTU size varies with network interfaces and equipment. 1500 and 9000 are standard Ethernet MTU sizes. Leaving blank restores the field to the default value of 1500.": "", "Message verbosity level in the replication task log.": "", "Microsoft Onedrive Access Token. Log in to the Microsoft account to add an access token.": "", + "More Performance, More Protection": "", "Network addresses allowed to use this initiator. Leave blank to allow all networks or list network addresses with a CIDR mask. Separate entries by pressing Enter.": "", "Number of password-based key derivation function 2 (PBKDF2) iterations to use for reducing vulnerability to brute-force attacks. Entering a number larger than 100000 is required. See PBKDF2 for more details.": "", "Number of seconds before timeout. To view the AD connection status, open the interface Task Manager.": "", @@ -109,6 +114,7 @@ "Only appears if a File or zvol is selected. When the specified percentage of free space is reached, the system issues an alert.": "", "Only needed when connecting to a Team Drive. The ID of the top level folder of the Team Drive.": "", "Only replicate snapshots that match a defined creation time. To specify which snapshots will be replicated, set this checkbox and define the snapshot creation times that will be replicated. For example, setting this time frame to Hourly will only replicate snapshots that were created at the beginning of each hour.": "", + "Optimize Your Storage": "", "Options for encrypting the LDAP connection: ": "", "Provide helpful notations related to the share, e.g. ‘Shared to everybody’. Maximum length is 120 characters.": "", "Provides a plugin interface for Winbind to use varying backends to store SID/uid/gid mapping tables. The correct setting depends on the environment in which the NAS is deployed.": "", @@ -141,6 +147,7 @@ "Start a dry run test of this cloud sync task? The system will connect to the cloud service provider and simulate transferring a file. No data will be sent or received.": "", "The OU in which new computer accounts are created. The OU string is read from top to bottom without RDNs. Slashes (\"/\") are used as delimiters, like Computers/Servers/NAS. The backslash (\"\\\") is used to escape characters but not as a separator. Backslashes are interpreted at multiple levels and might require doubling or even quadrupling to take effect. When this field is blank, new computer accounts are created in the Active Directory default OU.": "", "Truenas Connect Service": "", + "Unlock High Performance Solutions": "", "Upload a Google Service Account credential file. The file is created with the Google Cloud Platform Console.": "", "Use rclone crypt to manage data encryption during PUSH or PULL transfers:

PUSH: Encrypt files before transfer and store the encrypted files on the remote system. Files are encrypted using the Encryption Password and Encryption Salt values.

PULL: Decrypt files that are being stored on the remote system before the transfer. Transferring the encrypted files requires entering the same Encryption Password and Encryption Salt that was used to encrypt the files.

Additional details about the encryption algorithm and key derivation are available in the rclone crypt File formats documentation.": "", "Use a Linux image (linuxcontainers.org)": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 85a0030ed96..d7cff29b69b 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -32,6 +32,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -575,6 +576,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1780,9 +1782,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2700,6 +2704,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3041,6 +3046,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4720,6 +4726,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 8e0154a6dc2..b749e393090 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -6,6 +6,7 @@ "... Make sure the TrueNAS system is powered on and connected to the network.": "", "1m Average": "", "2FA Settings": "", + "5 Nines of Uptime with HA": "", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "", "Authentication protocol used to authenticate messages sent on behalf of the specified Username.": "", "Encryption protocol used to encrypt messages sent on behalf of the specified Username.": "", @@ -274,6 +275,7 @@ "Bind Interfaces": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -1005,9 +1007,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export All Keys": "", "Export Config": "", "Export Configuration": "", @@ -1643,6 +1647,7 @@ "Mixing disks of different sizes in a vdev is not recommended.": "", "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "", "Monitor": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -1912,6 +1917,7 @@ "OpenStack Swift": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -3135,6 +3141,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index f2ccad280de..b5e70a34b2d 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -19,6 +19,7 @@ "1m Average": "", "2FA": "", "2FA Settings": "", + "5 Nines of Uptime with HA": "", " TrueNAS Forums - Find answers from other users in the forums.": "", " TrueNAS Licensing - Learn more about enterprise-grade support.": "", " TrueNAS Documentation Hub - Read and contribute to the open-source documentation.": "", @@ -412,6 +413,7 @@ "Block (iSCSI) Shares Targets": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -1157,9 +1159,11 @@ "Expand Row": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -1774,6 +1778,7 @@ "Monitor": "", "Month(s)": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2052,6 +2057,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional. Only needed for private images.": "", @@ -3236,6 +3242,7 @@ "Unlink": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 9b897b23c50..ef65cec54ce 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -20,6 +20,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months ago": "", @@ -271,6 +272,7 @@ "Bind Interfaces": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -773,9 +775,11 @@ "Exit": "", "Exited": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -1192,6 +1196,7 @@ "Mixing disks of different sizes in a vdev is not recommended.": "", "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "", "Module": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -1378,6 +1383,7 @@ "OpenStack Swift": "", "Opened at": "", "Operation": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional. Only needed for private images.": "", @@ -2080,6 +2086,7 @@ "Unix Socket": "", "Unknown PID": "", "Unlink": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index f6216b07400..ba4d5bd3bc8 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -40,6 +40,7 @@ "3 weeks ago": "", "4 days ago": "", "4 months ago": "", + "5 Nines of Uptime with HA": "", "5 days ago": "", "5 months ago": "", "6 months": "", @@ -630,6 +631,7 @@ "Block I/O read and writes": "", "Block Size": "", "Block size": "", + "Boost Performance & Support": "", "Boot": "", "Boot Environment": "", "Boot Environment Read": "", @@ -1835,9 +1837,11 @@ "Expand pool to fit all available disk space.": "", "Expander Status": "", "Experimental": "", + "Expert Support When You Need It": "", "Expiration Date": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export": "", "Export All Keys": "", "Export As {fileType}": "", @@ -2755,6 +2759,7 @@ "Month(s)": "", "Months": "", "More Options": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -3096,6 +3101,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -4775,6 +4781,7 @@ "Unlock": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 1b55bf9664a..8d8d5e68fbb 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -1,6 +1,7 @@ { "": "", "...": "", + "5 Nines of Uptime with HA": "", "CPU Configuration
Enter the number of cores. Use multiple values or ranges to set the CPU topology.
Example: 1-2, 5, 9-11.": "", "Why choose Container?
Containers offer lightweight, efficient virtualization by sharing the host OS kernel, providing faster startup times and reduced resource usage compared to VMs. Ideal for scalable applications.

Why choose VM?
Choose a VM for full OS isolation, kernel independence, and running diverse OS types.": "", "API Key copied to clipboard": "", @@ -24,6 +25,7 @@ "Are you sure you want to delete volume {name}?": "", "Are you sure you want to generate a one-time password for \"{username}\" user?": "", "Automatic": "", + "Boost Performance & Support": "", "Boot Environment Read": "", "Boot Environment Write": "", "Both": "", @@ -76,8 +78,10 @@ "Enter number of cores or multiple values or ranges to set CPU topology. Example: 1-2,5,9-11": "", "Enter the value for the environment variable.": "", "Enterprise": "", + "Expert Support When You Need It": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Expose Snapshots": "", "Failed to configure certificate in system UI": "", "Failed to renew certificate": "", @@ -128,6 +132,7 @@ "Maprange": "", "Maximum file size is limited to {maxSize}.": "", "Microsoft OneDrive": "", + "More Performance, More Protection": "", "NS ID": "", "Name cannot be changed after instance is created": "", "Network General Write": "", @@ -141,6 +146,7 @@ "Not used": "", "One-Time Password": "", "One-Time Password copied to clipboard": "", + "Optimize Your Storage": "", "Other Registry": "", "PCI Passthrough": "", "Pool Disks have {alerts} alerts.": "", @@ -206,6 +212,7 @@ "Trusted Platform Module (TPM)": "", "Two-Factor Authentication has been enabled on this system. You are required to setup your 2FA authentication. You will not be able to proceed without setting up 2FA for your account. Make sure to scan the QR code with your authenticator app in the end before logging out of the system or navigating away. Otherwise, you will be locked out of the system and will be unable to login after logging out.": "", "URI": "", + "Unlock High Performance Solutions": "", "Update completed successfully. The system will reboot shortly": "", "Upload New Image": "", "Uploading": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 5c5539aa36c..ee2e0454151 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1,5 +1,6 @@ { "": "", + "5 Nines of Uptime with HA": "", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "", "pCloud Access Token. These tokens can expire and require extension.": "", "Authentication protocol used to authenticate messages sent on behalf of the specified Username.": "", @@ -355,6 +356,7 @@ "Block (iSCSI) Shares Targets": "", "Block I/O": "", "Block I/O read and writes": "", + "Boost Performance & Support": "", "Boot Environment": "", "Boot Environment Read": "", "Boot Environment Write": "", @@ -1122,8 +1124,10 @@ "Existing Ports": "", "Expand pool to fit all available disk space.": "", "Expander Status": "", + "Expert Support When You Need It": "", "Expires On": "", "Expires on {date}": "", + "Explore TrueNAS Enterprise": "", "Export Password Secret Seed": "", "Export ZFS snapshots as Shadow Copies for VSS clients.": "", "Export/disconnect pool: {pool}": "", @@ -1798,6 +1802,7 @@ "Monday": "", "Month(s)": "", "Months": "", + "More Performance, More Protection": "", "More info...": "", "Move all items to the left side list": "", "Move all items to the right side list": "", @@ -2005,6 +2010,7 @@ "Opened at": "", "Operation": "", "Operation will change permissions on path: {path}": "", + "Optimize Your Storage": "", "Optional IP": "", "Optional IP of 2nd Redfish management interface.": "", "Optional description. Portals are automatically assigned a numeric group.": "", @@ -3328,6 +3334,7 @@ "Unlink": "", "Unlock Child Encrypted Roots": "", "Unlock Datasets": "", + "Unlock High Performance Solutions": "", "Unlock Pool": "", "Unlock with Key file": "", "Unlocked": "",