diff --git a/src/app/enums/product-type.enum.ts b/src/app/enums/product-type.enum.ts index ffdc82e14f3..1ce068b65ff 100644 --- a/src/app/enums/product-type.enum.ts +++ b/src/app/enums/product-type.enum.ts @@ -4,6 +4,6 @@ export enum ProductType { } export const productTypeLabels = new Map([ - [ProductType.CommunityEdition, ''], - [ProductType.Enterprise, 'ENTERPRISE'], + [ProductType.CommunityEdition, 'Community Edition'], + [ProductType.Enterprise, 'Enterprise'], ]); diff --git a/src/app/helpers/copyright-text.helper.spec.ts b/src/app/helpers/copyright-text.helper.spec.ts index be4e160baef..5c55b56c8a0 100644 --- a/src/app/helpers/copyright-text.helper.spec.ts +++ b/src/app/helpers/copyright-text.helper.spec.ts @@ -1,11 +1,19 @@ +import { environment } from 'environments/environment'; +import { ProductType } from 'app/enums/product-type.enum'; import { getCopyrightText } from 'app/helpers/copyright-text.helper'; +const buildYear = environment.buildYear; + describe('getCopyrightText', () => { - it('should return the correct copyright text', () => { - expect(getCopyrightText(false, 2024)).toBe('TrueNAS ® © 2024'); + it('general: copyright text', () => { + expect(getCopyrightText()).toBe(`TrueNAS ® © ${buildYear}`); + }); + + it('community edition: copyright text', () => { + expect(getCopyrightText(ProductType.CommunityEdition)).toBe(`TrueNAS Community Edition ® © ${buildYear}`); }); - it('should return the correct enterprise copyright text', () => { - expect(getCopyrightText(true, 2024)).toBe('TrueNAS ENTERPRISE ® © 2024'); + it('enterprise: copyright text', () => { + expect(getCopyrightText(ProductType.Enterprise)).toBe(`TrueNAS Enterprise ® © ${buildYear}`); }); }); diff --git a/src/app/helpers/copyright-text.helper.ts b/src/app/helpers/copyright-text.helper.ts index b862b90446d..807ee230c36 100644 --- a/src/app/helpers/copyright-text.helper.ts +++ b/src/app/helpers/copyright-text.helper.ts @@ -1,6 +1,9 @@ -export function getCopyrightText(isEnterprise: boolean, buildYear: number): string { - if (isEnterprise) { - return `TrueNAS ENTERPRISE ® © ${buildYear}`; +import { environment } from 'environments/environment'; +import { ProductType, productTypeLabels } from 'app/enums/product-type.enum'; + +export function getCopyrightText(productType?: ProductType): string { + if (productType) { + return `TrueNAS ${productTypeLabels.get(productType)} ® © ${environment.buildYear}`; } - return `TrueNAS ® © ${buildYear}`; + return `TrueNAS ® © ${environment.buildYear}`; } diff --git a/src/app/helptext/about.ts b/src/app/helptext/about.ts index 8ef3a45b2e5..c79eb7fecd1 100644 --- a/src/app/helptext/about.ts +++ b/src/app/helptext/about.ts @@ -17,8 +17,7 @@ target="_blank">Enterprise level support and services? Contact \ iXsystems for more information.'), - opensource: T('TrueNAS is Free and \ -Open Source software, which is provided as-is with no warranty.'), + opensource: T('TrueNAS is Free and Open Source software, which is provided as-is with no warranty.'), actionBtnText: { about: T('Close'), diff --git a/src/app/modules/layout/admin-layout/admin-layout.component.html b/src/app/modules/layout/admin-layout/admin-layout.component.html index c8b80e309f6..16e55226293 100644 --- a/src/app/modules/layout/admin-layout/admin-layout.component.html +++ b/src/app/modules/layout/admin-layout/admin-layout.component.html @@ -9,22 +9,7 @@ (closedStart)="onMenuClosed()" > } diff --git a/src/app/modules/layout/admin-layout/admin-layout.component.scss b/src/app/modules/layout/admin-layout/admin-layout.component.scss index e86f21a864d..720f50e7b4b 100644 --- a/src/app/modules/layout/admin-layout/admin-layout.component.scss +++ b/src/app/modules/layout/admin-layout/admin-layout.component.scss @@ -11,64 +11,19 @@ width: 400px; } -.app-logo, -.app-logo-text { - position: relative; -} - -.app-logo { - height: 36px; - top: 13px; - width: 36px; -} - -.logo-text { - align-items: center; - display: flex; -} - -.branding { - align-items: center; +ix-truenas-logo { background-color: var(--topbar) !important; + box-sizing: border-box; color: var(--topbar-txt) !important; - display: flex; height: 48px; - justify-content: center; left: 0; - line-height: 64px; - max-width: var(--sidenav-width); /*15rem;*/ - overflow: hidden; + line-height: 48px; + max-width: var(--sidenav-width); + padding: 7px; position: fixed; - text-align: center; top: 0; width: 100%; z-index: 9999; - - .app-logo { - margin-left: 8px; - margin-right: 8px; - } - - .app-logo-text { - height: auto; - margin-right: 8px; - width: 96px; - } - - &.truenas-scale { - .app-logo { - height: 40px; - top: 12px; - width: 40px; - } - } -} - -.logo:focus-visible, -.logo-text:focus-visible { - background: var(--focus-bg); - box-shadow: 0 0 0 1.5px var(--focus-brd) inset !important; - outline-width: 0; } .app-side-nav-container { @@ -76,13 +31,6 @@ height: 100%; } -.enterprise-logo .ix-icon { - height: auto !important; - margin-left: -4px !important; - top: 14px !important; - width: 108px !important; -} - .hostname-label { font-size: 12px; margin: auto; @@ -103,7 +51,7 @@ .copyright-line { font-size: 10px; - margin: 0 58px; + margin: 0 46px; } } diff --git a/src/app/modules/layout/admin-layout/admin-layout.component.ts b/src/app/modules/layout/admin-layout/admin-layout.component.ts index ae91b101d34..214715ec6c3 100644 --- a/src/app/modules/layout/admin-layout/admin-layout.component.ts +++ b/src/app/modules/layout/admin-layout/admin-layout.component.ts @@ -14,7 +14,7 @@ import { MatDrawerMode, MatSidenav, MatSidenavContainer, MatSidenavContent, } from '@angular/material/sidenav'; import { MatTooltip } from '@angular/material/tooltip'; -import { RouterLink, RouterOutlet } from '@angular/router'; +import { RouterOutlet } from '@angular/router'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; import { Store } from '@ngrx/store'; import { TranslateModule } from '@ngx-translate/core'; @@ -32,9 +32,9 @@ import { NavigationComponent } from 'app/modules/layout/navigation/navigation.co import { SecondaryMenuComponent } from 'app/modules/layout/secondary-menu/secondary-menu.component'; import { SidenavService } from 'app/modules/layout/sidenav.service'; import { TopbarComponent } from 'app/modules/layout/topbar/topbar.component'; +import { TruenasLogoComponent } from 'app/modules/layout/topbar/truenas-logo/truenas-logo.component'; import { DefaultPageHeaderComponent } from 'app/modules/page-header/default-page-header/default-page-header.component'; import { SlideInControllerComponent } from 'app/modules/slide-ins/components/slide-in-controller/slide-in-controller.component'; -import { TestDirective } from 'app/modules/test-id/test.directive'; import { ThemeService } from 'app/modules/theme/theme.service'; import { SentryService } from 'app/services/sentry.service'; import { SessionTimeoutService } from 'app/services/session-timeout.service'; @@ -52,7 +52,6 @@ import { selectCopyrightText, selectIsEnterprise, waitForSystemInfo } from 'app/ imports: [ MatSidenavContainer, MatSidenav, - RouterLink, IxIconComponent, NavigationComponent, SecondaryMenuComponent, @@ -67,7 +66,7 @@ import { selectCopyrightText, selectIsEnterprise, waitForSystemInfo } from 'app/ SlideInControllerComponent, AsyncPipe, TranslateModule, - TestDirective, + TruenasLogoComponent, ], }) export class AdminLayoutComponent implements OnInit, AfterViewInit, OnDestroy { diff --git a/src/app/modules/layout/copyright-line/copyright-line.component.spec.ts b/src/app/modules/layout/copyright-line/copyright-line.component.spec.ts index c3217bf2202..806902d07df 100644 --- a/src/app/modules/layout/copyright-line/copyright-line.component.spec.ts +++ b/src/app/modules/layout/copyright-line/copyright-line.component.spec.ts @@ -1,25 +1,26 @@ import { createComponentFactory, Spectator } from '@ngneat/spectator/jest'; import { MockStore, provideMockStore } from '@ngrx/store/testing'; +import { environment } from 'environments/environment'; +import { ProductType } from 'app/enums/product-type.enum'; import { CopyrightLineComponent } from 'app/modules/layout/copyright-line/copyright-line.component'; import { MapValuePipe } from 'app/modules/pipes/map-value/map-value.pipe'; import { AppState } from 'app/store'; -import { selectBuildYear, selectIsEnterprise } from 'app/store/system-info/system-info.selectors'; +import { selectProductType } from 'app/store/system-info/system-info.selectors'; describe('CopyrightLineComponent', () => { let spectator: Spectator; let store$: MockStore; + const buildYear = environment.buildYear; + const createComponent = createComponentFactory({ component: CopyrightLineComponent, imports: [MapValuePipe], providers: [ provideMockStore({ selectors: [{ - selector: selectIsEnterprise, - value: false, - }, { - selector: selectBuildYear, - value: 2024, + selector: selectProductType, + value: null, }], }), ], @@ -30,22 +31,32 @@ describe('CopyrightLineComponent', () => { store$ = spectator.inject(MockStore); }); + it('shows copyright line with unknown product type and year of build', () => { + store$.overrideSelector(selectProductType, null); + store$.refreshState(); + spectator.detectChanges(); + + expect(spectator.fixture.nativeElement).toHaveText(`TrueNAS ® © ${buildYear}`); + expect(spectator.fixture.nativeElement).toHaveText('iXsystems, Inc'); + expect(spectator.query('a')).toHaveAttribute('href', 'https://truenas.com/testdrive'); + }); + it('shows copyright line with product type and year of build', () => { - store$.overrideSelector(selectIsEnterprise, false); + store$.overrideSelector(selectProductType, ProductType.CommunityEdition); store$.refreshState(); spectator.detectChanges(); - expect(spectator.fixture.nativeElement).toHaveText('TrueNAS ® © 2024'); + expect(spectator.fixture.nativeElement).toHaveText(`TrueNAS Community Edition ® © ${buildYear}`); expect(spectator.fixture.nativeElement).toHaveText('iXsystems, Inc'); expect(spectator.query('a')).toHaveAttribute('href', 'https://truenas.com/testdrive'); }); it('shows copyright line with enterprise product type and year of build', () => { - store$.overrideSelector(selectIsEnterprise, true); + store$.overrideSelector(selectProductType, ProductType.Enterprise); store$.refreshState(); spectator.detectChanges(); - expect(spectator.fixture.nativeElement).toHaveText('TrueNAS ENTERPRISE ® © 2024'); + expect(spectator.fixture.nativeElement).toHaveText(`TrueNAS Enterprise ® © ${buildYear}`); expect(spectator.fixture.nativeElement).toHaveText('iXsystems, Inc'); expect(spectator.query('a')).toHaveAttribute('href', 'https://truenas.com/production'); }); diff --git a/src/app/modules/layout/copyright-line/copyright-line.component.ts b/src/app/modules/layout/copyright-line/copyright-line.component.ts index edc6288a7da..c450cba38d4 100644 --- a/src/app/modules/layout/copyright-line/copyright-line.component.ts +++ b/src/app/modules/layout/copyright-line/copyright-line.component.ts @@ -18,6 +18,7 @@ import { selectCopyrightText, selectIsEnterprise } from 'app/store/system-info/s export class CopyrightLineComponent { readonly withIxLogo = input(false); readonly copyrightText = toSignal(this.store$.select(selectCopyrightText)); + readonly isEnterprise = toSignal(this.store$.select(selectIsEnterprise)); readonly targetHref = computed(() => { return this.isEnterprise() ? 'https://truenas.com/production' : 'https://truenas.com/testdrive'; diff --git a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.html b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.html index 00b6976ced4..d9880660f60 100644 --- a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.html +++ b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.html @@ -2,11 +2,7 @@
- +
@@ -30,13 +26,11 @@

{{ helptext.help | translate }}

[innerHtml]="helptext.forums | translate" > - - @if (!isEnterprise()) { +
- } + >
{{ ('System Version' | translate) + ': ' + (systemVersion$ | async) }} diff --git a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.scss b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.scss index ce85b4b05a7..61651696afa 100644 --- a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.scss +++ b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.scss @@ -15,11 +15,18 @@ .header-overlay { background-color: rgba(0, 0, 0, 0.5); - color: white; + color: var(--fg1); padding: 30px 10px; text-align: center; } +.logo-wrapper { + align-items: center; + display: flex; + justify-content: center; + min-height: 200px; +} + #title { font-weight: 700; padding-bottom: 1rem; @@ -34,11 +41,11 @@ display: flex; margin: 20px 10px; - > *:first-child { + >*:first-child { flex: 1 1 10%; } - > *:last-child { + >*:last-child { flex: 1 1 90%; } } @@ -46,7 +53,8 @@ .bullet-icon { font-size: 36px; height: 36px; - width: 36px;; + width: 36px; + ; } #ix-img { @@ -93,8 +101,9 @@ text-align: right; } -.logo-wrapper .logo { +.logo-wrapper ix-truenas-logo { height: auto; + margin: auto; position: relative; width: 256px; z-index: 2; @@ -115,6 +124,6 @@ .bullet-icon { font-size: 24px; height: 24px; - width: 24px;; + width: 24px; } } diff --git a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.spec.ts b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.spec.ts index 076b0fb71d5..f49708cea0e 100644 --- a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.spec.ts +++ b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.spec.ts @@ -4,11 +4,11 @@ import { MatButtonHarness } from '@angular/material/button/testing'; import { MatDialogRef } from '@angular/material/dialog'; import { createComponentFactory, Spectator, mockProvider } from '@ngneat/spectator/jest'; import { provideMockStore } from '@ngrx/store/testing'; -import { TranslateModule } from '@ngx-translate/core'; import { MockComponent } from 'ng-mocks'; import { helptextAbout } from 'app/helptext/about'; import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component'; import { AboutDialogComponent } from 'app/modules/layout/topbar/about-dialog/about-dialog.component'; +import { TruenasLogoComponent } from 'app/modules/layout/topbar/truenas-logo/truenas-logo.component'; import { ApiService } from 'app/modules/websocket/api.service'; import { SystemInfoState } from 'app/store/system-info/system-info.reducer'; import { selectSystemInfoState } from 'app/store/system-info/system-info.selectors'; @@ -19,9 +19,7 @@ describe('AboutDialogComponent', () => { const createComponent = createComponentFactory({ component: AboutDialogComponent, - imports: [ - TranslateModule.forRoot(), - ], + imports: [], providers: [ provideMockStore({ selectors: [ @@ -40,7 +38,10 @@ describe('AboutDialogComponent', () => { mockProvider(ApiService), mockProvider(MatDialogRef), ], - declarations: [MockComponent(IxIconComponent)], + declarations: [ + MockComponent(IxIconComponent), + MockComponent(TruenasLogoComponent), + ], }); beforeEach(() => { @@ -76,6 +77,6 @@ describe('AboutDialogComponent', () => { it('should display product-specific open source text', () => { const openSourceElement = spectator.query('#open-source'); - expect(openSourceElement).toHaveText('TrueNAS is Free and Open Source software, which is provided as-is with no warranty.'); + expect(openSourceElement).toHaveText('TrueNAS is Free and Open Source software, which is provided as-is with no warranty.'); }); }); diff --git a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.ts b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.ts index 7561cdb47c7..70f842a0cdf 100644 --- a/src/app/modules/layout/topbar/about-dialog/about-dialog.component.ts +++ b/src/app/modules/layout/topbar/about-dialog/about-dialog.component.ts @@ -9,6 +9,7 @@ import { map } from 'rxjs'; import { helptextAbout } from 'app/helptext/about'; import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component'; import { CopyrightLineComponent } from 'app/modules/layout/copyright-line/copyright-line.component'; +import { TruenasLogoComponent } from 'app/modules/layout/topbar/truenas-logo/truenas-logo.component'; import { TestDirective } from 'app/modules/test-id/test.directive'; import { AppState } from 'app/store'; import { selectIsEnterprise, selectSystemInfoState } from 'app/store/system-info/system-info.selectors'; @@ -28,6 +29,7 @@ import { selectIsEnterprise, selectSystemInfoState } from 'app/store/system-info TranslateModule, TestDirective, AsyncPipe, + TruenasLogoComponent, ], }) export class AboutDialogComponent { diff --git a/src/app/modules/layout/topbar/topbar.component.html b/src/app/modules/layout/topbar/topbar.component.html index 68f419f7eed..be2fbef4b2a 100644 --- a/src/app/modules/layout/topbar/topbar.component.html +++ b/src/app/modules/layout/topbar/topbar.component.html @@ -16,12 +16,7 @@ - +
- @if (!isEnterprise()) { -
- } +
-
- {{ 'Overview' | translate }} -
- {{ 'Platform' | translate }}: @@ -86,6 +82,29 @@

{{ 'System Information' | translate }}

}
+ + {{ 'Edition' | translate }}: + @if (isLoaded()) { + + @if (isEnterprise()) { + {{ 'Enterprise' | translate }} + } @else { + {{ 'Community' | translate }} + } + + } @else { + + } + + {{ 'Version' | translate }}: @if (isLoaded()) { diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.spec.ts b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.spec.ts index 3d16e294baa..7d3f1d62e95 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.spec.ts +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-active/widget-sys-info-active.component.spec.ts @@ -19,7 +19,6 @@ import { WidgetSysInfoActiveComponent } from 'app/pages/dashboard/widgets/system import { selectIsHaLicensed, selectIsHaEnabled } from 'app/store/ha-info/ha-info.selectors'; import { selectIsIxHardware, selectProductType, - selectIsEnterprise, selectHasEnclosureSupport, } from 'app/store/system-info/system-info.selectors'; @@ -74,10 +73,6 @@ describe('WidgetSysInfoActiveComponent', () => { selector: selectProductType, value: ProductType.Enterprise, }, - { - selector: selectIsEnterprise, - value: true, - }, { selector: selectHasEnclosureSupport, value: true, @@ -121,6 +116,7 @@ describe('WidgetSysInfoActiveComponent', () => { const items = await parallel(() => matListItems.map((item) => item.getFullText())); expect(items).toEqual([ 'Platform: TRUENAS-M40-HA', + 'Edition: Enterprise', 'Version: Goldeye-25.10.0-MASTER-20250126-184805', 'Support License: Gold Contract, Expires on 2025-01-01', 'System Serial: AA-00001', @@ -158,6 +154,4 @@ describe('WidgetSysInfoActiveComponent', () => { const updateButton = await loader.getHarness(MatButtonHarness.with({ text: /Updates Available/ })); expect(await updateButton.host()).toExist(); }); - - // TODO: Add more tests }); diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.html b/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.html index b0ee7652065..b0de6cc245e 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.html +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.html @@ -54,10 +54,6 @@

{{ 'System Information' | translate }} {{ 'standby' | translate }}

-
- {{ 'Overview' | translate }} -
- {{ 'Platform' | translate }}: @@ -81,6 +77,30 @@

{{ 'System Information' | translate }} {{ 'standby' | translate }} } + + + {{ 'Edition' | translate }}: + @if (isLoaded()) { + + @if (isEnterprise()) { + {{ 'Enterprise' | translate }} + } @else { + {{ 'Community' | translate }} + } + + } @else { + + } + + {{ 'Version' | translate }}: @if (isLoaded()) { diff --git a/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.spec.ts b/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.spec.ts index dc7735b649c..8a9887e2020 100644 --- a/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.spec.ts +++ b/src/app/pages/dashboard/widgets/system/widget-sys-info-passive/widget-sys-info-passive.component.spec.ts @@ -21,7 +21,6 @@ import { selectCanFailover, selectIsHaEnabled, selectIsHaLicensed } from 'app/st import { selectIsIxHardware, selectProductType, - selectIsEnterprise, selectHasEnclosureSupport, } from 'app/store/system-info/system-info.selectors'; @@ -68,10 +67,6 @@ describe('WidgetSysInfoPassiveComponent', () => { selector: selectProductType, value: ProductType.Enterprise, }, - { - selector: selectIsEnterprise, - value: true, - }, { selector: selectHasEnclosureSupport, value: true, @@ -132,6 +127,7 @@ describe('WidgetSysInfoPassiveComponent', () => { const items = await parallel(() => matListItems.map((item) => item.getFullText())); expect(items).toEqual([ 'Platform: TRUENAS-M40-HA', + 'Edition: Enterprise', 'Version: Goldeye-25.10.0-MASTER-20250126-184805', 'Support License: Gold Contract, Expires on 2025-01-01', 'System Serial: AA-00002', diff --git a/src/app/pages/signin/signin.component.html b/src/app/pages/signin/signin.component.html index 76e369d3cb3..7622dd10d90 100644 --- a/src/app/pages/signin/signin.component.html +++ b/src/app/pages/signin/signin.component.html @@ -52,7 +52,7 @@

{{ 'Logging in...' | translate }}

} @else {
- +
} diff --git a/src/app/pages/signin/signin.component.scss b/src/app/pages/signin/signin.component.scss index e2c6cc26ac9..e487ef2473a 100644 --- a/src/app/pages/signin/signin.component.scss +++ b/src/app/pages/signin/signin.component.scss @@ -10,7 +10,7 @@ padding: 0 !important; } - > .mat-mdc-card { + >.mat-mdc-card { border: 0; margin: 0; } @@ -41,7 +41,7 @@ padding: 0 0 18px !important; } -.mat-mdc-card .mat-mdc-card-content > div { +.mat-mdc-card .mat-mdc-card-content>div { padding: 0; } @@ -93,11 +93,10 @@ height: 100vh; justify-content: center; - > div { + >div { animation: loading 2s linear infinite; - height: 65px; opacity: 0.3; - width: 300px; + width: 100px; ix-icon { fill: var(--fg1); @@ -131,7 +130,7 @@ * Apparently 100vw is actually viewport width + scrollbar width * if vertical scrollbar is present */ - .page-wrap > * { + .page-wrap>* { max-width: 100%; width: 100%; } diff --git a/src/app/store/system-info/system-info.reducer.ts b/src/app/store/system-info/system-info.reducer.ts index d9ed4548dee..f521d095258 100644 --- a/src/app/store/system-info/system-info.reducer.ts +++ b/src/app/store/system-info/system-info.reducer.ts @@ -16,7 +16,7 @@ export interface SystemInfoState { const initialState: SystemInfoState = { systemInfo: null, - productType: ProductType.CommunityEdition, + productType: null, isIxHardware: false, buildYear: environment.buildYear, }; diff --git a/src/app/store/system-info/system-info.selectors.ts b/src/app/store/system-info/system-info.selectors.ts index 189998fa6a3..ea154d66aac 100644 --- a/src/app/store/system-info/system-info.selectors.ts +++ b/src/app/store/system-info/system-info.selectors.ts @@ -39,9 +39,8 @@ export const selectBuildYear = createSelector( ); export const selectCopyrightText = createSelector( - selectIsEnterprise, - selectBuildYear, - (isEnterprise, buildYear) => getCopyrightText(isEnterprise, buildYear), + selectProductType, + (productType) => getCopyrightText(productType), ); export const waitForSystemInfo = selectNotNull(selectSystemInfo); diff --git a/src/assets/favicons/android-chrome-192x192.png b/src/assets/favicons/android-chrome-192x192.png new file mode 100644 index 00000000000..eeaeddf2118 Binary files /dev/null and b/src/assets/favicons/android-chrome-192x192.png differ diff --git a/src/assets/favicons/android-chrome-512x512.png b/src/assets/favicons/android-chrome-512x512.png new file mode 100644 index 00000000000..be7d407af61 Binary files /dev/null and b/src/assets/favicons/android-chrome-512x512.png differ diff --git a/src/assets/favicons/android-chrome-96x96.png b/src/assets/favicons/android-chrome-96x96.png deleted file mode 100644 index 707a1b68d74..00000000000 Binary files a/src/assets/favicons/android-chrome-96x96.png and /dev/null differ diff --git a/src/assets/favicons/apple-touch-icon.png b/src/assets/favicons/apple-touch-icon.png index 89c78a03ab7..e9040d7587c 100644 Binary files a/src/assets/favicons/apple-touch-icon.png and b/src/assets/favicons/apple-touch-icon.png differ diff --git a/src/assets/favicons/favicon-16x16.png b/src/assets/favicons/favicon-16x16.png index 91e8be8bfd6..0e43004566f 100644 Binary files a/src/assets/favicons/favicon-16x16.png and b/src/assets/favicons/favicon-16x16.png differ diff --git a/src/assets/favicons/favicon-32x32.png b/src/assets/favicons/favicon-32x32.png index fc56428bd37..5e9c0d4432e 100644 Binary files a/src/assets/favicons/favicon-32x32.png and b/src/assets/favicons/favicon-32x32.png differ diff --git a/src/assets/favicons/favicon.ico b/src/assets/favicons/favicon.ico index 7ec497476d4..f237cfdc9b0 100644 Binary files a/src/assets/favicons/favicon.ico and b/src/assets/favicons/favicon.ico differ diff --git a/src/assets/favicons/mstile-150x150.png b/src/assets/favicons/mstile-150x150.png index 0a38d359877..0b9fd5626d9 100644 Binary files a/src/assets/favicons/mstile-150x150.png and b/src/assets/favicons/mstile-150x150.png differ diff --git a/src/assets/favicons/safari-pinned-tab.svg b/src/assets/favicons/safari-pinned-tab.svg index ea0cf43bf00..ad55a2fdcf0 100644 --- a/src/assets/favicons/safari-pinned-tab.svg +++ b/src/assets/favicons/safari-pinned-tab.svg @@ -1,47 +1 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/src/assets/favicons/site.webmanifest b/src/assets/favicons/site.webmanifest index 59130c5e380..52b6bb11327 100644 --- a/src/assets/favicons/site.webmanifest +++ b/src/assets/favicons/site.webmanifest @@ -1,14 +1,19 @@ { - "name": "", - "short_name": "", - "icons": [ - { - "src": "android-chrome-96x96.png", - "sizes": "96x96", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 6d5f2e6dec9..ea68c175959 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1186,6 +1186,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email Options": "", @@ -1353,6 +1354,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment Variable": "", "Environment Variables": "", "Error ({code})": "", @@ -2579,7 +2581,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4028,7 +4029,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 6a0e6fcd084..c3f13b7ee1c 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1135,6 +1135,7 @@ "Edit TrueCloud Backup Task": "", "Edit User Quota": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", + "Edition": "", "Element": "", "Elements": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", @@ -1262,6 +1263,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment Variable": "", "Environment Variables": "", "Error ({code})": "", @@ -3479,7 +3481,7 @@ "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -4815,7 +4817,6 @@ "Other Options": "Andere Optionen", "Other Settings": "Andere Einstellungen", "Out": "Ausgehend", - "Overview": "Übersicht", "Owner": "Besitzer", "Owner:": "Eigentümer:", "POSIX": "POSIX", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index cbd701c2792..0b112c64969 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -11,6 +11,8 @@ "Created At": "", "Delete volume": "", "Details for ": "", + "Edition": "", + "Enterprise": "", "Finish": "", "Flash Identify Light": "", "Generate One-Time Password": "", @@ -101,6 +103,7 @@ "Temporary password will be generated and shown to you once form is saved.

This password is only valid for one login within 24 hours and does not persist across reboots.

User will be encouraged to choose their own password after they login for the first time.": "", "This is the only time the password is shown.": "", "This password is only valid for one login within 24 hours and does not persist across reboots.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Unlock Child Encrypted Roots": "", "Upload New Image": "", "Use an ISO image": "", @@ -3196,7 +3199,6 @@ "Override Admin Email": "Anular el correo del administrador", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Reemplaza la máscara de creación de directorios predeterminada de 0777 que concede acceso de lectura, escritura y ejecución de directorios para todos.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "Reemplaza la máscara de creación de archivos predeterminada de 0666 que crea archivos con acceso de lectura y escritura para todos.", - "Overview": "Vista general", "Owner": "Propietario", "Owner Group": "Grupo de propietarios", "Owner:": "Dueño:", @@ -4701,7 +4703,6 @@ "TrueNAS Controller": "Controlador TrueNAS", "TrueNAS Help": "Ayuda de TrueNAS", "TrueNAS URL": "URL de TrueNAS", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS es un software gratuito y de código abierto, que se proporciona tal cual, sin garantía.", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS mantiene un caché de usuarios y grupos para los consumidores de API (incluida la interfaz de usuario web). Esta es una característica práctica que se puede deshabilitar si el dominio contiene una gran cantidad de usuarios y grupos o si el almacenamiento en caché genera una carga excesiva en el controlador de dominio.", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS recomienda que la configuración de sincronización se deje siempre en el valor predeterminado \"Estándar\" o se aumente a \"Siempre\". La configuración \"Deshabilitada\" no se debe utilizar en producción y solo cuando no sea un problema que los datos se recuperen unos segundos en caso de falla o pérdida de energía.", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "El servidor TrueNAS debe estar unido a Active Directory o tener al menos un usuario SMB local antes de crear un recurso compartido SMB", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index a53096530f0..8e07f12697a 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1372,6 +1372,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email Subject": "", @@ -1583,6 +1584,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -4270,7 +4272,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -5123,7 +5125,6 @@ "Other": "Otro", "Out": "Salida", "Outgoing [{networkInterfaceName}]": "Saliente [{networkInterfaceName}]", - "Overview": "Resumen", "Owner": "Propietario", "Owner:": "Propietario:", "Password": "Contraseña", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 7bc88ba472d..c6c6e1f57af 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -216,6 +216,7 @@ "Edit Label": "", "Edit Proxy": "", "Edit Trim": "", + "Edition": "", "Enclosure Options": "", "Enclosure Read": "", "Enclosure Services Controller Electronics": "", @@ -225,6 +226,7 @@ "Encryption Protocol": "", "Encryption Root": "", "Encryption Standard": "", + "Enterprise": "", "Eula": "", "Exec": "", "Existing Ports": "", @@ -760,6 +762,7 @@ "Transport Encryption Behavior": "", "TrueCommand Read": "", "TrueCommand Write": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Truenas Connect Service": "", "Trusted Platform Module (TPM)": "", "Tunable": "", @@ -3513,7 +3516,6 @@ "Override Admin Email": "Remplacer l'e-mail de l'admin", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Remplace le masque de création de répertoire par défaut de 0777 qui permet à tout le monde d'accéder au répertoire en lecture, écriture et exécution.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "Remplace le masque de création de fichier par défaut de 0666 qui crée des fichiers avec un accès en lecture et en écriture pour tout le monde.", - "Overview": "Aperçu", "Owner": "Propriétaire", "Owner Group": "Groupe propriétaire", "Owner:": "Propriétaire", @@ -4818,7 +4820,6 @@ "TrueNAS Controller": "Contrôleur TrueNAS", "TrueNAS Help": "Aide TrueNAS", "TrueNAS URL": "URL TrueNAS", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS est un logiciel gratuit et Open Source, fourni tel quel sans aucune garantie.", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS conserve un cache d'utilisateurs et de groupes pour les utilisateurs d'API (y compris l'interface utilisateur Web). Il s'agit d'une fonctionnalité pratique qui peut être désactivée si le domaine contient un grand nombre d'utilisateurs et de groupes ou si la mise en cache génère une charge excessive sur le contrôleur de domaine.", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS recommande que le paramètre de synchronisation soit toujours laissé par défaut sur \"Standard\" ou augmenté sur \"Toujours\". Le paramètre \"Désactivé\" ne doit pas être utilisé en production et uniquement lorsque la restauration des données de quelques secondes en cas de panne ou de coupure de courant n'est pas un problème.", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "Le serveur TrueNAS doit être joint à Active Directory ou avoir au moins un utilisateur SMB local avant de créer un partage SMB", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 277c4180572..af78939c67c 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -159,6 +159,7 @@ "Edit Docker Registry": "", "Edit Instance: {name}": "", "Edit Proxy": "", + "Edition": "", "Enable General Purpose OS STIG compatibility mode": "", "Enable NFS over RDMA": "", "Enable Outlook OAuth authentication.": "", @@ -174,6 +175,7 @@ "Enter an email address to override the admin account’s default email. If left blank, the admin account’s email address will be used": "", "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": "", "Environment Variable": "", "Environment Variables": "", "Error when loading similar apps.": "", @@ -465,7 +467,7 @@ "Troubleshooting Issues": "", "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "Truenas Connect Service": "", "Trusted Platform Module (TPM)": "", @@ -3361,7 +3363,6 @@ "Outgoing [{networkInterfaceName}]": "Ag dul as [{networkInterfaceName}]", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Sáraíonn sé masc cruthú eolaire réamhshocraithe 0777 a thugann rochtain do gach duine chun eolaire a léamh, a scríobh agus a fhorghníomhú.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "Sáraítear masc cruthaithe comhad réamhshocraithe 0666 a chruthaíonn comhaid a bhfuil rochtain léite agus scríofa acu do chách.", - "Overview": "Forbhreathnú", "Owner": "Úinéir", "Owner Group": "Grúpa Úinéirí", "Owner:": "Úinéir:", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 3c94aab730a..461a87e5b7c 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1371,6 +1371,7 @@ "Edit group": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1584,6 +1585,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -2927,7 +2929,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -3794,6 +3795,7 @@ "TrueCommand Write": "", "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "Truenas Connect Service": "", "Trusted Platform Module (TPM)": "", @@ -4866,7 +4868,6 @@ "TrueNAS Controller": "Controller TrueNAS", "TrueNAS Help": "Aiuto TrueNAS", "TrueNAS URL": "URL TrueNAS", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS è un software gratuito e Open Source, fornito così com'è senza alcuna garanzia.", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS consiglia di lasciare sempre l'impostazione di sincronizzazione predefinita \"Standard\" o di aumentarla a \"Sempre\". L'impostazione \"Disabilitato\" non dovrebbe essere utilizzata in produzione e solo quando il rollback dei dati di pochi secondi in caso di crash o perdita di corrente non sono un problema.", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "Il server TrueNAS deve essere unito ad Active Directory o avere almeno un utente SMB locale prima di creare una condivisione SMB", "TrueNAS software versions do not match between storage controllers.": "Le versioni del software TrueNAS non corrispondono tra i controller di archiviazione.", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 2ca00630a06..0e363f57b3b 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1340,6 +1340,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email Options": "", @@ -1513,6 +1514,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -4211,7 +4213,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -5132,7 +5134,6 @@ "Organizational unit of the entity.": "エンティティの組織単位。", "Other Options": "その他のオプション", "Other Settings": "その他の設定", - "Overview": "概要", "Passphrase": "パスフレーズ", "Password": "パスワード", "Password for the Active Directory administrator account. Required the first time a domain is configured. After initial configuration, the password is not needed to edit, start, or stop the service.": "Active Directory 管理者アカウントのパスワード。 ドメインを初めて構成する場合に必要です。初期構成後、サービスの編集、開始、または停止にパスワードは必要ありません。", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index d919b820ec9..d2a8ec09b7f 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -4,6 +4,8 @@ "Close Dialog": "", "Created At": "", "Delete volume": "", + "Edition": "", + "Enterprise": "", "Host ID": "", "Image uploaded successfully": "", "Instance is not container": "", @@ -13,6 +15,7 @@ "Not used": "", "Root Disk": "", "Select ISO": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Upload New Image": "", "Use an ISO image": "", "Used By": "", @@ -3132,7 +3135,6 @@ "Override Admin Email": "관리자 이메일 대체", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "기본 디렉터리 생성 마스크를 모든 사용자에게 디렉터리 읽기, 쓰기, 실행 권한을 부여하는 0777로 대체합니다.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "기본 파일 생성 마스크를 모든 사용자에게 읽고 쓸 수 있는 파일을 생성하는 권한을 부여하는 0666으로 대체합니다.", - "Overview": "개요", "Owner": "소유자", "Owner Group": "소유자 그룹", "Owner:": "소유자:", @@ -4692,7 +4694,6 @@ "TrueNAS Controller": "TrueNAS 컨트롤러", "TrueNAS Help": "TrueNAS 도움말", "TrueNAS URL": "TrueNAS URL", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS는 무료 공개형 소프트웨어로, 어떠한 보증 없이 있는 그대로 제공됩니다.", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS는 API 사용자(WebUI 포함)를 위해 사용자와 그룹 캐시를 유지합니다. 이는 편의 기능으로, 도메인에 많은 수의 사용자와 그룹이 포함되어 있거나 캐시 작업으로 인해 도메인 컨트롤러에 과도한 부하가 발생한다면 비활성화할 수 있습니다.", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS는 항상 동기화 설정을 기본값인 \"표준\"으로 두거나 \"항상\"까지만 올릴 것을 권장합니다. \"비활성화\" 설정은 실제 운영 환경에서 사용하면 안 되며, 충돌이나 정전 시 데이터를 몇 초 전으로 되돌리는 것이 문제가 되지 않을 때만 사용해야 합니다.", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "TrueNAS 서버는 SMB 공유를 생성하기 전에 반드시 액티브 디렉터리에 연결하거나 하나 이상의 로컬 SMB 사용자를 생성해야 합니다.", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 8556764ce4a..6c1c80e81b3 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -1533,6 +1533,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1756,6 +1757,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3099,7 +3101,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4654,7 +4655,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index da104fbf252..478f1e25013 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -18,6 +18,8 @@ "Delete volume": "", "Details for ": "", "Edit App YAML": "", + "Edition": "", + "Enterprise": "", "Finish": "", "Generate One-Time Password": "", "Generate Temporary One-Time Password": "", @@ -49,6 +51,7 @@ "Temporary password will be generated and shown to you once form is saved.

This password is only valid for one login within 24 hours and does not persist across reboots.

User will be encouraged to choose their own password after they login for the first time.": "", "This is the only time the password is shown.": "", "This password is only valid for one login within 24 hours and does not persist across reboots.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Upload New Image": "", "Use an ISO image": "", "Use zvol with previously installed OS": "", @@ -3152,7 +3155,6 @@ "Override Admin Email": "Beheerders-e-mailadres negeren", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Overschrijft het standaard map aanmaakmasker van 0777 dat voor iedereen lees-, schrijf- en uitvoeringstoegang geeft tot directory's.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "Overschrijft het standaard bestandsaanmaakmasker van 0666 dat bestanden aanmaakt met lees- en schrijftoegang voor iedereen.", - "Overview": "Overzicht", "Owner": "Eigenaar", "Owner Group": "Eigenaar groep", "Owner:": "Eigenaar:", @@ -4703,7 +4705,6 @@ "TrueNAS Controller": "TrueNAS controller", "TrueNAS Help": "TrueNAS Help", "TrueNAS URL": "TrueNAS URL", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS is gratis en Open Source-software, die wordt geleverd zoals hij is, zonder garantie.", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS onderhoudt een cache van gebruikers en groepen voor API-consumenten (inclusief de WebUI). Dit is een handige functie die kan worden uitgeschakeld als het domein grote aantallen gebruikers en groepen bevat of als de caching overmatige belasting van de domeincontroller veroorzaakt.", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS raadt aan om de synchronisatie-instelling altijd op de standaardwaarde \"Standaard\" te laten staan, of te verhogen naar \"Altijd\". De instelling \"Uitgeschakeld\" mag niet worden gebruikt in productieomgevingen en alleen als het terugdraaien van gegevens met een paar seconden in geval van een crash of stroomuitval geen probleem is.", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "De TrueNAS-server moet lid zijn van Active Directory of minimaal één lokale SMB-gebruiker hebben voordat een SMB-share kan worden gemaakt", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 692013a5d18..b2ce896bf9b 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1490,6 +1490,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1713,6 +1714,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3053,7 +3055,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4587,7 +4588,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 925993fc354..9093f46846f 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -1484,6 +1484,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1707,6 +1708,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3050,7 +3052,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4605,7 +4606,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 21081977980..6c3530df531 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -761,6 +761,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", @@ -951,6 +952,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment Variable": "", "Environment Variables": "", "Error ({code})": "", @@ -3031,6 +3033,7 @@ "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", "TrueNAS URL": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -4690,7 +4693,6 @@ "Out": "Enviado", "Outbound Activity": "Atividade de saída", "Outbound Network": "Rede de saída", - "Overview": "Visão geral", "Owner": "Proprietário", "Owner:": "Proprietário:", "PULL": "PUXAR", @@ -5127,7 +5129,6 @@ "Transport Options": "Opções de transporte", "TrueNAS Controller": "Controlador TrueNAS", "TrueNAS Help": "Ajuda TrueNAS", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "O TrueNAS é um software gratuito e de código aberto, fornecido no estado em que se encontra, sem garantia.", "Tue": "Ter", "Tuesday": "Terça-feira", "Turn Off Service": "Desligue o Serviço", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 015b72ce364..03dcddfd72b 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -1010,6 +1010,7 @@ "Edit VM Snapshot": "", "Edit group": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", + "Edition": "", "Element": "", "Elements": "", "Email Options": "", @@ -1105,6 +1106,7 @@ "Enter the value for the environment variable.": "", "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", + "Enterprise": "", "Environment Variable": "", "Environment Variables": "", "Error ({code})": "", @@ -2048,7 +2050,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner Group": "", "PASSPHRASE": "", "POSIX": "", @@ -3132,7 +3133,7 @@ "TrueNAS Connect is disabled": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 7dc74a1310c..b32b483c826 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -682,6 +682,7 @@ "Edit TrueCloud Backup Task": "", "Edit group": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", + "Edition": "", "Element": "", "Elements": "", "Empty drive cage": "", @@ -733,6 +734,7 @@ "Enter the number of last kept backups.": "", "Enter the value for the environment variable.": "", "Enter zvol name to continue.": "", + "Enterprise": "", "Environment Variable": "", "Environment Variables": "", "Error ({code})": "", @@ -1992,6 +1994,7 @@ "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", "TrueNAS URL": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -4070,7 +4073,6 @@ "Outbound Network": "Вихідна мережа", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Замінює стандартну маску створення каталогу 0777, яка надає доступ для читання, запису та виконання каталогу для всіх.", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "Замінює типову маску створення файлу 0666, яка створює файли з доступом для читання та запису для всіх.", - "Overview": "Огляд", "Owner": "Власник", "Owner:": "Власник:", "PASSPHRASE": "ПАРОЛЬ", @@ -5003,7 +5005,6 @@ "TrueCommand Cloud Service has been deregistered.": "Хмарну службу TrueCommand було скасовано.", "TrueNAS Controller": "Контролер TrueNAS", "TrueNAS Help": "TrueNAS допомога", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS — це безкоштовне програмне забезпечення з відкритим кодом, яке надається без жодних гарантій .", "TrueNAS software versions do not match between storage controllers.": "Версії програмного забезпечення TrueNAS не збігаються між контролерами накопичувачів.", "Tue": "Вт", "Tuesday": "Вівторок", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index e55585e8716..88653c687ce 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -1539,6 +1539,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email": "", @@ -1762,6 +1763,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3105,7 +3107,6 @@ "Override Admin Email": "", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "", - "Overview": "", "Owner": "", "Owner Group": "", "Owner:": "", @@ -4660,7 +4661,7 @@ "TrueNAS Controller": "", "TrueNAS Help": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 0dce379fec8..7f6d610a6f1 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -46,6 +46,7 @@ "Drives List": "", "Edit App YAML": "", "Edit Docker Registry": "", + "Edition": "", "Enable General Purpose OS STIG compatibility mode": "", "Enable VNC": "", "Enable or disable NICs.": "", @@ -54,6 +55,7 @@ "Enable to apply default network configurations.": "", "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": "", "Expires On": "", "Expires on {date}": "", "Failed to configure certificate in system UI": "", @@ -144,6 +146,7 @@ "This password is only valid for one login within 24 hours and does not persist across reboots.": "", "TrueNAS Connect is configured": "", "TrueNAS Connect is disabled": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Truenas Connect Service": "", "Trusted Platform Module (TPM)": "", "URI": "", @@ -3192,7 +3195,6 @@ "Override Admin Email": "覆写管理员邮箱", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "覆盖0777的默认目录创建掩码,该掩码授予每个人对目录的读取,写入和执行访问权限。", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "覆盖0666的默认文件创建掩码,该掩码创建对所有人具有读写访问权限的文件。", - "Overview": "概述", "Owner": "所有者", "Owner Group": "所有者组", "Owner:": "所有者:", @@ -4720,7 +4722,6 @@ "TrueNAS Controller": "TrueNAS 控制器", "TrueNAS Help": "TrueNAS 帮助", "TrueNAS URL": "TrueNAS URL", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS 是免费且 开源软件,按原样提供且不附带任何保证。", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS 为 API 消费者(包括 WebUI)维护用户和组的缓存。这是一个便利的功能,但如果域中包含大量用户和组,或者缓存对域控制器产生过大负载,可以禁用该功能。", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS 建议将同步设置始终保持为默认的\"标准\"或增加到\"始终\"。在生产环境中不应使用\"禁用\"设置,仅在发生崩溃或断电时数据回滚几秒钟不是问题的情况下使用。", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "在创建 SMB 共享之前,TrueNAS 服务器必须加入 Active Directory 或至少拥有一个本地 SMB 用户", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 6a8e5e1ba6b..6a58efd8ac8 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -867,6 +867,7 @@ "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", + "Edition": "", "Element": "", "Elements": "", "Email Options": "", @@ -1063,6 +1064,7 @@ "Enter the version to roll back to.": "", "Enter zvol name to continue.": "", "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "", + "Enterprise": "", "Environment": "", "Environment Variable": "", "Environment Variables": "", @@ -3216,7 +3218,7 @@ "TrueNAS Connect is disabled": "", "TrueNAS Controller": "", "TrueNAS URL": "", - "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", + "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "", "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "", @@ -4827,7 +4829,6 @@ "Other": "其它", "Other Options": "其它選項", "Other Settings": "其他設定", - "Overview": "概觀", "Owner": "擁有者", "Passphrase": "複雜密碼", "Password": "密碼", diff --git a/src/assets/icons/custom/truenas-ce-badge-color.svg b/src/assets/icons/custom/truenas-ce-badge-color.svg new file mode 100644 index 00000000000..d3865ae020c --- /dev/null +++ b/src/assets/icons/custom/truenas-ce-badge-color.svg @@ -0,0 +1,6 @@ + + + + diff --git a/src/assets/icons/custom/truenas-ce-badge.svg b/src/assets/icons/custom/truenas-ce-badge.svg new file mode 100644 index 00000000000..c5127afc6ab --- /dev/null +++ b/src/assets/icons/custom/truenas-ce-badge.svg @@ -0,0 +1,6 @@ + + + + diff --git a/src/assets/icons/custom/truenas-enterprise-badge-color.svg b/src/assets/icons/custom/truenas-enterprise-badge-color.svg new file mode 100644 index 00000000000..39e50249a26 --- /dev/null +++ b/src/assets/icons/custom/truenas-enterprise-badge-color.svg @@ -0,0 +1,6 @@ + + + + diff --git a/src/assets/icons/custom/truenas-enterprise-badge.svg b/src/assets/icons/custom/truenas-enterprise-badge.svg new file mode 100644 index 00000000000..390a80f400a --- /dev/null +++ b/src/assets/icons/custom/truenas-enterprise-badge.svg @@ -0,0 +1,6 @@ + + + + diff --git a/src/assets/icons/custom/truenas-logo-ce-color.svg b/src/assets/icons/custom/truenas-logo-ce-color.svg new file mode 100644 index 00000000000..a3cb8ed494e --- /dev/null +++ b/src/assets/icons/custom/truenas-logo-ce-color.svg @@ -0,0 +1 @@ + diff --git a/src/assets/icons/custom/truenas-logo-ce.svg b/src/assets/icons/custom/truenas-logo-ce.svg new file mode 100644 index 00000000000..724b56daf41 --- /dev/null +++ b/src/assets/icons/custom/truenas-logo-ce.svg @@ -0,0 +1,4 @@ + + + diff --git a/src/assets/icons/custom/truenas-logo-color.svg b/src/assets/icons/custom/truenas-logo-color.svg new file mode 100644 index 00000000000..24380f6461a --- /dev/null +++ b/src/assets/icons/custom/truenas-logo-color.svg @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/assets/icons/custom/truenas-logo-enterprise-color.svg b/src/assets/icons/custom/truenas-logo-enterprise-color.svg new file mode 100644 index 00000000000..26fab2c60fd --- /dev/null +++ b/src/assets/icons/custom/truenas-logo-enterprise-color.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/src/assets/icons/custom/truenas-logo-enterprise.svg b/src/assets/icons/custom/truenas-logo-enterprise.svg new file mode 100644 index 00000000000..31011b02a0e --- /dev/null +++ b/src/assets/icons/custom/truenas-logo-enterprise.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/assets/icons/custom/truenas-logo-mark-color.svg b/src/assets/icons/custom/truenas-logo-mark-color.svg index 9de4befa5b1..e66c5ef4567 100644 --- a/src/assets/icons/custom/truenas-logo-mark-color.svg +++ b/src/assets/icons/custom/truenas-logo-mark-color.svg @@ -1,18 +1,7 @@ - - - - - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/src/assets/icons/custom/truenas-logo-mark.svg b/src/assets/icons/custom/truenas-logo-mark.svg index e67d13a0554..da4083b9fdd 100644 --- a/src/assets/icons/custom/truenas-logo-mark.svg +++ b/src/assets/icons/custom/truenas-logo-mark.svg @@ -1,3 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/src/assets/icons/custom/truenas-logo-type-color.svg b/src/assets/icons/custom/truenas-logo-type-color.svg index ee9cf38e2d1..ea6a9d7de35 100644 --- a/src/assets/icons/custom/truenas-logo-type-color.svg +++ b/src/assets/icons/custom/truenas-logo-type-color.svg @@ -1,4 +1,4 @@ - - - + + diff --git a/src/assets/icons/custom/truenas-logo-type.svg b/src/assets/icons/custom/truenas-logo-type.svg index c98c4081a75..2b2ba144cee 100644 --- a/src/assets/icons/custom/truenas-logo-type.svg +++ b/src/assets/icons/custom/truenas-logo-type.svg @@ -1,3 +1,4 @@ - - + + diff --git a/src/assets/icons/custom/truenas-logo.svg b/src/assets/icons/custom/truenas-logo.svg index 1d83a0f021f..724b56daf41 100644 --- a/src/assets/icons/custom/truenas-logo.svg +++ b/src/assets/icons/custom/truenas-logo.svg @@ -1 +1,4 @@ - + + + diff --git a/src/assets/icons/sprite-config.json b/src/assets/icons/sprite-config.json index a93c05023fa..64f743ae63b 100644 --- a/src/assets/icons/sprite-config.json +++ b/src/assets/icons/sprite-config.json @@ -1,3 +1,3 @@ { "iconUrl": "assets/icons/sprite.svg?v=7f6c829c05" -} \ No newline at end of file +} diff --git a/src/assets/icons/sprite.svg b/src/assets/icons/sprite.svg index c04ec046d36..b0fb37ebb2c 100644 --- a/src/assets/icons/sprite.svg +++ b/src/assets/icons/sprite.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/src/assets/styles/mixins/loader.scss b/src/assets/styles/mixins/loader.scss index e706b3ba72c..bef9fd3c0bf 100644 --- a/src/assets/styles/mixins/loader.scss +++ b/src/assets/styles/mixins/loader.scss @@ -4,21 +4,19 @@ @mixin background-logo-loader($zoom: 1) { &::after { animation: loading 2s linear infinite; - background: transparent url('assets/icons/custom/truenas-logo.svg') no-repeat center center; + background: transparent url('assets/icons/custom/truenas-logo-mark.svg') no-repeat center center; color: var(--fg2); content: ''; filter: invert(1); - height: 65px * $zoom; left: 50%; opacity: 0.1; position: absolute; top: 50%; transform: translate(-50%, -50%); - width: 300px * $zoom; + width: 100px * $zoom; - @media (max-width: $breakpoint-tablet) { - height: 65px * $zoom * 0.75; - width: 300px * $zoom * 0.75; + @media (max-width: $breakpoint-tablet) { + width: 100px * $zoom * 0.75; } } } diff --git a/src/assets/styles/other/_fn-styles.scss b/src/assets/styles/other/_fn-styles.scss index 8be8f18b6d2..a2d4f1248a5 100644 --- a/src/assets/styles/other/_fn-styles.scss +++ b/src/assets/styles/other/_fn-styles.scss @@ -8,7 +8,8 @@ /*---- Globals -----*/ html { - font-size: 87.5% /* 14px */; + font-size: 87.5% + /* 14px */; } html, @@ -242,8 +243,10 @@ body * { /*---- Main Sidenav -----*/ .sidebar-panel.mat-sidenav { box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - min-width: var(--sidenav-width); /*15rem;*/ - width: var(--sidenav-width); /*15rem;*/ + min-width: var(--sidenav-width); + /*15rem;*/ + width: var(--sidenav-width); + /*15rem;*/ } .sidebar-panel.mat-sidenav .navigation-hold { @@ -275,7 +278,7 @@ body * { background: transparent; } -.sidebar-list-item.open > .mat-mdc-list-item-unscoped-content { +.sidebar-list-item.open>.mat-mdc-list-item-unscoped-content { background: rgba(0, 0, 0, 0.03); } @@ -303,7 +306,7 @@ body * { z-index: 1; } -.sidebar-panel.mat-sidenav .mat-mdc-list-item-unscoped-content > a, +.sidebar-panel.mat-sidenav .mat-mdc-list-item-unscoped-content>a, .slide-in-nav-item a { align-items: center; box-direction: normal; @@ -324,7 +327,7 @@ body * { } .sidebar-panel.mat-sidenav { - .sidebar-list-item.open > .mat-mdc-list-item-unscoped-content > .sub-menu { + .sidebar-list-item.open>.mat-mdc-list-item-unscoped-content>.sub-menu { max-height: 1000px; } @@ -362,13 +365,13 @@ body * { width: 100% !important; } - .sidebar-list-item > .mat-mdc-list-item-unscoped-content > a { + .sidebar-list-item>.mat-mdc-list-item-unscoped-content>a { padding: 0; position: relative; } .navigation-hold, - .sidebar-list-item > .mat-mdc-list-item-unscoped-content { + .sidebar-list-item>.mat-mdc-list-item-unscoped-content { overflow: visible !important; } @@ -381,16 +384,8 @@ body * { } } - .branding { + ix-truenas-logo { max-width: 48px; - - .app-logo-text { - display: none; - } - - .app-logo { - margin: 0; - } } .sidebar-list-item.open .sub-menu { @@ -410,11 +405,11 @@ body * { padding-left: 1rem; } - .mat-nav-list > div > .sidebar-list-item a .ix-icon { + .mat-nav-list>div>.sidebar-list-item a .ix-icon { margin: 0; } - .mat-nav-list > div > .sidebar-list-item a .menu-caret { + .mat-nav-list>div>.sidebar-list-item a .menu-caret { font-size: medium; left: 33px; position: absolute; diff --git a/src/index.html b/src/index.html index d2011d0a1fb..8e97a0f7fc6 100644 --- a/src/index.html +++ b/src/index.html @@ -42,42 +42,9 @@
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
+ +