From 299cb3b199473381f730ad5c4e226e30c6b5e0bc Mon Sep 17 00:00:00 2001 From: Evgeny Stepanovych Date: Wed, 3 Jul 2024 17:13:42 +0200 Subject: [PATCH 1/7] NAS-129883: Do not show Delete button for immutable users (#10277) --- .../user-details-row.component.html | 19 ++++++++++--------- .../user-details-row.component.spec.ts | 7 +++++++ .../user-details-row.component.ts | 5 +++-- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/src/app/pages/account/users/user-details-row/user-details-row.component.html b/src/app/pages/account/users/user-details-row/user-details-row.component.html index ffdef688038..6209748fdf3 100644 --- a/src/app/pages/account/users/user-details-row/user-details-row.component.html +++ b/src/app/pages/account/users/user-details-row/user-details-row.component.html @@ -9,15 +9,16 @@ - + @if (!user().immutable) { + + } -
- -
- - - - - - - - - - - - - - - - - - {{ 'Name' | translate }} - - {{ element.name }} - + @if (isLoading()) { +
+ +
+ } @else { + +
{{ serviceName() }}
+
+ @switch (state()) { + @case (DirectoryServiceState.Healthy) { + + } + @case (DirectoryServiceState.Faulted) { + + } + @case (DirectoryServiceState.Leaving) { + + } + @case (DirectoryServiceState.Joining) { + + } + @case (DirectoryServiceState.Disabled) { + + } + } - - - {{ 'State' | translate }} - - {{ element.state }} - - - - + {{ state() | mapValue: directoryServiceStateLabels | translate }} +
+
+ } diff --git a/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.scss b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.scss index 0637e2cca4c..ac1167cdc49 100644 --- a/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.scss +++ b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.scss @@ -1,14 +1,14 @@ -.dir-service-monitor-dialog { +.dialog { + padding: 0; width: 350px; } .header { background: var(--bg2); border-bottom: 1px solid var(--lines); - height: 42px; - margin-left: -24px; - margin-right: -24px; - padding: 4px 8px 12px 24px; + display: flex; + justify-content: space-between; + padding: 11px 6px 7px 16px; } .header-actions { @@ -17,48 +17,46 @@ justify-content: flex-end; } -.mat-mdc-table { - background: var(--bg2); - margin-left: -24px; - margin-right: -24px; +.status-row { + align-items: center; + cursor: pointer; + display: flex; + font-size: 13px; + justify-content: space-between; + padding: 11px 18px; - .mat-header-row { - display: none !important; + &:hover { + background: var(--hover-bg); } - .mat-cell, - .mat-footer-cell, - .mat-header-cell { - color: var(--fg1); + .state { + align-items: center; + display: flex; + font-size: 14px; + gap: 8px; } -} - -.mat-icon.state-healthy { - color: var(--green); -} -.mat-icon.state-faulted { - color: var(--red); -} - -.mat-icon.state-joining { - color: var(--primary); -} + .icon { + &.state-healthy { + color: var(--green); + } -.mat-icon.state-leaving { - color: var(--accent); -} + &.state-faulted { + color: var(--red); + } -.mat-icon.state-disabled { - color: var(--grey); -} + &.state-joining { + color: var(--primary); + } -.table-row:hover { - background: var(--hover-bg); -} + &.state-leaving { + color: var(--accent); + } -.clickable { - cursor: pointer; + &.state-disabled { + color: var(--grey); + } + } } .spinner-wrapper { diff --git a/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.spec.ts b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.spec.ts new file mode 100644 index 00000000000..968d996ff55 --- /dev/null +++ b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.spec.ts @@ -0,0 +1,53 @@ +import { HarnessLoader } from '@angular/cdk/testing'; +import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed'; +import { createComponentFactory, Spectator } from '@ngneat/spectator/jest'; +import { mockCall, mockWebSocket } from 'app/core/testing/utils/mock-websocket.utils'; +import { DirectoryServiceState } from 'app/enums/directory-service-state.enum'; +import { IxIconHarness } from 'app/modules/ix-icon/ix-icon.harness'; +import { + DirectoryServicesMonitorComponent, +} from 'app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component'; +import { MapValuePipe } from 'app/modules/pipes/map-value/map-value.pipe'; +import { WebSocketService } from 'app/services/ws.service'; + +describe('DirectoryServicesMonitorComponent', () => { + let spectator: Spectator; + let loader: HarnessLoader; + const createComponent = createComponentFactory({ + component: DirectoryServicesMonitorComponent, + imports: [ + MapValuePipe, + ], + providers: [ + mockWebSocket([ + mockCall('directoryservices.get_state', { + activedirectory: DirectoryServiceState.Disabled, + ldap: DirectoryServiceState.Healthy, + }), + ]), + ], + }); + + beforeEach(() => { + spectator = createComponent(); + loader = TestbedHarnessEnvironment.loader(spectator.fixture); + }); + + it('loads directory services status on component initialization', () => { + expect(spectator.inject(WebSocketService).call).toHaveBeenCalledWith('directoryservices.get_state'); + }); + + it('shows status of a non-disabled directory service', () => { + expect(spectator.query('.status-row')).toHaveText('LDAP Healthy'); + + const statusIcon = spectator.query('.status-row .icon'); + expect(statusIcon).toHaveClass('state-healthy'); + }); + + it('updates directory services status when refresh button is pressed', async () => { + const refreshButton = await loader.getHarness(IxIconHarness.with({ name: 'refresh' })); + await refreshButton.click(); + + expect(spectator.inject(WebSocketService).call).toHaveBeenLastCalledWith('directoryservices.get_state'); + }); +}); diff --git a/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.ts b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.ts index 3bd689b922d..1410912a963 100644 --- a/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.ts +++ b/src/app/modules/layout/components/topbar/directory-services-indicator/directory-services-monitor/directory-services-monitor.component.ts @@ -1,20 +1,13 @@ import { - ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit, + ChangeDetectionStrategy, Component, OnInit, + signal, } from '@angular/core'; -import { MatDialogRef } from '@angular/material/dialog'; -import { Router } from '@angular/router'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; -import { take } from 'rxjs/operators'; -import { DirectoryServiceState } from 'app/enums/directory-service-state.enum'; -import { Role } from 'app/enums/role.enum'; +import { finalize } from 'rxjs'; +import { DirectoryServiceState, directoryServiceStateLabels } from 'app/enums/directory-service-state.enum'; +import { ErrorHandlerService } from 'app/services/error-handler.service'; import { WebSocketService } from 'app/services/ws.service'; -interface DirectoryServicesMonitorRow { - name: string; - state: DirectoryServiceState; - id: string; -} - @UntilDestroy() @Component({ selector: 'ix-directory-services-monitor', @@ -23,19 +16,16 @@ interface DirectoryServicesMonitorRow { changeDetection: ChangeDetectionStrategy.OnPush, }) export class DirectoryServicesMonitorComponent implements OnInit { - readonly requiredRoles = [Role.FullAdmin]; - - displayedColumns: string[] = ['icon', 'name', 'state']; - dataSource: DirectoryServicesMonitorRow[] = []; - isLoading = false; + protected readonly isLoading = signal(false); + protected readonly serviceName = signal(''); + protected readonly state = signal(null); - readonly DirectoryServiceState = DirectoryServiceState; + protected readonly DirectoryServiceState = DirectoryServiceState; + protected readonly directoryServiceStateLabels = directoryServiceStateLabels; constructor( private ws: WebSocketService, - private router: Router, - private dialogRef: MatDialogRef, - private cdr: ChangeDetectorRef, + private errorHandler: ErrorHandlerService, ) {} ngOnInit(): void { @@ -43,19 +33,21 @@ export class DirectoryServicesMonitorComponent implements OnInit { } getStatus(): void { - this.isLoading = true; - this.ws.call('directoryservices.get_state').pipe(take(1), untilDestroyed(this)).subscribe((state) => { - this.isLoading = false; - this.dataSource = [ - { name: 'Active Directory', state: state.activedirectory, id: 'activedirectory' }, - { name: 'LDAP', state: state.ldap, id: 'ldap' }, - ]; - this.cdr.markForCheck(); - }); - } - - goTo(el: string): void { - this.dialogRef.close(); - this.router.navigate([`/directoryservice/${el}`]); + this.isLoading.set(true); + this.ws.call('directoryservices.get_state') + .pipe( + this.errorHandler.catchError(), + finalize(() => this.isLoading.set(false)), + untilDestroyed(this), + ) + .subscribe((state) => { + if (state.ldap !== DirectoryServiceState.Disabled) { + this.serviceName.set('LDAP'); + this.state.set(state.ldap); + } else { + this.serviceName.set('Active Directory'); + this.state.set(state.activedirectory); + } + }); } } diff --git a/src/app/pages/unauthorized/unauthorized.module.ts b/src/app/pages/unauthorized/unauthorized.module.ts deleted file mode 100644 index 4f486ad75ec..00000000000 --- a/src/app/pages/unauthorized/unauthorized.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { NgModule } from '@angular/core'; -import { TranslateModule } from '@ngx-translate/core'; -import { IxIconModule } from 'app/modules/ix-icon/ix-icon.module'; -import { UnauthorizedComponent } from 'app/pages/unauthorized/unauthorized/unauthorized.component'; -import { routing } from 'app/pages/unauthorized/unauthorized.routing'; - -@NgModule({ - declarations: [ - UnauthorizedComponent, - ], - imports: [ - TranslateModule, - IxIconModule, - routing, - ], -}) -export class UnauthorizedModule {} diff --git a/src/app/pages/unauthorized/unauthorized.routing.ts b/src/app/pages/unauthorized/unauthorized.routing.ts deleted file mode 100644 index b7cd03ebfed..00000000000 --- a/src/app/pages/unauthorized/unauthorized.routing.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { ModuleWithProviders } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; -import { marker as T } from '@biesbjerg/ngx-translate-extract-marker'; -import { UnauthorizedComponent } from 'app/pages/unauthorized/unauthorized/unauthorized.component'; - -export const routes: Routes = [ - { - path: '', - data: { title: T('Unauthorized Access'), breadcrumb: null }, - component: UnauthorizedComponent, - }, -]; -export const routing: ModuleWithProviders = RouterModule.forChild(routes); diff --git a/src/app/pages/unauthorized/unauthorized/unauthorized.component.html b/src/app/pages/unauthorized/unauthorized/unauthorized.component.html deleted file mode 100644 index ea50dbc1913..00000000000 --- a/src/app/pages/unauthorized/unauthorized/unauthorized.component.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
- -
-

{{ 'Not Allowed' | translate }}

-

{{ 'You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.' | translate }}

-
- -
\ No newline at end of file diff --git a/src/app/pages/unauthorized/unauthorized/unauthorized.component.scss b/src/app/pages/unauthorized/unauthorized/unauthorized.component.scss deleted file mode 100644 index de762e12d20..00000000000 --- a/src/app/pages/unauthorized/unauthorized/unauthorized.component.scss +++ /dev/null @@ -1,37 +0,0 @@ -.container { - align-items: center; - color: white; - display: flex; - height: 70%; - justify-content: center; -} - -.wrapper { - align-items: left; - display: flex; - flex-direction: column; - height: 100%; - justify-content: center; - width: 450px; - - p { - font-size: 0.875rem; - margin-bottom: 10px; - } -} - -.icon { - align-items: center; - display: flex; - justify-content: center; - width: 100%; - - .mat-icon { - color: var(--fg2); - font-size: 130px; - height: 130px; - margin-bottom: 20px; - opacity: 0.1; - width: auto; - } -} diff --git a/src/app/pages/unauthorized/unauthorized/unauthorized.component.ts b/src/app/pages/unauthorized/unauthorized/unauthorized.component.ts deleted file mode 100644 index aa07df35bf1..00000000000 --- a/src/app/pages/unauthorized/unauthorized/unauthorized.component.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { ChangeDetectionStrategy, Component } from '@angular/core'; - -@Component({ - selector: 'ix-unauthorized', - templateUrl: './unauthorized.component.html', - styleUrls: ['./unauthorized.component.scss'], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class UnauthorizedComponent { } diff --git a/src/app/views/sessions/signin/store/signin.store.ts b/src/app/views/sessions/signin/store/signin.store.ts index 3d06448fcfa..2c0cf861741 100644 --- a/src/app/views/sessions/signin/store/signin.store.ts +++ b/src/app/views/sessions/signin/store/signin.store.ts @@ -170,7 +170,7 @@ export class SigninStore extends ComponentStore { getRedirectUrl(): string { const redirectUrl = this.window.sessionStorage.getItem('redirectUrl'); - if (redirectUrl && !redirectUrl.endsWith('/errors/unauthorized')) { + if (redirectUrl) { return redirectUrl; } diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 10672169ef5..89bba900e5c 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1773,6 +1773,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -1995,6 +1996,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2080,6 +2082,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2512,7 +2515,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4047,7 +4049,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4388,7 +4389,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 45a2cc33d5b..3046c3811c4 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1281,6 +1281,7 @@ "HTTPS Redirect": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide error output (stderr) from the command. When unset, any error output is mailed to the user account cron used to run the command.": "", @@ -1467,6 +1468,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -1528,6 +1530,7 @@ "Leave Feedback": "", "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", + "Leaving": "", "Legacy": "", "Legacy AFP Compatibility": "", "Legacy NetBIOS name server. Advertises the SMB service NetBIOS Name. Can be required for legacy SMB1 clients to discover the server. When advertised, the server appears in Network Neighborhood).": "", @@ -3062,7 +3065,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -3330,7 +3332,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have successfully added credentials.": "", @@ -4447,7 +4448,6 @@ "No warnings": "Keine Warnungen", "Node IP": "Knoten-IP", "None": "Keiner", - "Not Allowed": "Nicht erlaubt", "Not Available": "Nicht verfügbar", "Not Set": "Nicht festgelegt", "Not Shared": "Nicht freigegeben", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 7eb26afe9ce..4d179859859 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -845,6 +845,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide from MSR": "", @@ -974,6 +975,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "KDC": "", "KMIP": "", "KMIP Read": "", @@ -1030,6 +1032,7 @@ "Layout": "", "Layouts": "", "Leave Feedback": "", + "Leaving": "", "Legacy AFP Compatibility": "", "Legacy feature.

Allows the share to host user home directories. Each user is given a personal home directory when connecting to the share which is not accessible by other users. This allows for a personal, dynamic share. Only one share can be used as the home share.": "", "Legacy feature.

Privileges are the same as the guest account. Guest access is disabled by default in Windows 10 version 1709 and Windows Server version 1903. Additional client-side configuration is required to provide guest access to these clients.

MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "", @@ -1314,7 +1317,6 @@ "Nodes Virtual IP states do not agree.": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", @@ -2187,7 +2189,6 @@ "Unable to retrieve Available Applications": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -2394,7 +2395,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have successfully added credentials.": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 34196adea8c..6655f899c1b 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1844,6 +1844,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2093,6 +2094,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2186,6 +2188,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2636,7 +2639,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", @@ -4256,7 +4258,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4593,7 +4594,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 49c6b3ee5b6..4290634cd80 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -219,6 +219,7 @@ "HTTPS Port": "", "HTTPS Redirect": "", "Has Allow List": "", + "Healthy": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Model": "", @@ -274,6 +275,7 @@ "Jira": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "KMIP": "", "KMIP Read": "", "KMIP Write": "", @@ -295,6 +297,7 @@ "Last Scrub Date": "", "Layout": "", "Layouts": "", + "Leaving": "", "License Update": "", "Licensed Serials": "", "Limit Pool To A Single Enclosure": "", @@ -405,7 +408,6 @@ "No logs available": "", "No results found in {section}": "", "No vdev info for this disk": "", - "Not Allowed": "", "Not Shared": "", "Notifications": "", "Num Pending Deletes": "", @@ -4626,7 +4628,6 @@ "Unable to terminate processes which are using this pool: ": "Impossible de mettre fin aux processus qui utilisent ce volume: ", "Unassigned": "Non attribué", "Unassigned Disks": "Disques non attribués", - "Unauthorized Access": "Accès non autorisé", "Unavailable": "Indisponible", "Unencrypted": "Non chiffré", "Unhealthy": "Défectueux", @@ -4946,7 +4947,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "Vous pouvez rejoindre la Newsletter TrueNAS pour des mises à jour mensuelles et les derniers développements.", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "Vous pouvez rechercher à la fois des groupes locaux et des groupes d'Active Directory. Appuyez sur ENTER pour séparer les entrées.", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "Vous pouvez rechercher à la fois des utilisateurs locaux et des utilisateurs d'Active Directory. Appuyez sur ENTRÉE pour séparer les entrées.", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "Vous n'avez pas les autorisations pour accéder aux informations demandées. Si vous pensez qu'il s'agit d'une erreur, veuillez contacter votre administrateur système.", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "Vous avez modifié l'un des paramètres nécessitant la réinitialisation du cluster Kubernetes. Veuillez noter que cela supprimera les applications installées et leurs données.", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "Vous avez masqué tous vos widgets disponibles. Utilisez le formulaire de configuration du tableau de bord pour ajouter des widgets.", "You have left the domain.": "Vous avez quitté le domaine.", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 67fa3cccb2b..5ca7a5ece1a 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1769,6 +1769,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2028,6 +2029,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2122,6 +2124,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2593,7 +2596,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4264,7 +4266,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4630,7 +4631,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index f1ba50dddac..d2aace4e442 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1676,6 +1676,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -1918,6 +1919,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2009,6 +2011,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2459,7 +2462,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -3959,7 +3961,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4300,7 +4301,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 7e8baa63e4b..b800cc6ca3d 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1496,6 +1496,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -1755,6 +1756,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -1849,6 +1851,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2320,7 +2323,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -3991,7 +3993,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4357,7 +4358,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 0d819085776..61055f1993d 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -1979,6 +1979,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2238,6 +2239,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2332,6 +2334,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2803,7 +2806,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4474,7 +4476,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4835,7 +4836,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have successfully added credentials.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 4eee3465a92..1eb928e69d5 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -230,6 +230,7 @@ "HTTP Port": "", "HTTPS Port": "", "HTTPS Redirect": "", + "Healthy": "", "Home Widgets": "", "Hostname Database": "", "IP of 1st Redfish management interface.": "", @@ -253,6 +254,7 @@ "Jira": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Keep Last": "", "Kerberos Keytabs": "", "Kernel Parameters": "", @@ -264,6 +266,7 @@ "Lan": "", "Last Scrub Date": "", "Layouts": "", + "Leaving": "", "License Update": "", "Local Groups Name": "", "Logoff": "", @@ -3044,7 +3047,6 @@ "None requested": "Geen gevraagd", "Normal": "Normaal", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "Normaal VDEV-type, gebruikt voor primaire opslagbewerkingen. ZFS-pools hebben altijd minimaal één DATA VDEV.", - "Not Allowed": "Niet toegestaan", "Not Available": "Is niet beschikbaar", "Not Set": "Niet ingesteld", "Not Shared": "Niet geshared", @@ -4572,7 +4574,6 @@ "Unable to terminate processes which are using this pool: ": "Kan processen die deze pool gebruiken niet beëindigen: ", "Unassigned": "Niet toegewezen", "Unassigned Disks": "Niet toegewezen schijven", - "Unauthorized Access": "Onbevoegde toegang", "Unavailable": "Niet-beschikbaar", "Unencrypted": "Niet-versleuteld", "Unhealthy": "Ongezond", @@ -4905,7 +4906,6 @@ "You are using an insecure connection. Switch to HTTPS for secure access.": "Je gebruikt een onveilige verbinding. Schakel over naar HTTPS voor beveiligde toegang.", "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "Je kunt deelnemen aan de TrueNAS-nieuwsbrief voor maandelijkse updates en de laatste ontwikkelingen.", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "Je kunt zowel naar lokale gebruikers zoeken als naar gebruikers uit Active Directory. Druk op ENTER om items te scheiden.", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "U hebt geen toestemming om toegang te krijgen tot de gevraagde informatie. Als u denkt dat dit een vergissing was, neem dan contact op met uw systeembeheerder.", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "Je hebt een van de instellingen gewijzigd waarvoor Kubernetes-cluster opnieuw moet worden geïnitialiseerd. Houd er rekening mee dat hiermee geïnstalleerde apps en hun data worden verwijderd.", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "Je hebt al jouw beschikbare widgets verborgen. Gebruik het dashboardconfiguratieformulier om widgets toe te voegen.", "You have left the domain.": "Je hebt het domein verlaten.", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 27a60517a35..7195796e40f 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1924,6 +1924,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2182,6 +2183,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2276,6 +2278,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2745,7 +2748,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4393,7 +4395,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4757,7 +4758,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 04da573561c..1440b1f1850 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -1923,6 +1923,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2181,6 +2182,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2275,6 +2277,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2746,7 +2749,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4417,7 +4419,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4783,7 +4784,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 7d9630a9984..f40c3b5a49b 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -820,6 +820,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide Standard Error": "", "Hide Standard Output": "", @@ -984,6 +985,7 @@ "Jira": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "KDC": "", "KMIP": "", "KMIP Key Status": "", @@ -1048,6 +1050,7 @@ "Leave at the default of 512 unless the initiator requires a different block size.": "", "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2654,7 +2657,6 @@ "You are trying to open:
\n{url}

\nBecause HTTP to HTTPS redirect is enabled in settings your browser will force HTTPS connection for this URL.
\nThis may create issues if app does not support secure connections.
\n
\nYou can try opening app url in an incognito mode.
\nAlternatively you can disable redirect in Settings, clear browser cache and try again.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", @@ -4210,7 +4212,6 @@ "None": "Nenhum", "None requested": "Nenhum solicitado", "Normal": "Normal", - "Not Allowed": "Não permitido", "Not Available": "Não disponível", "Not Shared": "Nenha partilha", "Notes about this disk.": "Notas sobre este disco", @@ -4809,7 +4810,6 @@ "UPS Mode": "Modo UPS", "Unassigned": "Não atribuído", "Unassigned Disks": "Discos não atribuídos", - "Unauthorized Access": "Acesso não autorizado", "Unavailable": "Indisponível", "Unencrypted": "Não encriptado", "Unhealthy": "Pouco saudável", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 7b834778aba..5a3b1431394 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -1064,6 +1064,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide from MSR": "", "High Bandwidth (16)": "", @@ -1195,6 +1196,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "KDC": "", "KMIP": "", "KMIP Read": "", @@ -1251,6 +1253,7 @@ "Layout": "", "Layouts": "", "Leave Feedback": "", + "Leaving": "", "Legacy AFP Compatibility": "", "Legacy feature.

Allows the share to host user home directories. Each user is given a personal home directory when connecting to the share which is not accessible by other users. This allows for a personal, dynamic share. Only one share can be used as the home share.": "", "Legacy feature.

Privileges are the same as the guest account. Guest access is disabled by default in Windows 10 version 1709 and Windows Server version 1903. Additional client-side configuration is required to provide guest access to these clients.

MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "", @@ -1576,7 +1579,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Set": "", "Not Shared": "", "Not enough free space. Maximum available: {space}": "", @@ -2642,7 +2644,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unhealthy": "", "Unit": "", @@ -2886,7 +2887,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have successfully added credentials.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index fd4e1b27524..c3bda0a9432 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -504,6 +504,7 @@ "HTTPS Port": "", "HTTPS Redirect": "", "Has Allow List": "", + "Healthy": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Mounts": "", @@ -570,6 +571,7 @@ "Jira": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "KMIP": "", "KMIP Read": "", "KMIP Write": "", @@ -602,6 +604,7 @@ "Layout": "", "Layouts": "", "Leave Feedback": "", + "Leaving": "", "Legacy feature.

Allows the share to host user home directories. Each user is given a personal home directory when connecting to the share which is not accessible by other users. This allows for a personal, dynamic share. Only one share can be used as the home share.": "", "Legacy feature.

Privileges are the same as the guest account. Guest access is disabled by default in Windows 10 version 1709 and Windows Server version 1903. Additional client-side configuration is required to provide guest access to these clients.

MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "", "License Update": "", @@ -748,7 +751,6 @@ "No vdev info for this disk": "", "No warnings": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Shared": "", "Notifications": "", "Num Pending Deletes": "", @@ -1153,7 +1155,6 @@ "UPS Utilization": "", "URI of the ACME Server Directory. Choose a pre configured URI": "", "URI of the ACME Server Directory. Enter a custom URI.": "", - "Unauthorized Access": "", "Unix Socket": "", "Unlink": "", "Unlock Pool": "", @@ -1241,7 +1242,6 @@ "Yandex": "", "Yesterday": "", "You are using an insecure connection. Switch to HTTPS for secure access.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You may enter a specific IP address (e.g., 192.168.1.1) for individual access, or use an IP address with a subnet mask (e.g., 192.168.1.0/24) to define a range of addresses.": "", "Your dashboard is currently empty!": "", "ZFS L2ARC read-cache that can be used with fast devices to accelerate read operations.": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 79f399c2372..15f9da8479a 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -1985,6 +1985,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Help": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", @@ -2244,6 +2245,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -2338,6 +2340,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy": "", "Legacy AFP Compatibility": "", @@ -2809,7 +2812,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -4480,7 +4482,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -4846,7 +4847,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 9ecda10d61b..3da9b1a9020 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -248,6 +248,7 @@ "HTTP Port": "", "HTTPS Port": "", "HTTPS Redirect": "", + "Healthy": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Mounts": "", @@ -282,6 +283,7 @@ "Jira": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Keep Last": "", "Kerberos Keytabs": "", "Kernel Parameters": "", @@ -296,6 +298,7 @@ "Last Resilver": "", "Last Scrub Date": "", "Layouts": "", + "Leaving": "", "Legacy feature.

Privileges are the same as the guest account. Guest access is disabled by default in Windows 10 version 1709 and Windows Server version 1903. Additional client-side configuration is required to provide guest access to these clients.

MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "", "License Update": "", "Limit Pool To A Single Enclosure": "", @@ -3115,7 +3118,6 @@ "None requested": "没有需求", "Normal": "正常", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "普通 VDEV 类型,用于主要存储操作。ZFS 池始终至少有一个数据 VDEV。", - "Not Allowed": "不允许", "Not Available": "无法使用", "Not Set": "没有设置", "Not Shared": "未分享", @@ -4614,7 +4616,6 @@ "Unable to terminate processes which are using this pool: ": "无法终止正在使用此池的进程:", "Unassigned": "未分配", "Unassigned Disks": "未分配的磁盘", - "Unauthorized Access": "未经授权的访问", "Unavailable": "不可用", "Unencrypted": "未加密", "Unhealthy": "不健康", @@ -4944,7 +4945,6 @@ "You are using an insecure connection. Switch to HTTPS for secure access.": "您正在使用不安全的连接。切换到 HTTPS 以进行安全访问。", "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "您可以加入 TrueNAS Newsletter 以获取每月更新和最新进展。", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "您既可以搜索本地用户,也可以搜索 Active Directory 中的用户。按 ENTER 键分隔条目。", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "您没有访问所请求信息的权限。如果您认为这是一个错误,请联系您的系统管理员。", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "您已更改需要 Kubernetes 集群重新初始化的设置之一。请注意,这将删除已安装的应用程序及其数据。", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "您已经隐藏了所有可用的小部件。使用仪表板配置表单添加小部件。", "You have left the domain.": "您已离开域。", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 3f0741ee655..4629e26eca8 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1578,6 +1578,7 @@ "Hardware": "", "Hardware Disk Encryption": "", "Has Allow List": "", + "Healthy": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide Extra Columns": "", @@ -1785,6 +1786,7 @@ "Jobs": "", "Jobs History": "", "Jobs in progress": "", + "Joining": "", "Jul": "", "Jun": "", "KDC": "", @@ -1868,6 +1870,7 @@ "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "", "Leave empty for default (OpsGenie API)": "", "Leave empty or select number of existing portal to use.": "", + "Leaving": "", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "", "Legacy AFP Compatibility": "", "Legacy NetBIOS name server. Advertises the SMB service NetBIOS Name. Can be required for legacy SMB1 clients to discover the server. When advertised, the server appears in Network Neighborhood).": "", @@ -2261,7 +2264,6 @@ "None requested": "", "Normal": "", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", - "Not Allowed": "", "Not Available": "", "Not Set": "", "Not Shared": "", @@ -3664,7 +3666,6 @@ "Unable to terminate processes which are using this pool: ": "", "Unassigned": "", "Unassigned Disks": "", - "Unauthorized Access": "", "Unavailable": "", "Unencrypted": "", "Unhealthy": "", @@ -3965,7 +3966,6 @@ "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "", "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", - "You do not have the permissions to access the requested information. If you think this was a mistake, please contact your system administrator.": "", "You have changed one of the settings that require Kubernetes cluster re-initialization. Please be aware that this will delete installed apps and their data.": "", "You have hidden all of your available widgets. Use the dashboard configuration form to add widgets.": "", "You have left the domain.": "", diff --git a/tsconfig.strictNullChecks.json b/tsconfig.strictNullChecks.json index 4dc4ee95bc9..24f32a27e15 100644 --- a/tsconfig.strictNullChecks.json +++ b/tsconfig.strictNullChecks.json @@ -706,8 +706,6 @@ "./src/app/pages/system/old-view-enclosure/interfaces/theme-changed-event.interface.ts", "./src/app/pages/system/old-view-enclosure/interfaces/view.config.ts", "./src/app/pages/two-factor-auth/components/two-factor/qr-viewer/qr-viewer.component.ts", - "./src/app/pages/unauthorized/unauthorized.routing.ts", - "./src/app/pages/unauthorized/unauthorized/unauthorized.component.ts", "./src/app/pages/vm/devices/device-list/device-details/device-details.component.spec.ts", "./src/app/pages/vm/devices/device-list/device-details/device-details.component.ts", "./src/app/pages/vm/utils/by-vm-pci-slots.spec.ts", From 68f82fccc1d50ac5d303c86a5d77f2bab17f5f54 Mon Sep 17 00:00:00 2001 From: Alex Karpov Date: Wed, 3 Jul 2024 23:30:43 +0300 Subject: [PATCH 4/7] NAS-129824: Global Search | Accessibility Improvements (#10273) --- .../global-search-results.component.html | 2 +- .../groups/group-list/group-list.elements.ts | 4 +- .../privilege-list/privilege-list.elements.ts | 2 +- .../users/user-list/user-list.elements.ts | 4 +- .../cloud-credentials-card.elements.ts | 3 +- .../ssh-connection-card.elements.ts | 4 +- .../ssh-keypair-card.elements.ts | 3 +- .../acme-dns-authenticator-list.elements.ts | 3 +- .../certificate-authority-list.elements.ts | 3 +- .../certificate-list.elements.ts | 3 +- .../csr-list/csr-list.elements.ts | 3 +- .../cloud-backup-list.elements.ts | 3 +- .../cloudsync-list/cloudsync-list.elements.ts | 3 +- .../replication-list.elements.ts | 3 +- .../rsync-task-list.elements.ts | 3 +- .../scrub-list/scrub-list.elements.ts | 3 +- .../smart-task-list.elements.ts | 2 +- .../snapshot-task-list.elements.ts | 3 +- .../idmap-list/idmap-list.elements.ts | 3 +- .../kerberos-keytabs-list.elements.ts | 3 +- .../kerberos-realms-list.elements.ts | 3 +- .../static-routes-card.elements.ts | 7 +- .../reporting-exporters-list.elements.ts | 3 +- .../cron/cron-card/cron-card.elements.ts | 3 +- .../init-shutdown-card.elements.ts | 3 +- .../sysctl-card/sysctl-card.elements.ts | 3 +- .../alert-service-list.elements.ts | 3 +- .../email/email-card/email-card.elements.ts | 4 +- .../ntp-server-card.elements.ts | 3 +- src/app/pages/vm/vm-list/vm-list.elements.ts | 3 +- src/assets/i18n/af.json | 1 + src/assets/i18n/ar.json | 1 + src/assets/i18n/ast.json | 1 + src/assets/i18n/az.json | 1 + src/assets/i18n/be.json | 1 + src/assets/i18n/bg.json | 1 + src/assets/i18n/bn.json | 1 + src/assets/i18n/br.json | 1 + src/assets/i18n/bs.json | 1 + src/assets/i18n/ca.json | 1 + src/assets/i18n/cs.json | 1 + src/assets/i18n/cy.json | 1 + src/assets/i18n/da.json | 1 + src/assets/i18n/de.json | 1 + src/assets/i18n/dsb.json | 1 + src/assets/i18n/el.json | 1 + src/assets/i18n/en-au.json | 1 + src/assets/i18n/en-gb.json | 1 + src/assets/i18n/en.json | 1 + src/assets/i18n/eo.json | 1 + src/assets/i18n/es-ar.json | 1 + src/assets/i18n/es-co.json | 1 + src/assets/i18n/es-mx.json | 1 + src/assets/i18n/es-ni.json | 1 + src/assets/i18n/es-ve.json | 1 + src/assets/i18n/es.json | 1 + src/assets/i18n/et.json | 1 + src/assets/i18n/eu.json | 1 + src/assets/i18n/fa.json | 1 + src/assets/i18n/fi.json | 1 + src/assets/i18n/fr.json | 1 + src/assets/i18n/fy.json | 1 + src/assets/i18n/ga.json | 1 + src/assets/i18n/gd.json | 1 + src/assets/i18n/gl.json | 1 + src/assets/i18n/he.json | 1 + src/assets/i18n/hi.json | 1 + src/assets/i18n/hr.json | 1 + src/assets/i18n/hsb.json | 1 + src/assets/i18n/hu.json | 1 + src/assets/i18n/ia.json | 1 + src/assets/i18n/id.json | 1 + src/assets/i18n/io.json | 1 + src/assets/i18n/is.json | 1 + src/assets/i18n/it.json | 1 + src/assets/i18n/ja.json | 1 + src/assets/i18n/ka.json | 1 + src/assets/i18n/kk.json | 1 + src/assets/i18n/km.json | 1 + src/assets/i18n/kn.json | 1 + src/assets/i18n/ko.json | 1 + src/assets/i18n/lb.json | 1 + src/assets/i18n/lt.json | 1 + src/assets/i18n/lv.json | 1 + src/assets/i18n/mk.json | 1 + src/assets/i18n/ml.json | 1 + src/assets/i18n/mn.json | 1 + src/assets/i18n/mr.json | 1 + src/assets/i18n/my.json | 1 + src/assets/i18n/nb.json | 1 + src/assets/i18n/ne.json | 1 + src/assets/i18n/nl.json | 1 + src/assets/i18n/nn.json | 1 + src/assets/i18n/os.json | 1 + src/assets/i18n/pa.json | 1 + src/assets/i18n/pl.json | 1 + src/assets/i18n/pt-br.json | 1 + src/assets/i18n/pt.json | 1 + src/assets/i18n/ro.json | 1 + src/assets/i18n/ru.json | 1 + src/assets/i18n/sk.json | 1 + src/assets/i18n/sl.json | 1 + src/assets/i18n/sq.json | 1 + src/assets/i18n/sr-latn.json | 1 + src/assets/i18n/sr.json | 1 + src/assets/i18n/strings.json | 1 + src/assets/i18n/sv.json | 1 + src/assets/i18n/sw.json | 1 + src/assets/i18n/ta.json | 1 + src/assets/i18n/te.json | 1 + src/assets/i18n/th.json | 1 + src/assets/i18n/tr.json | 1 + src/assets/i18n/tt.json | 1 + src/assets/i18n/udm.json | 1 + src/assets/i18n/uk.json | 1 + src/assets/i18n/vi.json | 1 + src/assets/i18n/zh-hans.json | 1 + src/assets/i18n/zh-hant.json | 1 + src/assets/ui-searchable-elements.json | 90 +++++++------------ 119 files changed, 157 insertions(+), 116 deletions(-) diff --git a/src/app/modules/global-search/components/global-search-results/global-search-results.component.html b/src/app/modules/global-search/components/global-search-results/global-search-results.component.html index 38d4d4ec970..43e68fb015f 100644 --- a/src/app/modules/global-search/components/global-search-results/global-search-results.component.html +++ b/src/app/modules/global-search/components/global-search-results/global-search-results.component.html @@ -12,7 +12,7 @@

[attr.tabindex]="result.section === GlobalSearchSection.RecentSearches ? i + 1 : 0" [class.highlighted-result]="isSearchInputFocused && isSameHierarchyResult(firstAvailableSearchResult, result)" [ixTest]="['search-result', result.hierarchy.join('-')]" - [attr.aria-label]="result.hierarchy[result.hierarchy.length - 1]" + [attr.aria-label]="'UI Search Result: {result}' | translate: { result: result.hierarchy.join(' ') }" (click)="selectElement(result)" (keydown.enter)="selectElement(result)" > diff --git a/src/app/pages/account/groups/group-list/group-list.elements.ts b/src/app/pages/account/groups/group-list/group-list.elements.ts index b3202a72131..5786c8ccb5e 100644 --- a/src/app/pages/account/groups/group-list/group-list.elements.ts +++ b/src/app/pages/account/groups/group-list/group-list.elements.ts @@ -9,8 +9,8 @@ export const groupListElements = { synonyms: [T('Local Groups')], }, add: { - hierarchy: [T('Add')], - synonyms: [T('Add Group'), T('New Group'), T('Create Group'), T('Group'), T('Add Local Group')], + hierarchy: [T('Add Group')], + synonyms: [T('New Group'), T('Create Group'), T('Group'), T('Add Local Group')], anchor: 'add-group', }, showBuiltIn: { diff --git a/src/app/pages/account/groups/privilege/privilege-list/privilege-list.elements.ts b/src/app/pages/account/groups/privilege/privilege-list/privilege-list.elements.ts index f553e5160bd..420b2e95c68 100644 --- a/src/app/pages/account/groups/privilege/privilege-list/privilege-list.elements.ts +++ b/src/app/pages/account/groups/privilege/privilege-list/privilege-list.elements.ts @@ -7,7 +7,7 @@ export const privilegesListElements = { elements: { list: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Privilege')], synonyms: [T('Add Privilege'), T('New Privilege'), T('Create Privilege'), T('Privilege')], anchor: 'add-privilege', }, diff --git a/src/app/pages/account/users/user-list/user-list.elements.ts b/src/app/pages/account/users/user-list/user-list.elements.ts index b7a8774f85b..dc14ea485fb 100644 --- a/src/app/pages/account/users/user-list/user-list.elements.ts +++ b/src/app/pages/account/users/user-list/user-list.elements.ts @@ -16,8 +16,8 @@ export const userListElements = { ], }, add: { - hierarchy: [T('Add')], - synonyms: [T('Add User'), T('New User'), T('Create User'), T('User'), T('Add Local User')], + hierarchy: [T('Add User')], + synonyms: [T('New User'), T('Create User'), T('User'), T('Add Local User')], anchor: 'add-user', }, showBuiltIn: { diff --git a/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.elements.ts b/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.elements.ts index cacf42efb35..6dcee149c1b 100644 --- a/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.elements.ts +++ b/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.elements.ts @@ -9,10 +9,9 @@ export const cloudCredentialsCardElements = { anchor: 'cloud-credentials', }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Cloud Credential')], synonyms: [ T('Add Credential'), - T('Add Cloud Credential'), T('Add Backup Credential'), T('New Credential'), T('New Could Credential'), diff --git a/src/app/pages/credentials/backup-credentials/ssh-connection-card/ssh-connection-card.elements.ts b/src/app/pages/credentials/backup-credentials/ssh-connection-card/ssh-connection-card.elements.ts index 4ba992dc57e..e6a95cd0e49 100644 --- a/src/app/pages/credentials/backup-credentials/ssh-connection-card/ssh-connection-card.elements.ts +++ b/src/app/pages/credentials/backup-credentials/ssh-connection-card/ssh-connection-card.elements.ts @@ -9,8 +9,8 @@ export const sshConnectionsCardElements = { anchor: 'ssh-connections', }, add: { - hierarchy: [T('Add')], - synonyms: [T('Add SSH Connection'), T('New SSH Connection'), T('Create SSH Connection'), T('SSH Connection')], + hierarchy: [T('Add SSH Connection')], + synonyms: [T('New SSH Connection'), T('Create SSH Connection'), T('SSH Connection')], anchor: 'add-ssh-connection', }, }, diff --git a/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.elements.ts b/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.elements.ts index 6b9f09e5e89..8882f601e9c 100644 --- a/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.elements.ts +++ b/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.elements.ts @@ -10,9 +10,8 @@ export const sshKeypairsCardElements = { anchor: 'ssh-keypairs', }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add SSH Keypair')], synonyms: [ - T('Add SSH Keypair'), T('New SSH Keypair'), T('Create SSH Keypair'), T('SSH Keypair'), diff --git a/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.elements.ts b/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.elements.ts index 186639c7687..b6e053ed1b2 100644 --- a/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.elements.ts +++ b/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.elements.ts @@ -9,9 +9,8 @@ export const acmeDnsAuthenticatorListElements = { anchor: 'acme-dns-authenticator-list', }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add ACME DNS-Authenticator')], synonyms: [ - T('Add ACME DNS-Authenticator'), T('New ACME DNS-Authenticator'), T('Create ACME DNS-Authenticator'), T('ACME DNS-Authenticator'), diff --git a/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.elements.ts b/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.elements.ts index e0737c22846..a818fabbda9 100644 --- a/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.elements.ts +++ b/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.elements.ts @@ -9,9 +9,8 @@ export const certificateAuthorityListElements = { anchor: 'certificate-authority-list', }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Certificate Authority')], synonyms: [ - T('Add Certificate Authority'), T('New Certificate Authority'), T('Create Certificate Authority'), T('Certificate Authority'), diff --git a/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.elements.ts b/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.elements.ts index f71649e097a..1c7ef18261a 100644 --- a/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.elements.ts +++ b/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.elements.ts @@ -6,12 +6,11 @@ export const certificateListElements = { anchorRouterLink: ['/credentials', 'certificates'], elements: { add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Certificate')], anchor: 'add-certificate', synonyms: [ T('Create Certificate'), T('New Certificate'), - T('Add Certificate'), T('Generate Certificate'), ], }, diff --git a/src/app/pages/credentials/certificates-dash/csr-list/csr-list.elements.ts b/src/app/pages/credentials/certificates-dash/csr-list/csr-list.elements.ts index bf8e3718153..2bfc4abe0d6 100644 --- a/src/app/pages/credentials/certificates-dash/csr-list/csr-list.elements.ts +++ b/src/app/pages/credentials/certificates-dash/csr-list/csr-list.elements.ts @@ -10,12 +10,11 @@ export const csrListElements = { synonyms: [T('CSRs')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add CSR')], anchor: 'add-csr', synonyms: [ T('Create CSR'), T('New CSR'), - T('Add CSR'), T('Generate CSR'), T('Create Certificate Signing Requests'), T('New Certificate Signing Requests'), diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.elements.ts b/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.elements.ts index 50da300ae6c..128abf3e0a8 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.elements.ts +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.elements.ts @@ -9,10 +9,9 @@ export const cloudBackupListElements = { synonyms: [T('Data Protection'), T('Tasks'), T('Cloud Backup')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add TrueCloud Backup Task')], anchor: 'add-cloud-backup', synonyms: [ - T('Add TrueCloud Backup Task'), T('Add Cloud Backup'), T('Create TrueCloud Backup Task'), T('Create Cloud Backup'), diff --git a/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.elements.ts b/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.elements.ts index 3b8b84eec84..eca3dda15b9 100644 --- a/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.elements.ts +++ b/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.elements.ts @@ -31,9 +31,8 @@ export const cloudSyncListElements = { ], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Cloud Sync Task')], synonyms: [ - T('Add Cloud Sync Task'), T('Create Cloud Sync Task'), T('New Cloud Sync Task'), T('Task'), diff --git a/src/app/pages/data-protection/replication/replication-list/replication-list.elements.ts b/src/app/pages/data-protection/replication/replication-list/replication-list.elements.ts index bce1b5951cc..7d91310d51c 100644 --- a/src/app/pages/data-protection/replication/replication-list/replication-list.elements.ts +++ b/src/app/pages/data-protection/replication/replication-list/replication-list.elements.ts @@ -9,9 +9,8 @@ export const replicationListElements = { synonyms: [T('Data Protection'), T('Tasks')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Replication Task')], synonyms: [ - T('Add Replication Task'), T('Create Replication Task'), T('New Replication Task'), T('Task'), diff --git a/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.elements.ts b/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.elements.ts index 3c19afd83f3..33e52becfeb 100644 --- a/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.elements.ts +++ b/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.elements.ts @@ -9,9 +9,8 @@ export const rsyncTaskListElements = { synonyms: [T('Data Protection'), T('Tasks')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Rsync Task')], synonyms: [ - T('Add Rsync Task'), T('Create Rsync Task'), T('New Rsync Task'), T('Task'), diff --git a/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.elements.ts b/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.elements.ts index 12f4a0cc7ac..5a89946bd88 100644 --- a/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.elements.ts +++ b/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.elements.ts @@ -9,9 +9,8 @@ export const scrubListElements = { synonyms: [T('Data Protection'), T('Tasks')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Scrub Task')], synonyms: [ - T('Add Scrub Task'), T('Create Scrub Task'), T('New Scrub Task'), T('Task'), diff --git a/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.elements.ts b/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.elements.ts index 740e4c7deb3..31ad7cc61b3 100644 --- a/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.elements.ts +++ b/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.elements.ts @@ -16,7 +16,7 @@ export const smartTaskListElements = { ], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add S.M.A.R.T. Test')], anchor: 'add-smart-test', synonyms: [ T('Add Periodic S.M.A.R.T. Test'), diff --git a/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.elements.ts b/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.elements.ts index 26f7ed8ff0a..c9773fc51c2 100644 --- a/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.elements.ts +++ b/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.elements.ts @@ -9,13 +9,12 @@ export const snapshotTaskListElements = { synonyms: [T('Data Protection'), T('Tasks')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Snapshot Task')], anchor: 'add-snapshot-task', synonyms: [ T('Add Periodic Snapshot Task'), T('Create Periodic Snapshot Task'), T('New Periodic Snapshot Task'), - T('Add Snapshot Task'), T('Create Snapshot Task'), T('New Snapshot Task'), T('Snapshot'), diff --git a/src/app/pages/directory-service/components/idmap-list/idmap-list.elements.ts b/src/app/pages/directory-service/components/idmap-list/idmap-list.elements.ts index 797b12c1638..6da67e60c6d 100644 --- a/src/app/pages/directory-service/components/idmap-list/idmap-list.elements.ts +++ b/src/app/pages/directory-service/components/idmap-list/idmap-list.elements.ts @@ -7,10 +7,9 @@ export const idMapElements = { elements: { idMap: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Idmap')], anchor: 'add-idmap', synonyms: [ - T('Add Idmap'), T('Create Idmap'), T('New Idmap'), T('Idmap'), diff --git a/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.elements.ts b/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.elements.ts index c7221de9f72..c06a04ac64a 100644 --- a/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.elements.ts +++ b/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.elements.ts @@ -7,10 +7,9 @@ export const kerberosKeytabsListElements = { elements: { kerberosKeytabs: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Kerberos Keytab')], anchor: 'add-kerberos-keytab', synonyms: [ - T('Add Kerberos Keytab'), T('Create Kerberos Keytab'), T('New Kerberos Keytab'), T('Kerberos Keytab'), diff --git a/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.elements.ts b/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.elements.ts index 8794da0823f..150a84638bf 100644 --- a/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.elements.ts +++ b/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.elements.ts @@ -7,10 +7,9 @@ export const kerberosRealmsListElements = { elements: { kerberosRealms: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Kerberos Realm')], anchor: 'add-kerberos-realm', synonyms: [ - T('Add Kerberos Realm'), T('Create Kerberos Realm'), T('New Kerberos Realm'), T('Kerberos Realm'), diff --git a/src/app/pages/network/components/static-routes-card/static-routes-card.elements.ts b/src/app/pages/network/components/static-routes-card/static-routes-card.elements.ts index af304b7cd29..807200c4416 100644 --- a/src/app/pages/network/components/static-routes-card/static-routes-card.elements.ts +++ b/src/app/pages/network/components/static-routes-card/static-routes-card.elements.ts @@ -10,8 +10,11 @@ export const staticRoutesCardElements = { synonyms: [T('Routing'), T('Static Routing')], }, add: { - hierarchy: [T('Static Routes'), T('Add')], - synonyms: [T('Add Static Route'), T('Create Static Route'), T('New Static Route')], + hierarchy: [T('Static Routes'), T('Add Static Route')], + synonyms: [ + T('Create Static Route'), + T('New Static Route'), + ], anchor: 'add-static-route', }, }, diff --git a/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.elements.ts b/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.elements.ts index 2627789c0c9..9b56e7e440c 100644 --- a/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.elements.ts +++ b/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.elements.ts @@ -7,14 +7,13 @@ export const reportingExportersElements = { elements: { exporters: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Reporting Exporter')], anchor: 'add-reporting-exporter', synonyms: [ T('Add Exporter'), T('New Exporter'), T('Create Exporter'), T('Exporter'), - T('Add Reporting Exporter'), T('New Reporting Exporter'), T('Create Reporting Exporter'), ], diff --git a/src/app/pages/system/advanced/cron/cron-card/cron-card.elements.ts b/src/app/pages/system/advanced/cron/cron-card/cron-card.elements.ts index 51e7f530128..fd72fcbe5b8 100644 --- a/src/app/pages/system/advanced/cron/cron-card/cron-card.elements.ts +++ b/src/app/pages/system/advanced/cron/cron-card/cron-card.elements.ts @@ -7,10 +7,9 @@ export const cronCardElements = { anchorRouterLink: ['/system', 'advanced'], elements: { addCronJob: { - hierarchy: [T('Add')], + hierarchy: [T('Add Cron Job')], anchor: 'add-cron-job', synonyms: [ - T('Add Cron Job'), T('Create Cron Job'), T('New Cron Job'), T('Setup Cron Job'), diff --git a/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.elements.ts b/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.elements.ts index db1e9a6bd25..5b80f73efa2 100644 --- a/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.elements.ts +++ b/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.elements.ts @@ -7,10 +7,9 @@ export const initShutdownCardElements = { anchorRouterLink: ['/system', 'advanced'], elements: { addInitShutdownScript: { - hierarchy: [T('Add')], + hierarchy: [T('Add Init/Shutdown Script')], anchor: 'add-init-shutdown-script', synonyms: [ - T('Add Init/Shutdown Script'), T('Create Init/Shutdown Script'), T('New Init/Shutdown Script'), T('Init/Shutdown Script'), diff --git a/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.elements.ts b/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.elements.ts index e148fef9049..cd2636eb36f 100644 --- a/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.elements.ts +++ b/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.elements.ts @@ -10,10 +10,9 @@ export const sysctlCardElements = { anchor: 'sysctl', }, addSysctl: { - hierarchy: [T('Add')], + hierarchy: [T('Add Sysctl')], anchor: 'add-sysctl', synonyms: [ - T('Add Sysctl'), T('Create Sysctl'), T('New Sysctl'), T('Sysctl'), diff --git a/src/app/pages/system/alert-service/alert-service-list/alert-service-list.elements.ts b/src/app/pages/system/alert-service/alert-service-list/alert-service-list.elements.ts index b49d2a540e6..4c785f90442 100644 --- a/src/app/pages/system/alert-service/alert-service-list/alert-service-list.elements.ts +++ b/src/app/pages/system/alert-service/alert-service-list/alert-service-list.elements.ts @@ -8,13 +8,12 @@ export const alertServiceListElements = { elements: { alertServiceList: {}, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add Alert')], anchor: 'add-alert-service', synonyms: [ T('Alerts'), T('Configure Alerts'), T('Create Alert'), - T('Add Alert'), T('New Alert'), T('Notifications'), ], diff --git a/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts b/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts index cef578f016b..7fa0971ca93 100644 --- a/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts +++ b/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts @@ -9,8 +9,8 @@ export const emailCardElements = { anchor: 'email-card', }, settings: { - hierarchy: [T('Configure')], - synonyms: [T('Send Test Email'), T('Config Email'), T('Set email'), T('Configure Email')], + hierarchy: [T('Configure Email')], + synonyms: [T('Send Test Email'), T('Config Email'), T('Set email')], }, sendMethod: { hierarchy: [T('Send Method')], diff --git a/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.elements.ts b/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.elements.ts index 2c8fc74272d..7d2352234ea 100644 --- a/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.elements.ts +++ b/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.elements.ts @@ -10,10 +10,9 @@ export const ntpServerElements = { anchor: 'ntp-card', }, addNtpServer: { - hierarchy: [T('Add')], + hierarchy: [T('Add NTP Server')], anchor: 'add-ntp-server', synonyms: [ - T('Add NTP Server'), T('Create NTP Server'), T('New NTP Server'), T('NTP Server'), diff --git a/src/app/pages/vm/vm-list/vm-list.elements.ts b/src/app/pages/vm/vm-list/vm-list.elements.ts index 69a5fd0c23b..de3fb994a59 100644 --- a/src/app/pages/vm/vm-list/vm-list.elements.ts +++ b/src/app/pages/vm/vm-list/vm-list.elements.ts @@ -9,10 +9,9 @@ export const vmListElements = { synonyms: [T('VM'), T('Virtualization')], }, add: { - hierarchy: [T('Add')], + hierarchy: [T('Add VM')], anchor: 'add-vm', synonyms: [ - T('Add VM'), T('Create VM'), T('New VM'), T('VM'), diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 89bba900e5c..cf0e02d8396 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -4031,6 +4031,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 3046c3811c4..2221ec78db0 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -3052,6 +3052,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UPS Stats": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 4d179859859..858b990babf 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -2175,6 +2175,7 @@ "Two-Factor authentication is not enabled on this this system. You can configure your personal settings, but they will have no effect until two-factor authentication is enabled globally by system administrator.": "", "Two-Factor authentication is required on this system, but it's not yet configured for your user. Please configure it now.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 6655f899c1b..496461271ca 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -4241,6 +4241,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 4290634cd80..bf7ee8e79ec 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -661,6 +661,7 @@ "TrueCommand Write": "", "Turn Off": "", "UI": "", + "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", "Unix Socket": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 5ca7a5ece1a..55695eb3624 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -4247,6 +4247,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index d2aace4e442..1efd2bff2b3 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -3942,6 +3942,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index b800cc6ca3d..89cd57b9c46 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -3974,6 +3974,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 61055f1993d..7791ffe6848 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -4457,6 +4457,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 1eb928e69d5..deb5419e577 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -506,6 +506,7 @@ "TrueCloud Backup Tasks": "", "Turn Off": "", "UI": "", + "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", "Unused Disks": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 7195796e40f..78834dc4537 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -4376,6 +4376,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 1440b1f1850..15383b27b2f 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -4400,6 +4400,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index f40c3b5a49b..f953a17e2cf 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -2423,6 +2423,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNIX Charset": "", "UPS": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 5a3b1431394..23b7c322598 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -2630,6 +2630,7 @@ "Two-Factor authentication is not enabled on this this system. You can configure your personal settings, but they will have no effect until two-factor authentication is enabled globally by system administrator.": "", "Two-Factor authentication is required on this system, but it's not yet configured for your user. Please configure it now.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index c3bda0a9432..f89a7c38d6d 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -1151,6 +1151,7 @@ "Two-Factor authentication is not enabled on this this system. You can configure your personal settings, but they will have no effect until two-factor authentication is enabled globally by system administrator.": "", "Two-Factor authentication is required on this system, but it's not yet configured for your user. Please configure it now.": "", "UI": "", + "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", "URI of the ACME Server Directory. Choose a pre configured URI": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 15f9da8479a..51b9aed1777 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -4463,6 +4463,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 3da9b1a9020..5f424dfcbd9 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -576,6 +576,7 @@ "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.": "", "Turn Off": "", "UI": "", + "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", "Unused Disks": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 4629e26eca8..04aa359cd86 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -3648,6 +3648,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "", "UI": "", + "UI Search Result: {result}": "", "UID": "", "UNASSIGNED": "", "UNIX (NFS) Shares": "", diff --git a/src/assets/ui-searchable-elements.json b/src/assets/ui-searchable-elements.json index b77fb717918..567e85206a1 100644 --- a/src/assets/ui-searchable-elements.json +++ b/src/assets/ui-searchable-elements.json @@ -208,10 +208,9 @@ "hierarchy": [ "Credentials", "Groups", - "Add" + "Add Group" ], "synonyms": [ - "Add Group", "New Group", "Create Group", "Group", @@ -252,10 +251,9 @@ "Credentials", "Groups", "Privileges", - "Add" + "Add Privilege" ], "synonyms": [ - "Add Privilege", "New Privilege", "Create Privilege", "Privilege" @@ -312,10 +310,9 @@ "hierarchy": [ "Credentials", "Users", - "Add" + "Add User" ], "synonyms": [ - "Add User", "New User", "Create User", "User", @@ -634,11 +631,10 @@ "hierarchy": [ "Credentials", "Cloud Credentials", - "Add" + "Add Cloud Credential" ], "synonyms": [ "Add Credential", - "Add Cloud Credential", "Add Backup Credential", "New Credential", "New Could Credential", @@ -682,10 +678,9 @@ "hierarchy": [ "Credentials", "SSH Connections", - "Add" + "Add SSH Connection" ], "synonyms": [ - "Add SSH Connection", "New SSH Connection", "Create SSH Connection", "SSH Connection" @@ -727,10 +722,9 @@ "hierarchy": [ "Credentials", "SSH Keypairs", - "Add" + "Add SSH Keypair" ], "synonyms": [ - "Add SSH Keypair", "New SSH Keypair", "Create SSH Keypair", "SSH Keypair", @@ -772,10 +766,9 @@ "Credentials", "Certificates", "ACME DNS-Authenticators", - "Add" + "Add ACME DNS-Authenticator" ], "synonyms": [ - "Add ACME DNS-Authenticator", "New ACME DNS-Authenticator", "Create ACME DNS-Authenticator", "ACME DNS-Authenticator", @@ -817,10 +810,9 @@ "Credentials", "Certificates", "Certificate Authorities", - "Add" + "Add Certificate Authority" ], "synonyms": [ - "Add Certificate Authority", "New Certificate Authority", "Create Certificate Authority", "Certificate Authority" @@ -841,12 +833,11 @@ "hierarchy": [ "Credentials", "Certificates", - "Add" + "Add Certificate" ], "synonyms": [ "Create Certificate", "New Certificate", - "Add Certificate", "Generate Certificate" ], "requiredRoles": [ @@ -901,12 +892,11 @@ "Credentials", "Certificates", "Certificate Signing Requests", - "Add" + "Add CSR" ], "synonyms": [ "Create CSR", "New CSR", - "Add CSR", "Generate CSR", "Create Certificate Signing Requests", "New Certificate Signing Requests", @@ -982,10 +972,9 @@ "hierarchy": [ "Data Protection", "TrueCloud Backup Tasks", - "Add" + "Add TrueCloud Backup Task" ], "synonyms": [ - "Add TrueCloud Backup Task", "Add Cloud Backup", "Create TrueCloud Backup Task", "Create Cloud Backup", @@ -1028,10 +1017,9 @@ "hierarchy": [ "Data Protection", "Cloud Sync Tasks", - "Add" + "Add Cloud Sync Task" ], "synonyms": [ - "Add Cloud Sync Task", "Create Cloud Sync Task", "New Cloud Sync Task", "Task" @@ -1105,10 +1093,9 @@ "hierarchy": [ "Data Protection", "Replication Tasks", - "Add" + "Add Replication Task" ], "synonyms": [ - "Add Replication Task", "Create Replication Task", "New Replication Task", "Task" @@ -1148,10 +1135,9 @@ "hierarchy": [ "Data Protection", "Rsync Tasks", - "Add" + "Add Rsync Task" ], "synonyms": [ - "Add Rsync Task", "Create Rsync Task", "New Rsync Task", "Task" @@ -1208,10 +1194,9 @@ "hierarchy": [ "Data Protection", "Scrub Tasks", - "Add" + "Add Scrub Task" ], "synonyms": [ - "Add Scrub Task", "Create Scrub Task", "New Scrub Task", "Task" @@ -1275,7 +1260,7 @@ "hierarchy": [ "Data Protection", "Periodic S.M.A.R.T. Tests", - "Add" + "Add S.M.A.R.T. Test" ], "synonyms": [ "Add Periodic S.M.A.R.T. Test", @@ -1349,13 +1334,12 @@ "hierarchy": [ "Data Protection", "Periodic Snapshot Tasks", - "Add" + "Add Snapshot Task" ], "synonyms": [ "Add Periodic Snapshot Task", "Create Periodic Snapshot Task", "New Periodic Snapshot Task", - "Add Snapshot Task", "Create Snapshot Task", "New Snapshot Task", "Snapshot", @@ -1730,10 +1714,9 @@ "hierarchy": [ "Directory Services", "Idmap", - "Add" + "Add Idmap" ], "synonyms": [ - "Add Idmap", "Create Idmap", "New Idmap" ], @@ -1769,10 +1752,9 @@ "hierarchy": [ "Directory Services", "Kerberos Keytabs", - "Add" + "Add Kerberos Keytab" ], "synonyms": [ - "Add Kerberos Keytab", "Create Kerberos Keytab", "New Kerberos Keytab", "Kerberos Keytab" @@ -1809,10 +1791,9 @@ "hierarchy": [ "Directory Services", "Kerberos Realms", - "Add" + "Add Kerberos Realm" ], "synonyms": [ - "Add Kerberos Realm", "Create Kerberos Realm", "New Kerberos Realm", "Kerberos Realm" @@ -2080,10 +2061,9 @@ "hierarchy": [ "Network", "Static Routes", - "Add" + "Add Static Route" ], "synonyms": [ - "Add Static Route", "Create Static Route", "New Static Route" ], @@ -2116,14 +2096,13 @@ "hierarchy": [ "Reporting", "Reporting Exporters", - "Add" + "Add Reporting Exporter" ], "synonyms": [ "Add Exporter", "New Exporter", "Create Exporter", "Exporter", - "Add Reporting Exporter", "New Reporting Exporter", "Create Reporting Exporter" ], @@ -3478,10 +3457,9 @@ "System", "Advanced", "Cron Jobs", - "Add" + "Add Cron Job" ], "synonyms": [ - "Add Cron Job", "Create Cron Job", "New Cron Job", "Setup Cron Job", @@ -3600,10 +3578,9 @@ "System", "Advanced", "Init/Shutdown Scripts", - "Add" + "Add Init/Shutdown Script" ], "synonyms": [ - "Add Init/Shutdown Script", "Create Init/Shutdown Script", "New Init/Shutdown Script", "Init/Shutdown Script" @@ -3875,11 +3852,10 @@ "System", "Advanced", "Sysctl", - "Add" + "Add Sysctl" ], "synonyms": [ "Add Tunable", - "Add Sysctl", "Create Sysctl", "New Sysctl", "Kernel Parameters", @@ -4051,14 +4027,13 @@ "System", "Alert Settings", "Alert Services", - "Add" + "Add Alert" ], "synonyms": [ "Alerts", "Configure Notifications", "Configure Alerts", "Create Alert", - "Add Alert", "New Alert", "Notifications" ], @@ -4247,13 +4222,12 @@ "System", "General", "Email", - "Configure" + "Configure Email" ], "synonyms": [ "Send Test Email", "Config Email", - "Set email", - "Configure Email" + "Set email" ], "requiredRoles": [], "anchorRouterLink": [ @@ -4261,7 +4235,7 @@ "general" ], "routerLink": null, - "anchor": "configure", + "anchor": "configure-email", "triggerAnchor": null, "section": "ui" }, @@ -4745,10 +4719,9 @@ "System", "General", "NTP Server", - "Add" + "Add NTP Server" ], "synonyms": [ - "Add NTP Server", "Create NTP Server", "New NTP Server", "Time Server" @@ -4964,10 +4937,9 @@ { "hierarchy": [ "Virtual Machines", - "Add" + "Add VM" ], "synonyms": [ - "Add VM", "Create VM", "New VM", "VM", From 71ee7942b70b4af5550f54fe9cec9ad73767dafe Mon Sep 17 00:00:00 2001 From: Denys Butenko Date: Thu, 4 Jul 2024 10:12:33 +0700 Subject: [PATCH 5/7] NAS-129468 / 24.10 / Handle loading errors on datasets (#10275) * NAS-129468: Handle loading errors on datasets * NAS-129468: Handle loading errors on datasets * NAS-129468: Add tests --- .../dataset-management.component.html | 8 +-- .../dataset-management.component.scss | 9 ++- .../dataset-management.component.spec.ts | 62 ++++++++++++++++--- .../dataset-management.component.ts | 49 ++++++++++----- .../datasets/store/dataset-store.service.ts | 1 - src/assets/i18n/af.json | 2 + src/assets/i18n/ar.json | 2 + src/assets/i18n/ast.json | 2 + src/assets/i18n/az.json | 2 + src/assets/i18n/be.json | 2 + src/assets/i18n/bg.json | 2 + src/assets/i18n/bn.json | 2 + src/assets/i18n/br.json | 2 + src/assets/i18n/bs.json | 2 + src/assets/i18n/ca.json | 2 + src/assets/i18n/cs.json | 2 + src/assets/i18n/cy.json | 2 + src/assets/i18n/da.json | 2 + src/assets/i18n/de.json | 2 + src/assets/i18n/dsb.json | 2 + src/assets/i18n/el.json | 2 + src/assets/i18n/en-au.json | 2 + src/assets/i18n/en-gb.json | 2 + src/assets/i18n/en.json | 2 + src/assets/i18n/eo.json | 2 + src/assets/i18n/es-ar.json | 2 + src/assets/i18n/es-co.json | 2 + src/assets/i18n/es-mx.json | 2 + src/assets/i18n/es-ni.json | 2 + src/assets/i18n/es-ve.json | 2 + src/assets/i18n/es.json | 2 + src/assets/i18n/et.json | 2 + src/assets/i18n/eu.json | 2 + src/assets/i18n/fa.json | 2 + src/assets/i18n/fi.json | 2 + src/assets/i18n/fr.json | 2 + src/assets/i18n/fy.json | 2 + src/assets/i18n/ga.json | 2 + src/assets/i18n/gd.json | 2 + src/assets/i18n/gl.json | 2 + src/assets/i18n/he.json | 2 + src/assets/i18n/hi.json | 2 + src/assets/i18n/hr.json | 2 + src/assets/i18n/hsb.json | 2 + src/assets/i18n/hu.json | 2 + src/assets/i18n/ia.json | 2 + src/assets/i18n/id.json | 2 + src/assets/i18n/io.json | 2 + src/assets/i18n/is.json | 2 + src/assets/i18n/it.json | 2 + src/assets/i18n/ja.json | 2 + src/assets/i18n/ka.json | 2 + src/assets/i18n/kk.json | 2 + src/assets/i18n/km.json | 2 + src/assets/i18n/kn.json | 2 + src/assets/i18n/ko.json | 2 + src/assets/i18n/lb.json | 2 + src/assets/i18n/lt.json | 2 + src/assets/i18n/lv.json | 2 + src/assets/i18n/mk.json | 2 + src/assets/i18n/ml.json | 2 + src/assets/i18n/mn.json | 2 + src/assets/i18n/mr.json | 2 + src/assets/i18n/my.json | 2 + src/assets/i18n/nb.json | 2 + src/assets/i18n/ne.json | 2 + src/assets/i18n/nl.json | 2 + src/assets/i18n/nn.json | 2 + src/assets/i18n/os.json | 2 + src/assets/i18n/pa.json | 2 + src/assets/i18n/pl.json | 2 + src/assets/i18n/pt-br.json | 2 + src/assets/i18n/pt.json | 2 + src/assets/i18n/ro.json | 2 + src/assets/i18n/ru.json | 2 + src/assets/i18n/sk.json | 2 + src/assets/i18n/sl.json | 2 + src/assets/i18n/sq.json | 2 + src/assets/i18n/sr-latn.json | 2 + src/assets/i18n/sr.json | 2 + src/assets/i18n/strings.json | 2 + src/assets/i18n/sv.json | 2 + src/assets/i18n/sw.json | 2 + src/assets/i18n/ta.json | 2 + src/assets/i18n/te.json | 2 + src/assets/i18n/th.json | 2 + src/assets/i18n/tr.json | 2 + src/assets/i18n/tt.json | 2 + src/assets/i18n/udm.json | 2 + src/assets/i18n/uk.json | 2 + src/assets/i18n/vi.json | 2 + src/assets/i18n/zh-hans.json | 2 + src/assets/i18n/zh-hant.json | 2 + 93 files changed, 276 insertions(+), 29 deletions(-) diff --git a/src/app/pages/datasets/components/dataset-management/dataset-management.component.html b/src/app/pages/datasets/components/dataset-management/dataset-management.component.html index afb3334f3b8..21bee2dee07 100644 --- a/src/app/pages/datasets/components/dataset-management/dataset-management.component.html +++ b/src/app/pages/datasets/components/dataset-management/dataset-management.component.html @@ -1,12 +1,8 @@
- +
diff --git a/src/app/pages/datasets/components/dataset-management/dataset-management.component.scss b/src/app/pages/datasets/components/dataset-management/dataset-management.component.scss index 253472baac4..e407461c56b 100644 --- a/src/app/pages/datasets/components/dataset-management/dataset-management.component.scss +++ b/src/app/pages/datasets/components/dataset-management/dataset-management.component.scss @@ -27,8 +27,15 @@ ix-dataset-details-panel { } } -.entity-empty-wrapper { +.empty-wrapper { + align-items: center; + box-sizing: border-box; + display: flex; + flex: 1 1 100%; + flex-direction: row; + max-width: 100%; padding: 16px; + place-content: center; ix-empty { margin: 32px 0; diff --git a/src/app/pages/datasets/components/dataset-management/dataset-management.component.spec.ts b/src/app/pages/datasets/components/dataset-management/dataset-management.component.spec.ts index d11d771af79..1629ac2c7e5 100644 --- a/src/app/pages/datasets/components/dataset-management/dataset-management.component.spec.ts +++ b/src/app/pages/datasets/components/dataset-management/dataset-management.component.spec.ts @@ -1,12 +1,13 @@ import { Location } from '@angular/common'; import { Router } from '@angular/router'; -import { RouterTestingModule } from '@angular/router/testing'; import { createRoutingFactory, SpectatorRouting, mockProvider } from '@ngneat/spectator/jest'; -import { of } from 'rxjs'; +import { BehaviorSubject, of } from 'rxjs'; import { mockAuth } from 'app/core/testing/utils/mock-auth.utils'; import { mockCall, mockWebSocket } from 'app/core/testing/utils/mock-websocket.utils'; import { SystemDatasetConfig } from 'app/interfaces/system-dataset-config.interface'; +import { EmptyComponent } from 'app/modules/empty/empty.component'; import { SearchInput1Component } from 'app/modules/forms/search-input1/search-input1.component'; +import { TreeVirtualScrollViewComponent } from 'app/modules/ix-tree/components/tree-virtual-scroll-view/tree-virtual-scroll-view.component'; import { TreeModule } from 'app/modules/ix-tree/tree.module'; import { DatasetsManagementComponent } from 'app/pages/datasets/components/dataset-management/dataset-management.component'; import { DatasetTreeStore } from 'app/pages/datasets/store/dataset-store.service'; @@ -16,16 +17,22 @@ describe('DatasetsManagementComponent', () => { let router: Router; let location: Location; + const datasets$ = new BehaviorSubject([ + { id: 'first', name: 'First Dataset' }, + { id: 'second', name: 'Second Dataset' }, + ]); + + const error$ = new BehaviorSubject(null); + const createComponent = createRoutingFactory({ component: DatasetsManagementComponent, - imports: [RouterTestingModule, TreeModule, SearchInput1Component], + imports: [TreeModule, SearchInput1Component, EmptyComponent], providers: [ mockAuth(), - mockWebSocket([ - mockCall('systemdataset.config', {} as SystemDatasetConfig), - ]), + mockWebSocket([mockCall('systemdataset.config', {} as SystemDatasetConfig)]), mockProvider(DatasetTreeStore, { - datasets$: of([{ id: 'first', name: 'First Dataset' }, { id: 'second', name: 'Second Dataset' }]), + datasets$, + error$, loadDatasets: () => {}, selectedBranch$: of(false), isLoading$: of(false), @@ -58,4 +65,45 @@ describe('DatasetsManagementComponent', () => { expect(router.navigate).toHaveBeenCalledWith(['/previous-route']); }); + + it('checks if tree node component is rendered', () => { + expect(spectator.query(TreeVirtualScrollViewComponent)).toBeTruthy(); + }); + + it('should display error when datasets loading fails', () => { + error$.next({ reason: 'Network Error' }); + datasets$.next([]); + + spectator.detectChanges(); + + expect(spectator.query(EmptyComponent).conf).toEqual( + expect.objectContaining({ + large: true, + type: 'errors', + title: 'Failed to load datasets', + message: 'Network Error', + button: expect.objectContaining({ + label: 'Retry', + }), + }), + ); + }); + + it('should display empty state when no datasets', () => { + error$.next(null); + datasets$.next([]); + spectator.detectChanges(); + + expect(spectator.query(EmptyComponent).conf).toEqual( + expect.objectContaining({ + type: 'no_page_data', + title: 'No Datasets', + message: "It seems you haven't configured pools yet. Please click the button below to create a pool.", + large: true, + button: expect.objectContaining({ + label: 'Create pool', + }), + }), + ); + }); }); diff --git a/src/app/pages/datasets/components/dataset-management/dataset-management.component.ts b/src/app/pages/datasets/components/dataset-management/dataset-management.component.ts index 7fe95a4cb02..fd53c48ad29 100644 --- a/src/app/pages/datasets/components/dataset-management/dataset-management.component.ts +++ b/src/app/pages/datasets/components/dataset-management/dataset-management.component.ts @@ -16,7 +16,9 @@ import { Inject, TrackByFunction, HostBinding, + computed, } from '@angular/core'; +import { toSignal } from '@angular/core/rxjs-interop'; import { ActivatedRoute, NavigationStart, Router, } from '@angular/router'; @@ -74,20 +76,39 @@ export class DatasetsManagementComponent implements OnInit, AfterViewInit, OnDes ixTreeHeaderWidth: number | null = null; treeWidthChange$ = new Subject(); - entityEmptyConf: EmptyConfig = { - type: EmptyType.NoPageData, - large: true, - title: this.translate.instant('No Datasets'), - message: `${this.translate.instant( - "It seems you haven't configured pools yet.", - )} ${this.translate.instant( - 'Please click the button below to create a pool.', - )}`, - button: { - label: this.translate.instant('Create pool'), - action: () => this.createPool(), - }, - }; + error = toSignal(this.datasetStore.error$); + + emptyConf = computed(() => { + const error = this.error(); + + if (error?.reason) { + return { + type: EmptyType.Errors, + large: true, + title: this.translate.instant('Failed to load datasets'), + message: this.translate.instant(error.reason || error?.error?.toString()), + button: { + label: this.translate.instant('Retry'), + action: () => this.datasetStore.loadDatasets(), + }, + }; + } + + return { + type: EmptyType.NoPageData, + large: true, + title: this.translate.instant('No Datasets'), + message: `${this.translate.instant( + "It seems you haven't configured pools yet.", + )} ${this.translate.instant( + 'Please click the button below to create a pool.', + )}`, + button: { + label: this.translate.instant('Create pool'), + action: () => this.createPool(), + }, + }; + }); private readonly scrollSubject = new Subject(); diff --git a/src/app/pages/datasets/store/dataset-store.service.ts b/src/app/pages/datasets/store/dataset-store.service.ts index 38520e330c7..6d58d12421a 100644 --- a/src/app/pages/datasets/store/dataset-store.service.ts +++ b/src/app/pages/datasets/store/dataset-store.service.ts @@ -28,7 +28,6 @@ const initialState: DatasetTreeState = { }) export class DatasetTreeStore extends ComponentStore { readonly isLoading$ = this.select((state) => state.isLoading); - // TODO readonly error$ = this.select((state) => state.error); readonly datasets$ = this.select((state) => state.datasets); readonly selectedBranch$ = this.select((state) => { diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index cf0e02d8396..7d58672fd91 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1603,6 +1603,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover Configuration": "", "Failover Now": "", "Failover Read": "", @@ -2989,6 +2990,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 2221ec78db0..676a18478e8 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1134,6 +1134,7 @@ "Failed Disks:": "", "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -2235,6 +2236,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Review": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 858b990babf..4fa919fc027 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -749,6 +749,7 @@ "Failed Disks:": "", "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", + "Failed to load datasets": "", "Failover Now": "", "Failover Read": "", "Failover Write": "", @@ -1598,6 +1599,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Review": "", "Revoking this CA will revoke the complete CA chain. This is a one way action and cannot be reversed. Are you sure you want to revoke this CA?": "", "Roles": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 496461271ca..7df9190b152 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1654,6 +1654,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3160,6 +3161,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index bf7ee8e79ec..b272bf61657 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -173,6 +173,7 @@ "FTP": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover Now": "", "Failover Read": "", "Failover Write": "", @@ -493,6 +494,7 @@ "Restore from Snapshot": "", "Restores files to the selected directory.": "", "Retention (in days)": "", + "Retry": "", "Root TCP Socket": "", "Routing": "", "Rsync": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 55695eb3624..d2c0145d1fd 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1570,6 +1570,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3133,6 +3134,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 1efd2bff2b3..5b7db6cc98d 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1487,6 +1487,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -2947,6 +2948,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 89cd57b9c46..08d74cee936 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1297,6 +1297,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -2860,6 +2861,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 7791ffe6848..2ecf3dab6cb 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -1780,6 +1780,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3343,6 +3344,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index deb5419e577..4d3c6329570 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -209,6 +209,7 @@ "FIPS Settings": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover Now": "", "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "", "Feature Request": "", @@ -402,6 +403,7 @@ "Restore Defaults": "", "Restore from Snapshot": "", "Restores files to the selected directory.": "", + "Retry": "", "Routing": "", "Rsync Task Manager": "", "Run «{name}» Cloud Backup now?": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 78834dc4537..4e0eca7760d 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1725,6 +1725,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3263,6 +3264,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 15383b27b2f..90cc69a7409 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -1724,6 +1724,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3286,6 +3287,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index f953a17e2cf..303309aa37a 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -724,6 +724,7 @@ "Failed Authentication: {credentials}": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover is in an error state.": "", "Feature Request": "", "For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "", @@ -1668,6 +1669,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 23b7c322598..a1a7148f900 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -948,6 +948,7 @@ "Failed Disks": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover Now": "", "Failover Read": "", "Failover Write": "", @@ -1936,6 +1937,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index f89a7c38d6d..9bdadaa1845 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -450,6 +450,7 @@ "Failed Authentication: {credentials}": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover Now": "", "Failover Read": "", "Failover Write": "", @@ -883,6 +884,7 @@ "Restores files to the selected directory.": "", "Resume Scrub": "", "Retention (in days)": "", + "Retry": "", "Root TCP Socket": "", "Routing": "", "Rsync": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 51b9aed1777..c7bf7a18263 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -1786,6 +1786,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover": "", "Failover Configuration": "", "Failover Group": "", @@ -3349,6 +3350,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 5f424dfcbd9..1fb2e886da1 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -226,6 +226,7 @@ "FIPS Settings": "", "Failed Disks:": "", "Failed Jobs": "", + "Failed to load datasets": "", "Failover Now": "", "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "", "Feature Request": "", @@ -454,6 +455,7 @@ "Restore Defaults": "", "Restore from Snapshot": "", "Restores files to the selected directory.": "", + "Retry": "", "Review": "", "Root TCP Socket": "", "Routing": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 04aa359cd86..91e338327ff 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1424,6 +1424,7 @@ "Failed Jobs": "", "Failed S.M.A.R.T. Tests": "", "Failed sending test alert!": "", + "Failed to load datasets": "", "Failover Now": "", "Failover Read": "", "Failover Write": "", @@ -2691,6 +2692,7 @@ "Resume Scrub": "", "Retention": "", "Retention (in days)": "", + "Retry": "", "Return to pool list": "", "Revert Changes": "", "Revert Network Interface Changes": "", From 88eb07d667e2b7a26b531484f0b26dd2696cbc38 Mon Sep 17 00:00:00 2001 From: RehanY147 Date: Thu, 4 Jul 2024 15:37:53 +0500 Subject: [PATCH 6/7] NAS-129640 / 24.10 / Fixed issue where subject is destroyed too quickly (#10238) --- .../ix-modal-header2.component.html | 6 +- .../ix-modal-header2.component.spec.ts | 89 +++++++++++++++++++ .../ix-modal-header2.component.ts | 5 +- .../ix-slide-in2.component.spec.ts | 83 +++++++++++++++++ .../ix-slide-in2/ix-slide-in2.component.ts | 24 ++--- .../services/ix-chained-slide-in.service.ts | 29 ++++-- 6 files changed, 214 insertions(+), 22 deletions(-) create mode 100644 src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.spec.ts create mode 100644 src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-slide-in2/ix-slide-in2.component.spec.ts diff --git a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html index 9c693a42141..d505cd0d6fb 100644 --- a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html @@ -1,9 +1,9 @@
- +

- + diff --git a/src/app/modules/entity/entity-job/entity-job.component.html b/src/app/modules/entity/entity-job/entity-job.component.html index 54ef766f387..7503089007f 100644 --- a/src/app/modules/entity/entity-job/entity-job.component.html +++ b/src/app/modules/entity/entity-job/entity-job.component.html @@ -81,6 +81,7 @@
{{ 'Logs' | translate }}
mat-icon-button mat-dialog-close="close" ixTest="close" + [aria-label]="'Close Job' | translate" > @@ -102,6 +103,7 @@
{{ 'Logs' | translate }}
mat-icon-button mat-dialog-close="close" ixTest="close" + [aria-label]="'Hide Job' | translate" > diff --git a/src/app/modules/feedback/components/feedback-dialog/feedback-dialog.component.html b/src/app/modules/feedback/components/feedback-dialog/feedback-dialog.component.html index e943256e68c..1ed81d421c2 100644 --- a/src/app/modules/feedback/components/feedback-dialog/feedback-dialog.component.html +++ b/src/app/modules/feedback/components/feedback-dialog/feedback-dialog.component.html @@ -7,6 +7,7 @@

{{ 'Send Feedback' | translate }}

mat-dialog-close class="close-feedback-dialog" ixTest="close-feedback-dialog" + [aria-label]="'Close Feedback Dialog' | translate" > diff --git a/src/app/modules/forms/ix-dynamic-form/components/ix-dynamic-form/ix-dynamic-form-item/ix-dynamic-form-item.component.html b/src/app/modules/forms/ix-dynamic-form/components/ix-dynamic-form/ix-dynamic-form-item/ix-dynamic-form-item.component.html index 49906d8ea71..4cb05a52bd9 100644 --- a/src/app/modules/forms/ix-dynamic-form/components/ix-dynamic-form/ix-dynamic-form-item/ix-dynamic-form-item.component.html +++ b/src/app/modules/forms/ix-dynamic-form/components/ix-dynamic-form/ix-dynamic-form-item/ix-dynamic-form-item.component.html @@ -63,6 +63,7 @@ > diff --git a/src/app/modules/forms/ix-forms/components/ix-input/ix-input.component.html b/src/app/modules/forms/ix-forms/components/ix-input/ix-input.component.html index d21ea6d7837..d00921251b2 100644 --- a/src/app/modules/forms/ix-forms/components/ix-input/ix-input.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-input/ix-input.component.html @@ -45,6 +45,7 @@ type="button" class="toggle_pw" [ixTest]="['toggle-password', controlDirective.name]" + [attr.aria-label]="showPassword ? ('Hide Password' | translate) : ('Show Password' | translate)" (click)="onPasswordToggled()" > diff --git a/src/app/modules/forms/ix-forms/components/ix-list/ix-list-item/ix-list-item.component.ts b/src/app/modules/forms/ix-forms/components/ix-list/ix-list-item/ix-list-item.component.ts index bfe51dd7caa..0b321a176d7 100644 --- a/src/app/modules/forms/ix-forms/components/ix-list/ix-list-item/ix-list-item.component.ts +++ b/src/app/modules/forms/ix-forms/components/ix-list/ix-list-item/ix-list-item.component.ts @@ -1,6 +1,6 @@ import { ChangeDetectionStrategy, - Component, EventEmitter, input, Output, + Component, EventEmitter, Input, input, Output, } from '@angular/core'; @Component({ @@ -11,6 +11,7 @@ import { }) export class IxListItemComponent { readonly canDelete = input(true); + @Input() label?: string; @Output() delete = new EventEmitter(); deleteItem(): void { diff --git a/src/app/modules/forms/ix-forms/components/ix-list/ix-list.component.html b/src/app/modules/forms/ix-forms/components/ix-list/ix-list.component.html index 06688ed12d2..1150e103953 100644 --- a/src/app/modules/forms/ix-forms/components/ix-list/ix-list.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-list/ix-list.component.html @@ -13,6 +13,7 @@ type="button" class="add-btn" [ixTest]="['add-item', label]" + [attr.aria-label]="'Add {item}' | translate: { item: label }" (click)="addItem()" > {{ 'Add' | translate }} diff --git a/src/app/modules/forms/ix-forms/components/ix-select/ix-select.component.html b/src/app/modules/forms/ix-forms/components/ix-select/ix-select.component.html index 1f26d3922af..b2f83e99be7 100644 --- a/src/app/modules/forms/ix-forms/components/ix-select/ix-select.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-select/ix-select.component.html @@ -14,7 +14,7 @@ [disabled]="disabledState" [multiple]="multiple" [ixTest]="controlDirective.name" - [attr.aria-label]="label" + [aria-label]="label" [(ngModel)]="value" (blur)="onTouch()" (ngModelChange)="onChange($event)" diff --git a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header/ix-modal-header.component.html b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header/ix-modal-header.component.html index 0ecd3713546..349a53bbfc4 100644 --- a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header/ix-modal-header.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header/ix-modal-header.component.html @@ -13,6 +13,8 @@

tabindex="0" name="cancel" id="ix-close-icon" + type="button" + [attr.aria-label]="'Close {formType} Form' | translate: { formType: title }" (click)="close()" (keydown.enter)="close()" > diff --git a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html index d505cd0d6fb..59b536afdee 100644 --- a/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html +++ b/src/app/modules/forms/ix-forms/components/ix-slide-in/components/ix-modal-header2/ix-modal-header2.component.html @@ -9,6 +9,7 @@ id="ix-close-icon" [ixTest]="['close-slide-in']" [matTooltip]="tooltip" + [attr.aria-label]="'Close {formType} Form' | translate: { formType: title }" (click)="close()" > @@ -24,6 +25,7 @@

id="ix-close-icon" [ixTest]="['close-slide-in']" [matTooltip]="tooltip" + [attr.aria-label]="'Close {formType} Form' | translate: { formType: title }" (click)="close()" > diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-actions/ix-cell-actions.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-actions/ix-cell-actions.component.html index 91a1965f9f5..b4aa0aa7783 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-actions/ix-cell-actions.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-actions/ix-cell-actions.component.html @@ -9,6 +9,7 @@ *ixRequiresRoles="action?.dynamicRequiredRoles ? (action.dynamicRequiredRoles(row) | async) : action.requiredRoles" mat-icon-button [ixTest]="[rowTestId(row), action.iconName, 'row-action']" + [attr.aria-label]="(action.dynamicTooltip ? (action.dynamicTooltip(row) | async) : action.tooltip || '') + ' ' + getAriaLabel(row)" [disabled]="action.disabled ? (action.disabled(row) | async) : false" (click)="$event.stopPropagation(); action.onClick(row)" > @@ -26,6 +27,7 @@ *ngIf="action.hidden ? !(action.hidden(row) | async) : true" mat-icon-button [ixTest]="[rowTestId(row), action.iconName, 'row-action']" + [attr.aria-label]="(action.dynamicTooltip ? (action.dynamicTooltip(row) | async) : action.tooltip || '') + ' ' + getAriaLabel(row)" [disabled]="action.disabled ? (action.disabled(row) | async) : false" (click)="$event.stopPropagation(); action.onClick(row)" > diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.html index 0e883f217d7..83165205af1 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.html @@ -2,6 +2,7 @@ color="primary" [ixTest]="[title, rowTestId(row), 'row-checkbox']" [checked]="checked" + [aria-label]="(checked ? ('Uncheck' | translate) : ('Check' | translate)) + ' ' + getAriaLabel(row)" (change)="onCheckboxChange($event)" (click)="$event.stopPropagation()" > diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.spec.ts b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.spec.ts index 087d8726faa..9136029e6a3 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.spec.ts +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-checkbox/ix-cell-checkbox.component.spec.ts @@ -23,6 +23,7 @@ describe('IxCellCheckboxComponent', () => { spectator.component.propertyName = 'booleanField'; spectator.component.setRow({ booleanField: true }); spectator.component.rowTestId = (row) => 'checkbox-' + row.booleanField.toString(); + spectator.component.ariaLabels = () => ['Label 1', 'Label 2']; spectator.detectChanges(); loader = TestbedHarnessEnvironment.loader(spectator.fixture); @@ -38,4 +39,9 @@ describe('IxCellCheckboxComponent', () => { expect(await checkbox.isChecked()).toBe(false); expect(spectator.component.onRowCheck).toHaveBeenCalledWith({ booleanField: true }, false); }); + + it('gets aria label correctly', () => { + const ariaLabel = spectator.component.getAriaLabel(spectator.component.getRow()); + expect(ariaLabel).toBe('Label 1 Label 2'); + }); }); diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.html index f4ee0616ac9..5ec16b61110 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.html @@ -1,4 +1,11 @@ + + + + {{ 'N/A' | translate }} + + diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.ts b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.ts index 49ec98628e6..a732456430c 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.ts +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-date/ix-cell-date.component.ts @@ -8,7 +8,10 @@ import { Column, ColumnComponent } from 'app/modules/ix-table/interfaces/table-c changeDetection: ChangeDetectionStrategy.OnPush, }) export class IxCellDateComponent extends ColumnComponent { - get date(): number | Date { + get date(): number | null | Date { + if (this.value === null) { + return null; + } if ((this.value as ApiTimestamp)?.$date) { return (this.value as ApiTimestamp).$date; } diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-relative-date/ix-cell-relative-date.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-relative-date/ix-cell-relative-date.component.html index 25dfde46910..0b1122b6111 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-relative-date/ix-cell-relative-date.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-relative-date/ix-cell-relative-date.component.html @@ -1,4 +1,4 @@ {{ date }} diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.html index 136b39d9cf6..d5dfa7242ec 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.html @@ -6,6 +6,7 @@ [ixTest]="[title, rowTestId(row), 'row-state']" [ngClass]="getButtonClass()" [matTooltip]="tooltip" + [attr.aria-label]="getAriaLabel(row)" (click)="$event.stopPropagation(); onButtonClick()" > {{ state }} diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.spec.ts b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.spec.ts index 9c150b049da..ecc6a20c70c 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.spec.ts +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-state-button/ix-cell-state-button.component.spec.ts @@ -42,6 +42,7 @@ describe('IxCellStateButtonComponent', () => { } as TestTableData); spectator.component.getJob = (row) => row.job; spectator.component.rowTestId = () => ''; + spectator.component.ariaLabels = () => ['Label 1', 'Label 2']; spectator.detectChanges(); loader = TestbedHarnessEnvironment.loader(spectator.fixture); @@ -86,4 +87,9 @@ describe('IxCellStateButtonComponent', () => { const button = await loader.getHarness(MatButtonHarness); expect(await button.hasHarness(IxIconHarness.with({ name: 'mdi-alert' }))).toBeTruthy(); }); + + it('gets aria label correctly', () => { + const ariaLabel = spectator.component.getAriaLabel(spectator.component.getRow()); + expect(ariaLabel).toBe('Label 1 Label 2'); + }); }); diff --git a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-toggle/ix-cell-toggle.component.html b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-toggle/ix-cell-toggle.component.html index 063c4fd3992..9f38ab51a66 100644 --- a/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-toggle/ix-cell-toggle.component.html +++ b/src/app/modules/ix-table/components/ix-table-body/cells/ix-cell-toggle/ix-cell-toggle.component.html @@ -1,6 +1,7 @@ { spectator.component.setRow({ booleanField: true }); spectator.component.onRowToggle = jest.fn(); spectator.component.rowTestId = (row) => row.booleanField.toString(); + spectator.component.ariaLabels = () => ['Label 1', 'Label 2']; spectator.detectChanges(); loader = TestbedHarnessEnvironment.loader(spectator.fixture); @@ -39,4 +40,9 @@ describe('IxCellToggleComponent', () => { expect(spectator.component.onRowToggle).toHaveBeenCalledWith({ booleanField: true }, false); }); + + it('gets aria label correctly', () => { + const ariaLabel = spectator.component.getAriaLabel(spectator.component.getRow()); + expect(ariaLabel).toBe('Label 1 Label 2'); + }); }); diff --git a/src/app/modules/ix-table/components/ix-table-body/ix-table-body.component.spec.ts b/src/app/modules/ix-table/components/ix-table-body/ix-table-body.component.spec.ts index 0779b3fe5cb..eafecd95d49 100644 --- a/src/app/modules/ix-table/components/ix-table-body/ix-table-body.component.spec.ts +++ b/src/app/modules/ix-table/components/ix-table-body/ix-table-body.component.spec.ts @@ -53,6 +53,7 @@ const columns = createTable([ }), ], { rowTestId: (row) => 'row-' + row.numberField.toString(), + ariaLabels: (row) => ['Column', row.stringField], }); describe('IxTableBodyComponent', () => { diff --git a/src/app/modules/ix-table/components/ix-table-columns-selector/ix-table-columns-selector.component.spec.ts b/src/app/modules/ix-table/components/ix-table-columns-selector/ix-table-columns-selector.component.spec.ts index 16322fdbe53..62a81a3f7eb 100644 --- a/src/app/modules/ix-table/components/ix-table-columns-selector/ix-table-columns-selector.component.spec.ts +++ b/src/app/modules/ix-table/components/ix-table-columns-selector/ix-table-columns-selector.component.spec.ts @@ -41,6 +41,7 @@ describe('IxTableColumnsSelectorComponent', () => { }), ], { rowTestId: (row: CronjobRow) => 'cronjob-' + row.id.toString(), + ariaLabels: (row) => ['Column', row.id.toString()], }) as Column>[]; const createComponent = createComponentFactory({ diff --git a/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.spec.ts b/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.spec.ts index e2580428f75..a84e05d6c0f 100644 --- a/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.spec.ts +++ b/src/app/modules/ix-table/components/ix-table-head/ix-table-head.component.spec.ts @@ -29,6 +29,7 @@ const columns = createTable([ }), ], { rowTestId: (row) => 'row' + row.numberField.toString(), + ariaLabels: (row) => ['Column', row.stringField], }); let headers: HTMLDivElement[]; diff --git a/src/app/modules/ix-table/components/ix-table-pager/ix-table-pager.component.html b/src/app/modules/ix-table/components/ix-table-pager/ix-table-pager.component.html index 9661b2ee737..e0be68e501a 100644 --- a/src/app/modules/ix-table/components/ix-table-pager/ix-table-pager.component.html +++ b/src/app/modules/ix-table/components/ix-table-pager/ix-table-pager.component.html @@ -2,7 +2,13 @@
{{ 'Items per page' | translate }}: - + {{ option }} @@ -23,6 +29,7 @@ mat-icon-button ixTest="max-left" [disabled]="currentPage === 1" + [attr.aria-label]="'First Page' | translate" (click)="goToPage(1)" > @@ -31,6 +38,7 @@ mat-icon-button ixTest="left" [disabled]="currentPage === 1" + [attr.aria-label]="'Previous Page' | translate" (click)="previousPage()" > @@ -38,6 +46,7 @@ diff --git a/src/app/modules/scheduler/components/scheduler/scheduler.component.html b/src/app/modules/scheduler/components/scheduler/scheduler.component.html index accf94bf6d4..f49c160ffc5 100644 --- a/src/app/modules/scheduler/components/scheduler/scheduler.component.html +++ b/src/app/modules/scheduler/components/scheduler/scheduler.component.html @@ -10,6 +10,7 @@ {{ preset.label | translate }} diff --git a/src/app/pages/account/groups/group-list/group-list.component.ts b/src/app/pages/account/groups/group-list/group-list.component.ts index e5513481cf7..57ba5d6ec8f 100644 --- a/src/app/pages/account/groups/group-list/group-list.component.ts +++ b/src/app/pages/account/groups/group-list/group-list.component.ts @@ -68,6 +68,7 @@ export class GroupListComponent implements OnInit { }), ], { rowTestId: (row) => 'group-' + row.group, + ariaLabels: (row) => [row.group, this.translate.instant('Group')], }); hideBuiltinGroups = true; diff --git a/src/app/pages/account/groups/privilege/privilege-list/privilege-list.component.ts b/src/app/pages/account/groups/privilege/privilege-list/privilege-list.component.ts index be68060fb30..47ad5d51b36 100644 --- a/src/app/pages/account/groups/privilege/privilege-list/privilege-list.component.ts +++ b/src/app/pages/account/groups/privilege/privilege-list/privilege-list.component.ts @@ -87,6 +87,7 @@ export class PrivilegeListComponent implements OnInit { }), ], { rowTestId: (row) => 'privilege-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Privilege')], }); searchQuery: SearchQuery; diff --git a/src/app/pages/account/users/user-list/user-list.component.ts b/src/app/pages/account/users/user-list/user-list.component.ts index 6c4db9839aa..6fe88606d87 100644 --- a/src/app/pages/account/users/user-list/user-list.component.ts +++ b/src/app/pages/account/users/user-list/user-list.component.ts @@ -64,6 +64,7 @@ export class UserListComponent implements OnInit { }), ], { rowTestId: (row) => 'user-' + row.username, + ariaLabels: (row) => [row.username, this.translate.instant('User')], }); isLoading$ = this.store$.select(selectUserState).pipe(map((state) => state.isLoading)); diff --git a/src/app/pages/api-keys/components/api-key-list/api-key-list.component.ts b/src/app/pages/api-keys/components/api-key-list/api-key-list.component.ts index 53251248527..1f1d0db451f 100644 --- a/src/app/pages/api-keys/components/api-key-list/api-key-list.component.ts +++ b/src/app/pages/api-keys/components/api-key-list/api-key-list.component.ts @@ -68,6 +68,7 @@ export class ApiKeyListComponent implements OnInit { }), ], { rowTestId: (row) => 'api-key-' + row.name + '-' + row.created_at.$date, + ariaLabels: (row) => [row.name, this.translate.instant('Api Key')], }); isLoading$ = this.store.isLoading$; diff --git a/src/app/pages/apps/components/docker-images/docker-images-list/docker-images-list.component.ts b/src/app/pages/apps/components/docker-images/docker-images-list/docker-images-list.component.ts index 91c5ee357e9..0e73b36672e 100644 --- a/src/app/pages/apps/components/docker-images/docker-images-list/docker-images-list.component.ts +++ b/src/app/pages/apps/components/docker-images/docker-images-list/docker-images-list.component.ts @@ -82,6 +82,7 @@ export class DockerImagesListComponent implements OnInit { }), ], { rowTestId: (row) => 'container-image-' + row.id, + ariaLabels: (row) => [row.id, this.translate.instant('Docker Image')], }); constructor( diff --git a/src/app/pages/apps/components/installed-apps/app-details-panel/app-details-panel.component.html b/src/app/pages/apps/components/installed-apps/app-details-panel/app-details-panel.component.html index d1b645e175e..90c623f8e5f 100644 --- a/src/app/pages/apps/components/installed-apps/app-details-panel/app-details-panel.component.html +++ b/src/app/pages/apps/components/installed-apps/app-details-panel/app-details-panel.component.html @@ -5,6 +5,7 @@

tabindex="0" class="mobile-back-button" ixTest="disk-details-back" + [attr.aria-label]="'Back' | translate" (click)="onCloseMobileDetails()" (keydown.enter)="onCloseMobileDetails()" > diff --git a/src/app/pages/audit/components/audit/audit.component.html b/src/app/pages/audit/components/audit/audit.component.html index 597074d3250..b6348b41d05 100644 --- a/src/app/pages/audit/components/audit/audit.component.html +++ b/src/app/pages/audit/components/audit/audit.component.html @@ -1,5 +1,5 @@ - + {{ 'Audit Settings' | translate }} diff --git a/src/app/pages/audit/components/audit/audit.component.ts b/src/app/pages/audit/components/audit/audit.component.ts index 89753888c71..eac3ffef1cf 100644 --- a/src/app/pages/audit/components/audit/audit.component.ts +++ b/src/app/pages/audit/components/audit/audit.component.ts @@ -98,6 +98,7 @@ export class AuditComponent implements OnInit, OnDestroy { }), ], { rowTestId: (row) => 'audit-' + row.service + '-' + row.username + '-' + row.event, + ariaLabels: (row) => [row.service, row.username, row.event, this.translate.instant('Audit Entry')], }); protected searchProperties: SearchProperty[] = []; diff --git a/src/app/pages/audit/components/log-details-panel/log-details-panel.component.html b/src/app/pages/audit/components/log-details-panel/log-details-panel.component.html index 94cc66be41e..7066b26c293 100644 --- a/src/app/pages/audit/components/log-details-panel/log-details-panel.component.html +++ b/src/app/pages/audit/components/log-details-panel/log-details-panel.component.html @@ -5,6 +5,7 @@

tabindex="0" class="mobile-back-button" ixTest="disk-details-back" + [attr.aria-label]="'Back' | translate" (click)="onCloseMobileDetails()" (keydown.enter)="onCloseMobileDetails()" > diff --git a/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.component.ts b/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.component.ts index 89e04ccdacd..f33a9db7eed 100644 --- a/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.component.ts +++ b/src/app/pages/credentials/backup-credentials/cloud-credentials-card/cloud-credentials-card.component.ts @@ -61,6 +61,7 @@ export class CloudCredentialsCardComponent implements OnInit { }), ], { rowTestId: (row) => 'cloud-cred-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Cloud Credential')], }); constructor( diff --git a/src/app/pages/credentials/backup-credentials/cloud-credentials-form/provider-forms/storj-provider-form/storj-provider-form.component.html b/src/app/pages/credentials/backup-credentials/cloud-credentials-form/provider-forms/storj-provider-form/storj-provider-form.component.html index 80dc1aa6de1..fdea47cef62 100644 --- a/src/app/pages/credentials/backup-credentials/cloud-credentials-form/provider-forms/storj-provider-form/storj-provider-form.component.html +++ b/src/app/pages/credentials/backup-credentials/cloud-credentials-form/provider-forms/storj-provider-form/storj-provider-form.component.html @@ -1,6 +1,6 @@ - {{ 'Signup for account' | translate }} + {{ 'Sign up for account' | translate }} 'ssh-con-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('SSH Connection')], }); constructor( diff --git a/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.component.ts b/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.component.ts index e03087ba045..3f244b2110f 100644 --- a/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.component.ts +++ b/src/app/pages/credentials/backup-credentials/ssh-keypair-card/ssh-keypair-card.component.ts @@ -62,6 +62,7 @@ export class SshKeypairCardComponent implements OnInit { }), ], { rowTestId: (row) => 'ssh-keypair-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('SSH Key Pair')], }); constructor( diff --git a/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.component.ts b/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.component.ts index 83da1cc59da..6e3ed645f6f 100644 --- a/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.component.ts +++ b/src/app/pages/credentials/certificates-dash/acme-dns-authenticator-list/acme-dns-authenticator-list.component.ts @@ -58,6 +58,7 @@ export class AcmeDnsAuthenticatorListComponent implements OnInit { }), ], { rowTestId: (row) => 'amce-dns-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('ACME DNS Authenticator')], }); constructor( diff --git a/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.component.ts b/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.component.ts index b7e9c6b8efe..6323cbfd2f7 100644 --- a/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.component.ts +++ b/src/app/pages/credentials/certificates-dash/certificate-authority-list/certificate-authority-list.component.ts @@ -102,6 +102,7 @@ export class CertificateAuthorityListComponent implements OnInit { }), ], { rowTestId: (row) => 'ca-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Certificate Authority')], }); constructor( diff --git a/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.component.ts b/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.component.ts index 759a3c6c0be..79282c8bb9e 100644 --- a/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.component.ts +++ b/src/app/pages/credentials/certificates-dash/certificate-list/certificate-list.component.ts @@ -99,6 +99,7 @@ export class CertificateListComponent implements OnInit { }), ], { rowTestId: (row) => 'cert-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Certificate')], }); constructor( diff --git a/src/app/pages/credentials/certificates-dash/csr-list/csr-list.component.ts b/src/app/pages/credentials/certificates-dash/csr-list/csr-list.component.ts index 5ee2aa5807d..51dc15a47b8 100644 --- a/src/app/pages/credentials/certificates-dash/csr-list/csr-list.component.ts +++ b/src/app/pages/credentials/certificates-dash/csr-list/csr-list.component.ts @@ -88,6 +88,7 @@ export class CertificateSigningRequestsListComponent implements OnInit { }), ], { rowTestId: (row) => 'csr-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('CSR')], }); constructor( diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.html b/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.html index d8d97c3ab2b..4d834066024 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.html +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['cloud-backup', 'add']" + [attr.aria-label]="'Add TrueCloud Backup Task' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.ts b/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.ts index a005a09dbd7..d1f52154bab 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.ts +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-card/cloud-backup-card.component.ts @@ -102,6 +102,7 @@ export class CloudBackupCardComponent implements OnInit { }), ], { rowTestId: (row) => 'cloud-backup-' + row.description, + ariaLabels: (row) => [row.description, this.translate.instant('Cloud Backup')], }); constructor( diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-details.component.html b/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-details.component.html index 7e769f4f0d5..b5a97e830e3 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-details.component.html +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-details.component.html @@ -5,6 +5,7 @@

tabindex="0" class="mobile-back-button" ixTest="disk-details-back" + [attr.aria-label]="'Back' | translate" (click)="onCloseMobileDetails()" (keydown.enter)="onCloseMobileDetails()" > diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-snapshots/cloud-backup-snapshots.component.ts b/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-snapshots/cloud-backup-snapshots.component.ts index 95e47488868..8cadaff53d7 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-snapshots/cloud-backup-snapshots.component.ts +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-details/cloud-backup-snapshots/cloud-backup-snapshots.component.ts @@ -53,6 +53,7 @@ export class CloudBackupSnapshotsComponent implements OnChanges { }), ], { rowTestId: (row) => 'cloud-backup-snapshot-' + row.hostname, + ariaLabels: (row) => [row.hostname, this.translate.instant('Cloud Backup Snapshot')], }); constructor( diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.component.ts b/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.component.ts index d343d6e19e7..fd0ebe7ceb2 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.component.ts +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-list/cloud-backup-list.component.ts @@ -104,6 +104,7 @@ export class CloudBackupListComponent implements OnInit { }), ], { rowTestId: (row) => 'cloud-backup-' + row.description, + ariaLabels: (row) => [row.description, this.translate.instant('Cloud Backup')], }); constructor( diff --git a/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.component.ts b/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.component.ts index 34fa0492115..c9500fb8fea 100644 --- a/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.component.ts +++ b/src/app/pages/data-protection/cloudsync/cloudsync-list/cloudsync-list.component.ts @@ -122,6 +122,7 @@ export class CloudSyncListComponent implements OnInit { }), ], { rowTestId: (row) => 'cloudsync-task-' + row.description, + ariaLabels: (row) => [row.description, this.translate.instant('Cloud Sync Task')], }); get hiddenColumns(): Column>[] { diff --git a/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.html b/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.html index 6ee51340d93..57636b8c04a 100644 --- a/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.html +++ b/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['cloudsync-task', 'add']" + [attr.aria-label]="'Add Cloud Sync Task' | translate" (click)="onAdd()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.ts b/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.ts index 50ec2e59443..abd2eeb983f 100644 --- a/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.ts +++ b/src/app/pages/data-protection/cloudsync/cloudsync-task-card/cloudsync-task-card.component.ts @@ -124,6 +124,7 @@ export class CloudSyncTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-cloudsync-task-' + row.description, + ariaLabels: (row) => [row.description, this.translate.instant('Cloud Sync Task')], }); constructor( diff --git a/src/app/pages/data-protection/replication/replication-list/replication-list.component.ts b/src/app/pages/data-protection/replication/replication-list/replication-list.component.ts index 67ed3f3024b..e75910b55c7 100644 --- a/src/app/pages/data-protection/replication/replication-list/replication-list.component.ts +++ b/src/app/pages/data-protection/replication/replication-list/replication-list.component.ts @@ -131,6 +131,7 @@ export class ReplicationListComponent implements OnInit { }), ], { rowTestId: (row) => 'replication-task-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Replication Task')], }); get hiddenColumns(): Column>[] { diff --git a/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.html b/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.html index 5bfa1c9b5b0..2ab8c2084cd 100644 --- a/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.html +++ b/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['replication-task', 'add']" + [attr.aria-label]="'Add Replication Task' | translate" (click)="addReplicationTask()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.ts b/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.ts index e3d5ff598b3..039f2da4bef 100644 --- a/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.ts +++ b/src/app/pages/data-protection/replication/replication-task-card/replication-task-card.component.ts @@ -121,6 +121,7 @@ export class ReplicationTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'replication-task-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Replication Task')], }); constructor( diff --git a/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.html b/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.html index 1a3f57b1b54..dcb1c347aa1 100644 --- a/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.html +++ b/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['rsync-task', 'add']" + [attr.aria-label]="'Add Rsync Task' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.ts b/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.ts index dec8778a4d3..73db19f9616 100644 --- a/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.ts +++ b/src/app/pages/data-protection/rsync-task/rsync-task-card/rsync-task-card.component.ts @@ -105,6 +105,7 @@ export class RsyncTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-rsync-task-' + row.path + '-' + row.remotehost, + ariaLabels: (row) => [row.path, row.remotehost, this.translate.instant('Rsync Task')], }); constructor( diff --git a/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.component.ts b/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.component.ts index 22b64aef4b9..eb0129edf23 100644 --- a/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.component.ts +++ b/src/app/pages/data-protection/rsync-task/rsync-task-list/rsync-task-list.component.ts @@ -153,6 +153,7 @@ export class RsyncTaskListComponent implements OnInit { }), ], { rowTestId: (row) => 'rsync-task-' + row.path + '-' + row.remotehost, + ariaLabels: (row) => [row.path, row.remotehost, this.translate.instant('Rsync Task')], }); constructor( diff --git a/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.component.ts b/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.component.ts index b7953d66511..f97bc185dbc 100644 --- a/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.component.ts +++ b/src/app/pages/data-protection/scrub-task/scrub-list/scrub-list.component.ts @@ -93,6 +93,7 @@ export class ScrubListComponent implements OnInit { }), ], { rowTestId: (row) => 'scrub-task-' + row.pool + '-' + row.description, + ariaLabels: (row) => [row.pool_name, row.description, this.translate.instant('Scrub Task')], }); constructor( diff --git a/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.html b/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.html index 03c009696bb..6fbd6d48c11 100644 --- a/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.html +++ b/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.html @@ -21,6 +21,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['scrub-task', 'add']" + [attr.aria-label]="'Add Scrub Task' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.ts b/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.ts index d103d533513..381b1eb8d14 100644 --- a/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.ts +++ b/src/app/pages/data-protection/scrub-task/scrub-task-card/scrub-task-card.component.ts @@ -75,6 +75,7 @@ export class ScrubTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-scrub-task-' + row.pool + '-' + row.description, + ariaLabels: (row) => [row.pool.toString(), row.description, this.translate.instant('Scrub Task')], }); constructor( diff --git a/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.html b/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.html index 5f855ab48fb..e5860853af2 100644 --- a/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.html +++ b/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['smart-task', 'add']" + [attr.aria-label]="'Add S.M.A.R.T. Test' | translate" (click)="openForm()" >{{ 'Add' | translate }}

diff --git a/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.ts b/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.ts index 8ac1ea8e24e..3f8ab7305c2 100644 --- a/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.ts +++ b/src/app/pages/data-protection/smart-task/smart-task-card/smart-task-card.component.ts @@ -77,6 +77,7 @@ export class SmartTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'smart-task-' + row.type + '-' + row.disks.join(','), + ariaLabels: (row) => [row.type, row.disks.join(','), this.translate.instant('Smart Task')], }); constructor( diff --git a/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.component.ts b/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.component.ts index 9845eb290c5..82f5e4aed70 100644 --- a/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.component.ts +++ b/src/app/pages/data-protection/smart-task/smart-task-list/smart-task-list.component.ts @@ -81,6 +81,7 @@ export class SmartTaskListComponent implements OnInit { }), ], { rowTestId: (row) => 'smart-task-' + row.type + '-' + row.disks.join(','), + ariaLabels: (row) => [row.type, row.disks.join(','), this.translate.instant('Smart Task')], }); constructor( diff --git a/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.html b/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.html index 78799791b5c..c3b19663e54 100644 --- a/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.html +++ b/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.html @@ -11,6 +11,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['snapshot-task', 'add']" + [attr.aria-label]="'Add Snapshot Task' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.ts b/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.ts index 880cd05cbe9..a70ffa73832 100644 --- a/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.ts +++ b/src/app/pages/data-protection/snapshot-task/snapshot-task-card/snapshot-task-card.component.ts @@ -89,6 +89,7 @@ export class SnapshotTaskCardComponent implements OnInit { }), ], { rowTestId: (row) => 'snapshot-task-' + row.dataset + '-' + row.state.state, + ariaLabels: (row) => [row.dataset, this.translate.instant('Snapshot Task')], }); constructor( diff --git a/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.component.ts b/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.component.ts index 6303f799d72..575067474e7 100644 --- a/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.component.ts +++ b/src/app/pages/data-protection/snapshot-task/snapshot-task-list/snapshot-task-list.component.ts @@ -125,6 +125,7 @@ export class SnapshotTaskListComponent implements OnInit { }), ], { rowTestId: (row) => 'snapshot-task-' + row.dataset + '-' + row.naming_schema, + ariaLabels: (row) => [row.dataset, this.translate.instant('Snapshot Task')], }); get emptyConfigService(): EmptyService { diff --git a/src/app/pages/data-protection/vmware-snapshot/vmware-snapshot-list/vmware-snapshot-list.component.ts b/src/app/pages/data-protection/vmware-snapshot/vmware-snapshot-list/vmware-snapshot-list.component.ts index 727c5d0a6bd..8da59023221 100644 --- a/src/app/pages/data-protection/vmware-snapshot/vmware-snapshot-list/vmware-snapshot-list.component.ts +++ b/src/app/pages/data-protection/vmware-snapshot/vmware-snapshot-list/vmware-snapshot-list.component.ts @@ -55,6 +55,7 @@ export class VmwareSnapshotListComponent implements OnInit { }), ], { rowTestId: (row) => 'vmware-snapshot-' + row.hostname, + ariaLabels: (row) => [row.hostname, this.translate.instant('VMware Snapshot')], }); constructor( diff --git a/src/app/pages/datasets/components/dataset-details-panel/dataset-details-panel.component.html b/src/app/pages/datasets/components/dataset-details-panel/dataset-details-panel.component.html index 6397f27ae2d..3c84a96bb1e 100644 --- a/src/app/pages/datasets/components/dataset-details-panel/dataset-details-panel.component.html +++ b/src/app/pages/datasets/components/dataset-details-panel/dataset-details-panel.component.html @@ -5,6 +5,7 @@

tabindex="0" class="mobile-back-button" ixTest="details-back-button" + [attr.aria-label]="'Back' | translate" (click)="onCloseMobileDetails()" (keydown.enter)="onCloseMobileDetails()" > diff --git a/src/app/pages/datasets/components/dataset-quotas/dataset-quotas-list/dataset-quotas-list.component.ts b/src/app/pages/datasets/components/dataset-quotas/dataset-quotas-list/dataset-quotas-list.component.ts index 257918395e3..4ae88e9568c 100644 --- a/src/app/pages/datasets/components/dataset-quotas/dataset-quotas-list/dataset-quotas-list.component.ts +++ b/src/app/pages/datasets/components/dataset-quotas/dataset-quotas-list/dataset-quotas-list.component.ts @@ -141,6 +141,7 @@ export class DatasetQuotasListComponent implements OnInit { }), ], { rowTestId: (row) => `${this.helpTextKey}-quota-` + row.name + this.emptyValue + row.obj_quota, + ariaLabels: (row) => [row.name, this.translate.instant('Dataset Quota')], }); quotas: DatasetQuota[] = []; diff --git a/src/app/pages/datasets/modules/snapshots/snapshot-list/snapshot-list.component.ts b/src/app/pages/datasets/modules/snapshots/snapshot-list/snapshot-list.component.ts index bf7338c47d7..4b2a302822a 100644 --- a/src/app/pages/datasets/modules/snapshots/snapshot-list/snapshot-list.component.ts +++ b/src/app/pages/datasets/modules/snapshots/snapshot-list/snapshot-list.component.ts @@ -120,6 +120,7 @@ export class SnapshotListComponent implements OnInit { }), ], { rowTestId: (row) => 'snapshot-' + row.id, + ariaLabels: (row) => [row.name, this.translate.instant('Snapshot')], }); get pageTitle(): string { diff --git a/src/app/pages/directory-service/components/idmap-list/idmap-list.component.ts b/src/app/pages/directory-service/components/idmap-list/idmap-list.component.ts index 9fa64f79324..fdeb6fa021a 100644 --- a/src/app/pages/directory-service/components/idmap-list/idmap-list.component.ts +++ b/src/app/pages/directory-service/components/idmap-list/idmap-list.component.ts @@ -110,6 +110,7 @@ export class IdmapListComponent implements OnInit { }), ], { rowTestId: (row) => 'idmap-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Idmap')], }); constructor( diff --git a/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.component.ts b/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.component.ts index 0c13befa275..bcad3e36f15 100644 --- a/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.component.ts +++ b/src/app/pages/directory-service/components/kerberos-keytabs/kerberos-keytabs-list/kerberos-keytabs-list.component.ts @@ -79,6 +79,7 @@ export class KerberosKeytabsListComponent implements OnInit { }), ], { rowTestId: (row) => 'kerberos-keytab-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Kerberos Keytab')], }); constructor( diff --git a/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.component.ts b/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.component.ts index 39784175d18..bb3ceaed1e6 100644 --- a/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.component.ts +++ b/src/app/pages/directory-service/components/kerberos-realms/kerberos-realms-list.component.ts @@ -94,6 +94,7 @@ export class KerberosRealmsListComponent implements OnInit { }), ], { rowTestId: (row) => 'kerberos-realm-' + row.realm, + ariaLabels: (row) => [row.realm, this.translate.instant('Kerberos Realm')], }); constructor( diff --git a/src/app/pages/jobs/jobs-list/jobs-list.component.ts b/src/app/pages/jobs/jobs-list/jobs-list.component.ts index 713c2469656..f2b8e346eae 100644 --- a/src/app/pages/jobs/jobs-list/jobs-list.component.ts +++ b/src/app/pages/jobs/jobs-list/jobs-list.component.ts @@ -76,6 +76,7 @@ export class JobsListComponent implements OnInit { }), ], { rowTestId: (row) => 'job-' + row.id, + ariaLabels: (row) => [row.description, this.translate.instant('Job')], }); emptyType$: Observable = combineLatest([ diff --git a/src/app/pages/network/components/interface-form/interface-form.component.html b/src/app/pages/network/components/interface-form/interface-form.component.html index b56f5024996..203f560e515 100644 --- a/src/app/pages/network/components/interface-form/interface-form.component.html +++ b/src/app/pages/network/components/interface-form/interface-form.component.html @@ -162,6 +162,7 @@
diff --git a/src/app/pages/network/components/interfaces-card/interfaces-card.component.ts b/src/app/pages/network/components/interfaces-card/interfaces-card.component.ts index 4f057412511..452f85d3270 100644 --- a/src/app/pages/network/components/interfaces-card/interfaces-card.component.ts +++ b/src/app/pages/network/components/interfaces-card/interfaces-card.component.ts @@ -100,6 +100,7 @@ export class InterfacesCardComponent implements OnInit, OnChanges { }), ], { rowTestId: (row) => 'interface-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Interface')], }); readonly helptext = helptextInterfaces; diff --git a/src/app/pages/network/components/ipmi-card/ipmi-card.component.ts b/src/app/pages/network/components/ipmi-card/ipmi-card.component.ts index 7628a79b286..d118cf330ca 100644 --- a/src/app/pages/network/components/ipmi-card/ipmi-card.component.ts +++ b/src/app/pages/network/components/ipmi-card/ipmi-card.component.ts @@ -51,6 +51,7 @@ export class IpmiCardComponent implements OnInit { }), ], { rowTestId: (row) => 'ipmi-' + row.channel + '-' + row.ip_address, + ariaLabels: (row) => [row.ip_address, this.translate.instant('IPMI')], }); protected readonly hasIpmi$ = this.ws.call('ipmi.is_loaded'); diff --git a/src/app/pages/network/components/static-routes-card/static-routes-card.component.ts b/src/app/pages/network/components/static-routes-card/static-routes-card.component.ts index 583e6396245..57d644d3fd9 100644 --- a/src/app/pages/network/components/static-routes-card/static-routes-card.component.ts +++ b/src/app/pages/network/components/static-routes-card/static-routes-card.component.ts @@ -60,6 +60,7 @@ export class StaticRoutesCardComponent implements OnInit { }), ], { rowTestId: (row) => 'static-route-' + row.destination + '-' + row.gateway, + ariaLabels: (row) => [row.description, this.translate.instant('Static Route')], }); constructor( diff --git a/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.component.ts b/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.component.ts index e0370ddbf01..bb467e29f2a 100644 --- a/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.component.ts +++ b/src/app/pages/reports-dashboard/components/exporters/reporting-exporters-list/reporting-exporters-list.component.ts @@ -87,6 +87,7 @@ export class ReportingExporterListComponent implements OnInit { }), ], { rowTestId: (row) => 'reporting-exporter-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Reporting Exporter')], }); isLoading$ = new BehaviorSubject(true); diff --git a/src/app/pages/reports-dashboard/components/reports-global-controls/netdata-dialog/netdata-dialog.component.html b/src/app/pages/reports-dashboard/components/reports-global-controls/netdata-dialog/netdata-dialog.component.html index cf541af96ce..b624e1877d0 100644 --- a/src/app/pages/reports-dashboard/components/reports-global-controls/netdata-dialog/netdata-dialog.component.html +++ b/src/app/pages/reports-dashboard/components/reports-global-controls/netdata-dialog/netdata-dialog.component.html @@ -6,6 +6,7 @@

mat-icon-button mat-dialog-close="close" ixTest="close" + [aria-label]="'Close' | translate" > diff --git a/src/app/pages/services/services.component.ts b/src/app/pages/services/services.component.ts index 46ad3b9e684..1cd6b67cc42 100644 --- a/src/app/pages/services/services.component.ts +++ b/src/app/pages/services/services.component.ts @@ -95,6 +95,7 @@ export class ServicesComponent implements OnInit { }), ], { rowTestId: (row) => 'service-' + row.name.replace(/\./g, ''), + ariaLabels: (row) => [row.name, this.translate.instant('Service')], }); dataProvider = new ArrayDataProvider(); diff --git a/src/app/pages/sharing/components/shares-dashboard/iscsi-card/iscsi-card.component.ts b/src/app/pages/sharing/components/shares-dashboard/iscsi-card/iscsi-card.component.ts index 7737f6cd438..7aca08722b6 100644 --- a/src/app/pages/sharing/components/shares-dashboard/iscsi-card/iscsi-card.component.ts +++ b/src/app/pages/sharing/components/shares-dashboard/iscsi-card/iscsi-card.component.ts @@ -71,6 +71,7 @@ export class IscsiCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-iscsi-target-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('iSCSI Target')], }); constructor( diff --git a/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.html b/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.html index 56a31947e45..375aad28957 100644 --- a/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.html +++ b/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.html @@ -19,6 +19,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['nfs-share', 'add']" + [attr.aria-label]="'Add NFS Share' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.ts b/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.ts index 1d8194891b4..f02e5007df0 100644 --- a/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.ts +++ b/src/app/pages/sharing/components/shares-dashboard/nfs-card/nfs-card.component.ts @@ -71,6 +71,7 @@ export class NfsCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-nfs-share-' + row.path + '-' + row.comment, + ariaLabels: (row) => [row.path, this.translate.instant('NFS Share')], }); constructor( diff --git a/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.html b/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.html index 6b0ec62d0ca..d58c30dceef 100644 --- a/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.html +++ b/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.html @@ -19,6 +19,7 @@

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['smb-share', 'add']" + [attr.aria-label]="'Add SMB Share' | translate" (click)="openForm()" > {{ 'Add' | translate }} diff --git a/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.ts b/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.ts index 09fe2a85e0c..45e145a5145 100644 --- a/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.ts +++ b/src/app/pages/sharing/components/shares-dashboard/smb-card/smb-card.component.ts @@ -94,6 +94,7 @@ export class SmbCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-smb-share-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('SMB Share')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/associated-target/associated-target-list/associated-target-list.component.ts b/src/app/pages/sharing/iscsi/associated-target/associated-target-list/associated-target-list.component.ts index 10f94a31d10..4ff6d96de01 100644 --- a/src/app/pages/sharing/iscsi/associated-target/associated-target-list/associated-target-list.component.ts +++ b/src/app/pages/sharing/iscsi/associated-target/associated-target-list/associated-target-list.component.ts @@ -114,6 +114,7 @@ export class AssociatedTargetListComponent implements OnInit { }), ], { rowTestId: (row) => 'iscsi-associated-target-' + row.target + '-' + row.extent, + ariaLabels: (row) => [row.target.toString(), this.translate.instant('ISCSI Associated Target')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/authorized-access/authorized-access-list/authorized-access-list.component.ts b/src/app/pages/sharing/iscsi/authorized-access/authorized-access-list/authorized-access-list.component.ts index 5ebbf56a72d..cad511ff6c9 100644 --- a/src/app/pages/sharing/iscsi/authorized-access/authorized-access-list/authorized-access-list.component.ts +++ b/src/app/pages/sharing/iscsi/authorized-access/authorized-access-list/authorized-access-list.component.ts @@ -88,6 +88,7 @@ export class AuthorizedAccessListComponent implements OnInit { }), ], { rowTestId: (row) => 'iscsi-authorized-access-' + row.user + '-' + row.peeruser, + ariaLabels: (row) => [row.user, this.translate.instant('Authorized Access')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/extent/extent-list/extent-list.component.ts b/src/app/pages/sharing/iscsi/extent/extent-list/extent-list.component.ts index 1c608d4f5fc..f0f113fc752 100644 --- a/src/app/pages/sharing/iscsi/extent/extent-list/extent-list.component.ts +++ b/src/app/pages/sharing/iscsi/extent/extent-list/extent-list.component.ts @@ -90,6 +90,7 @@ export class ExtentListComponent implements OnInit { }), ], { rowTestId: (row) => 'iscsi-extent-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('iSCSI Extent')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/initiator/initiator-list/initiator-list.component.ts b/src/app/pages/sharing/iscsi/initiator/initiator-list/initiator-list.component.ts index f31baf4c33e..bd917604e1c 100644 --- a/src/app/pages/sharing/iscsi/initiator/initiator-list/initiator-list.component.ts +++ b/src/app/pages/sharing/iscsi/initiator/initiator-list/initiator-list.component.ts @@ -87,6 +87,7 @@ export class InitiatorListComponent implements OnInit { }), ], { rowTestId: (row) => 'iscsi-initiator-' + row.id, + ariaLabels: (row) => [row.id.toString(), this.translate.instant('iSCSI Initiator')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/iscsi-wizard/steps/portal-wizard-step/portal-wizard-step.component.html b/src/app/pages/sharing/iscsi/iscsi-wizard/steps/portal-wizard-step/portal-wizard-step.component.html index 8e14242cb8a..4a1a53e40d9 100644 --- a/src/app/pages/sharing/iscsi/iscsi-wizard/steps/portal-wizard-step/portal-wizard-step.component.html +++ b/src/app/pages/sharing/iscsi/iscsi-wizard/steps/portal-wizard-step/portal-wizard-step.component.html @@ -59,6 +59,7 @@ > - + 'iscsi-portal-' + row.comment, + ariaLabels: (row) => [row.comment, this.translate.instant('Portal')], }); constructor( diff --git a/src/app/pages/sharing/iscsi/target/target-form/target-form.component.html b/src/app/pages/sharing/iscsi/target/target-form/target-form.component.html index 28a36fedad5..b01d4aad1e8 100644 --- a/src/app/pages/sharing/iscsi/target/target-form/target-form.component.html +++ b/src/app/pages/sharing/iscsi/target/target-form/target-form.component.html @@ -38,6 +38,7 @@ > diff --git a/src/app/pages/sharing/iscsi/target/target-list/target-list.component.ts b/src/app/pages/sharing/iscsi/target/target-list/target-list.component.ts index 60e1138b86c..d28b3419093 100644 --- a/src/app/pages/sharing/iscsi/target/target-list/target-list.component.ts +++ b/src/app/pages/sharing/iscsi/target/target-list/target-list.component.ts @@ -94,6 +94,7 @@ export class TargetListComponent implements OnInit { }), ], { rowTestId: (row) => 'iscsi-target-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Target')], }); constructor( diff --git a/src/app/pages/sharing/nfs/nfs-form/nfs-form.component.html b/src/app/pages/sharing/nfs/nfs-form/nfs-form.component.html index abe23f31d7d..732eb366a26 100644 --- a/src/app/pages/sharing/nfs/nfs-form/nfs-form.component.html +++ b/src/app/pages/sharing/nfs/nfs-form/nfs-form.component.html @@ -82,6 +82,7 @@ > 'nfs-share-' + row.path + '-' + row.comment, + ariaLabels: (row) => [row.path, this.translate.instant('NFS Share')], }); constructor( diff --git a/src/app/pages/sharing/nfs/nfs-list/nfs-list.elements.ts b/src/app/pages/sharing/nfs/nfs-list/nfs-list.elements.ts index 764af451a4b..bb62f6894c0 100644 --- a/src/app/pages/sharing/nfs/nfs-list/nfs-list.elements.ts +++ b/src/app/pages/sharing/nfs/nfs-list/nfs-list.elements.ts @@ -7,9 +7,9 @@ export const nfsListElements = { elements: { nfs: {}, createNfsShare: { - hierarchy: [T('Create NFS Share')], + hierarchy: [T('Add NFS Share')], synonyms: [ - T('Add NFS Share'), + T('Create NFS Share'), T('New NFS Share'), T('Create Share'), T('Add Share'), diff --git a/src/app/pages/sharing/nfs/nfs-session-list/nfs-session-list.component.ts b/src/app/pages/sharing/nfs/nfs-session-list/nfs-session-list.component.ts index 6d071a2546a..3318158a73a 100644 --- a/src/app/pages/sharing/nfs/nfs-session-list/nfs-session-list.component.ts +++ b/src/app/pages/sharing/nfs/nfs-session-list/nfs-session-list.component.ts @@ -40,6 +40,7 @@ export class NfsSessionListComponent implements OnInit { }), ], { rowTestId: (row) => 'nfs3-session-' + row.export + '-' + row.ip, + ariaLabels: (row) => [row.ip, this.translate.instant('NFS3 Session')], }); nfs4Columns = createTable([ @@ -91,6 +92,7 @@ export class NfsSessionListComponent implements OnInit { }), ], { rowTestId: (row) => 'nfs4-session-' + row.address + '-' + row.clientid, + ariaLabels: (row) => [row.name, this.translate.instant('NFS4 Session')], }); nfs3ProviderRequest$ = this.ws.call('nfs.get_nfs3_clients', []).pipe( diff --git a/src/app/pages/sharing/smb/smb-acl/smb-acl.component.html b/src/app/pages/sharing/smb/smb-acl/smb-acl.component.html index 22c1b8991b1..695ca869ce2 100644 --- a/src/app/pages/sharing/smb/smb-acl/smb-acl.component.html +++ b/src/app/pages/sharing/smb/smb-acl/smb-acl.component.html @@ -20,6 +20,7 @@
diff --git a/src/app/pages/sharing/smb/smb-list/smb-list.component.ts b/src/app/pages/sharing/smb/smb-list/smb-list.component.ts index 0fbc9b9d4da..2d6104ca553 100644 --- a/src/app/pages/sharing/smb/smb-list/smb-list.component.ts +++ b/src/app/pages/sharing/smb/smb-list/smb-list.component.ts @@ -158,6 +158,7 @@ export class SmbListComponent implements OnInit { }), ], { rowTestId: (row) => 'smb-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('SMB Share')], }); constructor( diff --git a/src/app/pages/sharing/smb/smb-list/smb-list.elements.ts b/src/app/pages/sharing/smb/smb-list/smb-list.elements.ts index 43dd7044a4b..9e53939eb8c 100644 --- a/src/app/pages/sharing/smb/smb-list/smb-list.elements.ts +++ b/src/app/pages/sharing/smb/smb-list/smb-list.elements.ts @@ -8,9 +8,10 @@ export const smbListElements = { elements: { smbList: {}, createSmbShare: { - hierarchy: [T('Create SMB Share')], + hierarchy: [T('Add SMB Share')], synonyms: - [T('Add SMB Share'), + [ + T('Create SMB Share'), T('New SMB Share'), T('Create Share'), T('Add Share'), diff --git a/src/app/pages/sharing/smb/smb-status/components/smb-lock-list/smb-lock-list.component.ts b/src/app/pages/sharing/smb/smb-status/components/smb-lock-list/smb-lock-list.component.ts index a1bef890d48..cc5d637bf97 100644 --- a/src/app/pages/sharing/smb/smb-status/components/smb-lock-list/smb-lock-list.component.ts +++ b/src/app/pages/sharing/smb/smb-status/components/smb-lock-list/smb-lock-list.component.ts @@ -47,6 +47,7 @@ export class SmbLockListComponent implements OnInit { }), ], { rowTestId: (row) => 'smb-lock-' + row.filename + '-' + row.fileid.devid + '-' + row.fileid.extid, + ariaLabels: (row) => [row.filename, this.translate.instant('SMB Lock')], }); constructor( diff --git a/src/app/pages/sharing/smb/smb-status/components/smb-notification-list/smb-notification-list.component.ts b/src/app/pages/sharing/smb/smb-status/components/smb-notification-list/smb-notification-list.component.ts index 6236fb8fdf8..679589c5cd6 100644 --- a/src/app/pages/sharing/smb/smb-status/components/smb-notification-list/smb-notification-list.component.ts +++ b/src/app/pages/sharing/smb/smb-status/components/smb-notification-list/smb-notification-list.component.ts @@ -30,6 +30,7 @@ export class SmbNotificationListComponent implements OnInit { textColumn({ title: this.translate.instant('Creation Time'), propertyName: 'creation_time' }), ], { rowTestId: (row) => 'smb-notification-' + row.creation_time + '-' + row.server_id.unique_id, + ariaLabels: (row) => [row.creation_time, this.translate.instant('SMB Notification')], }); constructor( diff --git a/src/app/pages/sharing/smb/smb-status/components/smb-open-files/smb-open-files.component.ts b/src/app/pages/sharing/smb/smb-status/components/smb-open-files/smb-open-files.component.ts index 5e66256b610..08affa20e08 100644 --- a/src/app/pages/sharing/smb/smb-status/components/smb-open-files/smb-open-files.component.ts +++ b/src/app/pages/sharing/smb/smb-status/components/smb-open-files/smb-open-files.component.ts @@ -42,6 +42,7 @@ export class SmbOpenFilesComponent implements OnChanges { textColumn({ title: this.translate.instant('Opened at'), propertyName: 'opened_at' }), ], { rowTestId: (row) => 'smb-open-file-' + row.username + '-' + row.uid, + ariaLabels: (row) => [row.username, this.translate.instant('SMB Open File')], }); constructor( diff --git a/src/app/pages/sharing/smb/smb-status/components/smb-session-list/smb-session-list.component.ts b/src/app/pages/sharing/smb/smb-status/components/smb-session-list/smb-session-list.component.ts index 981390c7daf..dec78b3b9c7 100644 --- a/src/app/pages/sharing/smb/smb-status/components/smb-session-list/smb-session-list.component.ts +++ b/src/app/pages/sharing/smb/smb-status/components/smb-session-list/smb-session-list.component.ts @@ -44,6 +44,7 @@ export class SmbSessionListComponent implements OnInit { }), ], { rowTestId: (row) => 'smb-session-' + row.session_id, + ariaLabels: (row) => [row.hostname, this.translate.instant('SMB Session')], }); constructor( diff --git a/src/app/pages/sharing/smb/smb-status/components/smb-share-list/smb-share-list.component.ts b/src/app/pages/sharing/smb/smb-status/components/smb-share-list/smb-share-list.component.ts index a0d9e0e3e49..99f9fedeffd 100644 --- a/src/app/pages/sharing/smb/smb-status/components/smb-share-list/smb-share-list.component.ts +++ b/src/app/pages/sharing/smb/smb-status/components/smb-share-list/smb-share-list.component.ts @@ -40,6 +40,7 @@ export class SmbShareListComponent implements OnInit { }), ], { rowTestId: (row) => 'smb-share-' + row.server_id.unique_id + '-' + row.machine, + ariaLabels: (row) => [row.machine, this.translate.instant('SMB Share')], }); constructor( diff --git a/src/app/pages/storage/modules/devices/components/disk-details-panel/disk-details-panel.component.html b/src/app/pages/storage/modules/devices/components/disk-details-panel/disk-details-panel.component.html index 6593dbd7f09..2f5fb3dc287 100644 --- a/src/app/pages/storage/modules/devices/components/disk-details-panel/disk-details-panel.component.html +++ b/src/app/pages/storage/modules/devices/components/disk-details-panel/disk-details-panel.component.html @@ -5,6 +5,7 @@

tabindex="0" class="mobile-back-button" ixTest="disk-details-back" + [attr.aria-label]="'Back' | translate" (click)="onCloseMobileDetails()" (keydown.enter)="onCloseMobileDetails()" > diff --git a/src/app/pages/storage/modules/disks/components/disk-list/disk-list.component.ts b/src/app/pages/storage/modules/disks/components/disk-list/disk-list.component.ts index e5baa5178cb..ce180feb8d1 100644 --- a/src/app/pages/storage/modules/disks/components/disk-list/disk-list.component.ts +++ b/src/app/pages/storage/modules/disks/components/disk-list/disk-list.component.ts @@ -127,6 +127,7 @@ export class DiskListComponent implements OnInit { }), ], { rowTestId: (row) => `disk-${row.name}`, + ariaLabels: (row) => [row.name, this.translate.instant('Disk')], }); get hiddenColumns(): Column>[] { diff --git a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts index 74e9046fa9b..dd811393b92 100644 --- a/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts +++ b/src/app/pages/storage/modules/disks/components/smart-test-result-list/smart-test-result-list.component.ts @@ -71,6 +71,7 @@ export class SmartTestResultListComponent implements OnInit { }), ], { rowTestId: (row) => `smart-test-result-${row.disk}-${row.num}`, + ariaLabels: (row) => [row.disk, this.translate.instant('Smart Test Result')], }); get hiddenColumns(): Column>[] { diff --git a/src/app/pages/storage/modules/pool-manager/components/inspect-vdevs-dialog/inspect-vdevs-dialog.component.html b/src/app/pages/storage/modules/pool-manager/components/inspect-vdevs-dialog/inspect-vdevs-dialog.component.html index 14202db58fe..c838c76a55d 100644 --- a/src/app/pages/storage/modules/pool-manager/components/inspect-vdevs-dialog/inspect-vdevs-dialog.component.html +++ b/src/app/pages/storage/modules/pool-manager/components/inspect-vdevs-dialog/inspect-vdevs-dialog.component.html @@ -22,6 +22,7 @@

{{ '{type} VDEVs' | translate: { type: (getTypeLabel(selectedType) | transla mat-dialog-close class="close-icon" ixTest="close-button" + [aria-label]="'Close Inspect VDEVs Dialog' | translate" > diff --git a/src/app/pages/system/advanced/access/access-card/access-card.component.html b/src/app/pages/system/advanced/access/access-card/access-card.component.html index 94167d5ca24..a577d7aafde 100644 --- a/src/app/pages/system/advanced/access/access-card/access-card.component.html +++ b/src/app/pages/system/advanced/access/access-card/access-card.component.html @@ -16,6 +16,7 @@

{{ 'Access' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['sessions', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigure()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/access/access-card/access-card.component.ts b/src/app/pages/system/advanced/access/access-card/access-card.component.ts index 095919b4d70..f6fabb1906e 100644 --- a/src/app/pages/system/advanced/access/access-card/access-card.component.ts +++ b/src/app/pages/system/advanced/access/access-card/access-card.component.ts @@ -83,6 +83,7 @@ export class AccessCardComponent implements OnInit { }), ], { rowTestId: (row) => 'session-' + this.getUsername(row) + '-' + row.origin, + ariaLabels: (row) => [this.getUsername(row), this.translate.instant('Session')], }); get isEnterprise(): boolean { diff --git a/src/app/pages/system/advanced/access/access-card/access-card.elements.ts b/src/app/pages/system/advanced/access/access-card/access-card.elements.ts index dd40819952b..fa71a05ba58 100644 --- a/src/app/pages/system/advanced/access/access-card/access-card.elements.ts +++ b/src/app/pages/system/advanced/access/access-card/access-card.elements.ts @@ -9,6 +9,11 @@ export const accessCardElements = { synonyms: [T('Configure Sessions'), T('Sessions')], anchor: 'access-card', }, + configure: { + anchor: 'access-settings', + hierarchy: [T('Configure Access')], + synonyms: [T('Access Settings')], + }, terminateOtherSessions: { hierarchy: [T('Terminate Other Sessions')], synonyms: [T('Terminate Other User Sessions')], diff --git a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.html b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.html index 07659d57748..653da0fd925 100644 --- a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.html +++ b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.html @@ -18,6 +18,7 @@

mat-button [ixTest]="['configure', 'ip-address']" [disabled]="dataProvider.isLoading$ | async" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigure()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.ts b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.ts index d46a802adb6..e2bd6548a0e 100644 --- a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.ts +++ b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.component.ts @@ -57,6 +57,7 @@ export class AllowedAddressesCardComponent implements OnInit { }), ], { rowTestId: (row) => 'allowed-address-' + row.address, + ariaLabels: (row) => [row.address, this.translate.instant('Allowed Address')], }); constructor( diff --git a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.elements.ts b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.elements.ts index c3a59d1af78..5e9fec66c11 100644 --- a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.elements.ts +++ b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-card/allowed-addresses-card.elements.ts @@ -9,5 +9,10 @@ export const allowedAddressesCardElements = { hierarchy: [T('Allowed IP Addressed')], anchor: 'allowed-addresses-card', }, + configure: { + anchor: 'allowed-addresses-settings', + hierarchy: [T('Configure Allowed IP Addresses')], + synonyms: [T('Allowed IP Addresses Settings')], + }, }, } satisfies UiSearchableElement; diff --git a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-form/allowed-addresses-form.component.html b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-form/allowed-addresses-form.component.html index 0befe5c7704..702e354d54d 100644 --- a/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-form/allowed-addresses-form.component.html +++ b/src/app/pages/system/advanced/allowed-addresses/allowed-addresses-form/allowed-addresses-form.component.html @@ -16,6 +16,7 @@ > {{ 'Audit' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['audit', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/audit/audit-card/audit-card.elements.ts b/src/app/pages/system/advanced/audit/audit-card/audit-card.elements.ts index e6f612ad7fc..79fd625869c 100644 --- a/src/app/pages/system/advanced/audit/audit-card/audit-card.elements.ts +++ b/src/app/pages/system/advanced/audit/audit-card/audit-card.elements.ts @@ -8,6 +8,11 @@ export const auditCardElements = { audit: { anchor: 'audit-card', }, + configure: { + anchor: 'audit-settings', + hierarchy: [T('Configure Audit')], + synonyms: [T('Audit Settings')], + }, retention: { hierarchy: [T('Retention')], }, diff --git a/src/app/pages/system/advanced/console/console-card/console-card.component.html b/src/app/pages/system/advanced/console/console-card/console-card.component.html index 6ce7426eb82..03b96acf610 100644 --- a/src/app/pages/system/advanced/console/console-card/console-card.component.html +++ b/src/app/pages/system/advanced/console/console-card/console-card.component.html @@ -6,6 +6,7 @@

{{ 'Console' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['console', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/console/console-card/console-card.elements.ts b/src/app/pages/system/advanced/console/console-card/console-card.elements.ts index 6345d4c8e84..bef9d5e620e 100644 --- a/src/app/pages/system/advanced/console/console-card/console-card.elements.ts +++ b/src/app/pages/system/advanced/console/console-card/console-card.elements.ts @@ -8,6 +8,11 @@ export const consoleCardElements = { console: { anchor: 'console-card', }, + configure: { + anchor: 'console-settings', + hierarchy: [T('Configure Console')], + synonyms: [T('Console Settings')], + }, consoleMenu: { hierarchy: [T('Console Menu')], synonyms: [T('Show Text Console without Password Prompt')], diff --git a/src/app/pages/system/advanced/cron/cron-card/cron-card.component.ts b/src/app/pages/system/advanced/cron/cron-card/cron-card.component.ts index bb5fe89a47a..1e49e7404fc 100644 --- a/src/app/pages/system/advanced/cron/cron-card/cron-card.component.ts +++ b/src/app/pages/system/advanced/cron/cron-card/cron-card.component.ts @@ -95,6 +95,7 @@ export class CronCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-cron-' + row.command + '-' + row.user, + ariaLabels: (row) => [row.command, this.translate.instant('Cron Job')], }); constructor( diff --git a/src/app/pages/system/advanced/cron/cron-list/cron-list.component.ts b/src/app/pages/system/advanced/cron/cron-list/cron-list.component.ts index 5654e0d41c6..dd9fc335530 100644 --- a/src/app/pages/system/advanced/cron/cron-list/cron-list.component.ts +++ b/src/app/pages/system/advanced/cron/cron-list/cron-list.component.ts @@ -88,6 +88,7 @@ export class CronListComponent implements OnInit { }), ], { rowTestId: (row) => 'cron-' + row.command + '-' + row.description, + ariaLabels: (row) => [row.command, this.translate.instant('Cron Job')], }); get hiddenColumns(): Column>[] { diff --git a/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.component.html b/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.component.html index 97aa95b9a4c..b1e1dbdc275 100644 --- a/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.component.html +++ b/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.component.html @@ -7,6 +7,7 @@

{{ 'Global Two Factor Authentication' | translate }}

id="global-two-factor-auth" mat-button [ixTest]="['two-factor-auth', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed(twoFactorAuthConfig)" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.elements.ts b/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.elements.ts index e600900908f..86cb5a912ed 100644 --- a/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.elements.ts +++ b/src/app/pages/system/advanced/global-two-factor-auth/global-two-factor-card/global-two-factor-card.elements.ts @@ -8,6 +8,11 @@ export const globalTwoFactorCardElements = { globalTwoFA: { anchor: 'global-two-factor-card', }, + configure: { + anchor: 'global-two-factor-settings', + hierarchy: [T('Configure Global Two Factor Authentication')], + synonyms: [T('Global Two Factor Authentication Settings'), T('2FA Settings')], + }, globallyEnabled: { hierarchy: [T('Global 2FA Enable')], synonyms: [T('Enable Two Factor Authentication Globally'), T('Two Factor Auth'), T('2FA')], diff --git a/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.component.ts b/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.component.ts index ed51b26a31e..19a2f397a87 100644 --- a/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.component.ts +++ b/src/app/pages/system/advanced/init-shutdown/init-shutdown-card/init-shutdown-card.component.ts @@ -79,6 +79,7 @@ export class InitShutdownCardComponent implements OnInit { }), ], { rowTestId: (row) => 'card-init-shutdown-' + row.command + '-' + row.when, + ariaLabels: (row) => [row.command, this.translate.instant('Init/Shutdown Script')], }); constructor( diff --git a/src/app/pages/system/advanced/init-shutdown/init-shutdown-list/init-shutdown-list.component.ts b/src/app/pages/system/advanced/init-shutdown/init-shutdown-list/init-shutdown-list.component.ts index 7e70c8741e5..2fc74537715 100644 --- a/src/app/pages/system/advanced/init-shutdown/init-shutdown-list/init-shutdown-list.component.ts +++ b/src/app/pages/system/advanced/init-shutdown/init-shutdown-list/init-shutdown-list.component.ts @@ -86,6 +86,7 @@ export class InitShutdownListComponent implements OnInit { }), ], { rowTestId: (row) => 'init-shutdown-' + row.command + '-' + row.type, + ariaLabels: (row) => [row.command, this.translate.instant('Init/Shutdown Script')], }); constructor( diff --git a/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.component.html b/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.component.html index 7922f2b19df..c600c6ab19a 100644 --- a/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.component.html +++ b/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.component.html @@ -6,6 +6,7 @@

{{ 'Isolated GPU Device(s)' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['isolated-gpus-devices', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.elements.ts b/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.elements.ts index c4f10efb726..d7370b332df 100644 --- a/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.elements.ts +++ b/src/app/pages/system/advanced/isolated-gpus/isolated-gpus-card/isolated-gpus-card.elements.ts @@ -8,6 +8,11 @@ export const isolatedGpusCardElements = { isolatedGpus: { anchor: 'configure-isolated-gpus', }, + configure: { + anchor: 'isolated-gpus-settings', + hierarchy: [T('Configure Isolated GPU Devices')], + synonyms: [T('Isolated GPU Devices Settings')], + }, isolatedGpuPciIds: { hierarchy: [T('GPUs')], }, diff --git a/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.component.html b/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.component.html index 728ce85c630..6de5990debb 100644 --- a/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.component.html +++ b/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.component.html @@ -6,6 +6,7 @@

{{ 'Kernel' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['kernel', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed(debugKernel)" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.elements.ts b/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.elements.ts index 1c71916364b..d33df7a21aa 100644 --- a/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.elements.ts +++ b/src/app/pages/system/advanced/kernel/kernel-card/kernel-card.elements.ts @@ -8,6 +8,11 @@ export const kernelCardElements = { kernel: { anchor: 'kernel-card', }, + configure: { + anchor: 'kernel-settings', + hierarchy: [T('Configure Kernel')], + synonyms: [T('Kernel Settings')], + }, enableKernelDebug: { hierarchy: [T('Enable Kernel Debug')], }, diff --git a/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.component.html b/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.component.html index 81a1e4eedd0..a0b4354c19a 100644 --- a/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.component.html +++ b/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.component.html @@ -6,6 +6,7 @@

{{ 'Replication' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['replication', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.elements.ts b/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.elements.ts index 7be9ebe27ce..ded22b02ebe 100644 --- a/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.elements.ts +++ b/src/app/pages/system/advanced/replication/replication-settings-card/replication-settings-card.elements.ts @@ -8,6 +8,11 @@ export const replicationSettingsCardElements = { replication: { anchor: 'replication-card', }, + configure: { + anchor: 'replication-settings', + hierarchy: [T('Configure Replication')], + synonyms: [T('Replication Settings')], + }, replicationTasksLimit: { hierarchy: [T('Replication Tasks Limit')], }, diff --git a/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.component.html b/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.component.html index dd011775b7c..b705d9dd4bf 100644 --- a/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.component.html +++ b/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.component.html @@ -6,6 +6,7 @@

{{ 'Self-Encrypting Drive' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['self-encrypted-drive', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigure()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.elements.ts b/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.elements.ts index 95be239ea8e..7be5537e1f1 100644 --- a/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.elements.ts +++ b/src/app/pages/system/advanced/self-encrypting-drive/self-encrypting-drive-card/self-encrypting-drive-card.elements.ts @@ -8,6 +8,11 @@ export const sedCardElements = { selfEncryptingDrive: { anchor: 'sed-card', }, + configure: { + anchor: 'sed-settings', + hierarchy: [T('Configure Self-Encrypting Drive')], + synonyms: [T('Self-Encrypting Drive Settings')], + }, sedUser: { hierarchy: [T('ATA Security User')], synonyms: [T('SED User')], diff --git a/src/app/pages/system/advanced/storage/storage-card/storage-card.component.html b/src/app/pages/system/advanced/storage/storage-card/storage-card.component.html index 8d1573f77cd..9a5b3d99122 100644 --- a/src/app/pages/system/advanced/storage/storage-card/storage-card.component.html +++ b/src/app/pages/system/advanced/storage/storage-card/storage-card.component.html @@ -6,6 +6,7 @@

{{ 'Storage' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['storage', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/storage/storage-card/storage-card.elements.ts b/src/app/pages/system/advanced/storage/storage-card/storage-card.elements.ts index cb2172ff54f..e9050bffd00 100644 --- a/src/app/pages/system/advanced/storage/storage-card/storage-card.elements.ts +++ b/src/app/pages/system/advanced/storage/storage-card/storage-card.elements.ts @@ -9,6 +9,11 @@ export const storageCardElements = { synonyms: [T('Disks'), T('Pools')], anchor: 'storage-card', }, + configure: { + anchor: 'storage-settings', + hierarchy: [T('Configure Storage')], + synonyms: [T('Storage Settings')], + }, systemPool: { hierarchy: [T('System Data Pool')], }, diff --git a/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.component.ts b/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.component.ts index 4a250d2b600..b9958023506 100644 --- a/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.component.ts +++ b/src/app/pages/system/advanced/sysctl/sysctl-card/sysctl-card.component.ts @@ -68,6 +68,7 @@ export class SysctlCardComponent implements OnInit { }), ], { rowTestId: (row) => 'sysctl-' + row.var + '-' + row.value, + ariaLabels: (row) => [row.var, this.translate.instant('Sysctl')], }); constructor( diff --git a/src/app/pages/system/advanced/sysctl/tunable-list/tunable-list.component.ts b/src/app/pages/system/advanced/sysctl/tunable-list/tunable-list.component.ts index e025d2d9529..00de6e345b0 100644 --- a/src/app/pages/system/advanced/sysctl/tunable-list/tunable-list.component.ts +++ b/src/app/pages/system/advanced/sysctl/tunable-list/tunable-list.component.ts @@ -76,6 +76,7 @@ export class TunableListComponent implements OnInit { }), ], { rowTestId: (row) => 'tunable-' + row.var + '-' + row.value, + ariaLabels: (row) => [row.var, this.translate.instant('Tunable')], }); constructor( diff --git a/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.component.html b/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.component.html index 00de47659f4..a808a24b23b 100644 --- a/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.component.html +++ b/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.component.html @@ -6,6 +6,7 @@

{{ 'Syslog' | translate }}

*ixRequiresRoles="requiredRoles" mat-button [ixTest]="['syslog', 'configure']" + [ixUiSearch]="searchableElements.elements.configure" (click)="onConfigurePressed()" > {{ 'Configure' | translate }} diff --git a/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.elements.ts b/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.elements.ts index ac2831be8bf..7d31ed3eca4 100644 --- a/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.elements.ts +++ b/src/app/pages/system/advanced/syslog/syslog-card/syslog-card.elements.ts @@ -8,6 +8,11 @@ export const syslogCardElements = { syslog: { anchor: 'syslog-card', }, + configure: { + anchor: 'syslog-settings', + hierarchy: [T('Configure Syslog')], + synonyms: [T('Syslog Settings')], + }, level: { hierarchy: [T('Syslog Level')], }, diff --git a/src/app/pages/system/advanced/system-security/system-security-card/system-security-card.component.html b/src/app/pages/system/advanced/system-security/system-security-card/system-security-card.component.html index 0b688426342..e132dfea2dc 100644 --- a/src/app/pages/system/advanced/system-security/system-security-card/system-security-card.component.html +++ b/src/app/pages/system/advanced/system-security/system-security-card/system-security-card.component.html @@ -7,6 +7,7 @@

{{ 'System Security' | translate }}

mat-button color="default" [ixTest]="['system-security', 'settings']" + [attr.aria-label]="'System Security Settings' | translate" (click)="openSystemSecuritySettings(systemSecurityConfig)" > {{ 'Settings' | translate }} diff --git a/src/app/pages/system/alert-service/alert-service-list/alert-service-list.component.ts b/src/app/pages/system/alert-service/alert-service-list/alert-service-list.component.ts index 97488c31b6d..4aad635f339 100644 --- a/src/app/pages/system/alert-service/alert-service-list/alert-service-list.component.ts +++ b/src/app/pages/system/alert-service/alert-service-list/alert-service-list.component.ts @@ -76,6 +76,7 @@ export class AlertServiceListComponent implements OnInit { }), ], { rowTestId: (row) => `disk-${row.name}`, + ariaLabels: (row) => [row.name, this.translate.instant('Disk')], }); private alertServices: AlertService[] = []; diff --git a/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.ts b/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.ts index 13f3c934196..f799a0230a1 100644 --- a/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.ts +++ b/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.ts @@ -151,6 +151,7 @@ export class BootEnvironmentListComponent implements OnInit { }), ], { rowTestId: (row) => `bootenv-${row.name}`, + ariaLabels: (row) => [row.name, this.translate.instant('Boot Environment')], }); get selectedBootenvs(): BootenvUi[] { diff --git a/src/app/pages/system/enclosure/components/jbof-list/jbof-list.component.ts b/src/app/pages/system/enclosure/components/jbof-list/jbof-list.component.ts index 7a9d55c1513..9b5321e1749 100644 --- a/src/app/pages/system/enclosure/components/jbof-list/jbof-list.component.ts +++ b/src/app/pages/system/enclosure/components/jbof-list/jbof-list.component.ts @@ -67,6 +67,7 @@ export class JbofListComponent implements OnInit { }), ], { rowTestId: (row) => 'jbof-' + row.mgmt_username, + ariaLabels: (row) => [row.mgmt_username, this.translate.instant('JBOF')], }); get emptyConfigService(): EmptyService { diff --git a/src/app/pages/system/enclosure/components/pages/elements-page/elements-page.component.ts b/src/app/pages/system/enclosure/components/pages/elements-page/elements-page.component.ts index 62139dccc26..6da96ae8df6 100644 --- a/src/app/pages/system/enclosure/components/pages/elements-page/elements-page.component.ts +++ b/src/app/pages/system/enclosure/components/pages/elements-page/elements-page.component.ts @@ -62,6 +62,7 @@ export class ElementsPageComponent { ], { rowTestId: (element) => element.descriptor, + ariaLabels: (row) => [row.descriptor, this.translate.instant('Element')], }, ); diff --git a/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts b/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts index 7fa0971ca93..96efee23251 100644 --- a/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts +++ b/src/app/pages/system/general-settings/email/email-card/email-card.elements.ts @@ -9,6 +9,7 @@ export const emailCardElements = { anchor: 'email-card', }, settings: { + anchor: 'email-settings', hierarchy: [T('Configure Email')], synonyms: [T('Send Test Email'), T('Config Email'), T('Set email')], }, diff --git a/src/app/pages/system/general-settings/gui/gui-card/gui-card.component.html b/src/app/pages/system/general-settings/gui/gui-card/gui-card.component.html index b0073fe5dd2..673301a533c 100644 --- a/src/app/pages/system/general-settings/gui/gui-card/gui-card.component.html +++ b/src/app/pages/system/general-settings/gui/gui-card/gui-card.component.html @@ -7,6 +7,7 @@

{{ helptext.guiTitle| translate }}

mat-button color="default" [ixTest]="['gui', 'settings']" + [ixUiSearch]="searchableElements.elements.settings" (click)="openSettings()" > {{ 'Settings' | translate }} diff --git a/src/app/pages/system/general-settings/gui/gui-card/gui-card.elements.ts b/src/app/pages/system/general-settings/gui/gui-card/gui-card.elements.ts index f73c5686e0b..becc7557880 100644 --- a/src/app/pages/system/general-settings/gui/gui-card/gui-card.elements.ts +++ b/src/app/pages/system/general-settings/gui/gui-card/gui-card.elements.ts @@ -14,6 +14,10 @@ export const guiCardElements = { sslCertificate: { hierarchy: [T('SSL Certificate')], }, + settings: { + anchor: 'gui-settings', + hierarchy: [T('GUI Settings')], + }, ipv4Address: { hierarchy: [T('IPv4 Address')], synonyms: [T('Web Interface Address')], diff --git a/src/app/pages/system/general-settings/localization/localization-card/localization-card.component.html b/src/app/pages/system/general-settings/localization/localization-card/localization-card.component.html index c45fe4647ea..a0377ed3b18 100644 --- a/src/app/pages/system/general-settings/localization/localization-card/localization-card.component.html +++ b/src/app/pages/system/general-settings/localization/localization-card/localization-card.component.html @@ -10,6 +10,7 @@

{{ helptext.localeTitle | translate }}

mat-button color="default" [ixTest]="['localization', 'settings']" + [ixUiSearch]="searchableElements.elements.settings" (click)="openSettings(generalConfig)" > {{ 'Settings' | translate }} diff --git a/src/app/pages/system/general-settings/localization/localization-card/localization-card.elements.ts b/src/app/pages/system/general-settings/localization/localization-card/localization-card.elements.ts index d8540d6ac18..eb0fcb61b9b 100644 --- a/src/app/pages/system/general-settings/localization/localization-card/localization-card.elements.ts +++ b/src/app/pages/system/general-settings/localization/localization-card/localization-card.elements.ts @@ -8,6 +8,10 @@ export const localizationCardElements = { localization: { anchor: 'localization-card', }, + settings: { + anchor: 'localization-card', + hierarchy: [T('Localization Settings')], + }, language: { hierarchy: [T('Language')], synonyms: [T('Translate App')], diff --git a/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.component.ts b/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.component.ts index d7215dcf888..2c1f0ec11d8 100644 --- a/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.component.ts +++ b/src/app/pages/system/general-settings/ntp-server/ntp-server-card/ntp-server-card.component.ts @@ -74,6 +74,7 @@ export class NtpServerCardComponent implements OnInit { }), ], { rowTestId: (row) => 'ntp-server-' + row.address + '-' + row.minpoll + '-' + row.maxpoll, + ariaLabels: (row) => [row.address, this.translate.instant('NTP Server')], }); constructor( diff --git a/src/app/pages/system/old-view-enclosure/components/jbof-list/jbof-list.component.ts b/src/app/pages/system/old-view-enclosure/components/jbof-list/jbof-list.component.ts index 137b1f92974..351050c7873 100644 --- a/src/app/pages/system/old-view-enclosure/components/jbof-list/jbof-list.component.ts +++ b/src/app/pages/system/old-view-enclosure/components/jbof-list/jbof-list.component.ts @@ -65,6 +65,7 @@ export class JbofListComponent implements OnInit { }), ], { rowTestId: (row) => 'jbof-' + row.mgmt_username, + ariaLabels: (row) => [row.mgmt_username, this.translate.instant('JBOF')], }); get emptyConfigService(): EmptyService { diff --git a/src/app/pages/vm/devices/device-list/device-list/device-list.component.ts b/src/app/pages/vm/devices/device-list/device-list/device-list.component.ts index 6a459d077de..0b5c24003ef 100644 --- a/src/app/pages/vm/devices/device-list/device-list/device-list.component.ts +++ b/src/app/pages/vm/devices/device-list/device-list/device-list.component.ts @@ -56,6 +56,7 @@ export class DeviceListComponent implements OnInit { actionsColumn({}), ], { rowTestId: (row) => 'vm-device-' + row.dtype + '-' + row.order, + ariaLabels: (row) => [row.dtype, this.translate.instant('Device')], }); get vmId(): number { diff --git a/src/app/pages/vm/vm-list/vm-list.component.ts b/src/app/pages/vm/vm-list/vm-list.component.ts index 958fa45b4ba..619db10a276 100644 --- a/src/app/pages/vm/vm-list/vm-list.component.ts +++ b/src/app/pages/vm/vm-list/vm-list.component.ts @@ -122,6 +122,7 @@ export class VmListComponent implements OnInit { }), ], { rowTestId: (row) => 'virtual-machine-' + row.name, + ariaLabels: (row) => [row.name, this.translate.instant('Virtual Machine')], }); get hiddenColumns(): Column>[] { diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 7d58672fd91..e7a8649010c 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -29,6 +29,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -85,6 +86,7 @@ "ACL Mode": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -101,6 +103,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access": "", @@ -240,6 +243,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -333,8 +337,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -370,6 +376,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -470,6 +477,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -552,6 +560,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Pool Condition": "", @@ -620,6 +629,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -679,6 +689,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -767,17 +778,24 @@ "Clone Boot Environment": "", "Clone To New Dataset": "", "Clone to New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -816,14 +834,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -854,6 +883,7 @@ "Connection port number on the central key server.": "", "Console": "", "Console Menu": "", + "Console Settings": "", "Container": "", "Container Images": "", "Container Name": "", @@ -1023,6 +1053,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1195,6 +1226,7 @@ "Directory Service Write": "", "Directory Services Groups": "", "Directory Services Monitor": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1256,6 +1288,7 @@ "Do not set this if the Serial Port is disabled.": "", "Do you want to configure the ACL?": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1357,6 +1390,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email Options": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", @@ -1647,6 +1681,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags Advanced": "", "Flags Basic": "", @@ -1780,6 +1815,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide error output (stderr) from the command. When unset, any error output is mailed to the user account cron used to run the command.": "", "Hide from MSR": "", "Hide standard output (stdout) from the command. When unset, any standard output is mailed to the user account cron used to run the command.": "", @@ -1856,6 +1893,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "ISO save location": "", "Icon URL": "", "Identification": "", @@ -1982,6 +2020,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", @@ -1989,10 +2028,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2020,6 +2061,7 @@ "Kerberos Realms": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2060,6 +2102,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2315,8 +2358,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv4": "", "NFSv4 DNS Domain": "", "NIC": "", @@ -2453,6 +2499,7 @@ "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", "Newsletter": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -2761,6 +2808,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Priority Code Point": "", "Privacy Passphrase": "", "Privacy Protocol": "", @@ -2886,6 +2934,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -2912,6 +2961,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -2929,6 +2980,7 @@ "Report a bug": "", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3019,6 +3071,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3083,11 +3136,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3105,6 +3163,7 @@ "SSH Connection saved": "", "SSH Connections": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3164,6 +3223,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3289,6 +3349,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3482,6 +3543,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3496,13 +3558,13 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", "Signing": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3515,6 +3577,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3524,6 +3588,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3589,6 +3654,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -3677,6 +3743,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3693,6 +3760,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4017,6 +4085,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4053,6 +4122,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4231,6 +4301,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4276,6 +4347,7 @@ "View/Download Certificate": "", "View/Download Key": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization is not supported": "", @@ -4432,8 +4504,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 676a18478e8..9920df3fea9 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -14,6 +14,7 @@ ", ": "", "...": "", "... Make sure the TrueNAS system is powered on and connected to the network.": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "", "Authentication protocol used to authenticate messages sent on behalf of the specified Username.": "", @@ -61,12 +62,14 @@ "ACL Editor": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ALERT": "", "ALL Initiators Allowed": "", "ARN": "", "ATA Security User": "", + "Abort Job": "", "Accept": "", "Access Control Entry": "", "Access Control Entry (ACE) user or group. Select a specific User or Group for this entry, owner@ to apply this entry to the user that owns the dataset, group@ to apply this entry to the group that owns the dataset, or everyone@ to apply this entry to all users and groups. See nfs4_setfacl(1) NFSv4 ACL ENTRIES.": "", @@ -167,6 +170,7 @@ "Add listen": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", "Additional Domains:": "", @@ -220,8 +224,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -248,6 +254,7 @@ "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -329,6 +336,7 @@ "Attaches privileges to the group. Only needed if you need users in this group access to TrueNAS API or WebUI.": "", "Attaching Disk to Boot Pool": "", "Attachments not uploaded": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -383,6 +391,7 @@ "Bind Password": "", "Block (iSCSI) Shares Targets": "", "Boot": "", + "Boot Environment": "", "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", "Boot Pool Status": "", @@ -427,6 +436,7 @@ "CPU Utilization": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSRs": "", "Cache": "", @@ -472,6 +482,7 @@ "Changing dataset permission mode can severely affect existing permissions.": "", "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", "Changing settings below will result in Kubernetes cluster re-initialization deleting installed apps and their data.": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -542,17 +553,24 @@ "Clone Boot Environment": "", "Clone To New Dataset": "", "Clone to New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -586,14 +604,25 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure permissions for this share's dataset now?": "", @@ -608,6 +637,7 @@ "Connected at": "", "Connecting to TrueNAS": "", "Console Menu": "", + "Console Settings": "", "Container Images": "", "Container Name": "", "Container Read": "", @@ -735,6 +765,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -849,6 +880,7 @@ "Directory Service Read": "", "Directory Service Write": "", "Directory Services Groups": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable caching LDAP users and groups in large LDAP environments. When caching is disabled, LDAP users and groups do not appear in dropdown menus, but are still accepted when manually entered.": "", "Disabled in Disk Settings": "", @@ -895,6 +927,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", "Domain Name System": "", @@ -959,6 +992,7 @@ "Edit widget to choose network interface.": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Electing {controller}.": "", + "Element": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", "Email addresses to receive copies of iXsystems Support messages about this issue. Use the format name@domain.com. Separate entries by pressing Enter.": "", "Empty": "", @@ -1175,6 +1209,7 @@ "Finding pools to import...": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1285,6 +1320,8 @@ "Healthy": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", + "Hide Job": "", + "Hide Password": "", "Hide error output (stderr) from the command. When unset, any error output is mailed to the user account cron used to run the command.": "", "Hide from MSR": "", "Hide standard output (stdout) from the command. When unset, any standard output is mailed to the user account cron used to run the command.": "", @@ -1341,6 +1378,7 @@ "IPMI Password Reset": "", "IPMI Read": "", "IPMI Write": "", + "ISCSI Associated Target": "", "ISO save location": "", "Icon URL": "", "Identifier": "", @@ -1455,6 +1493,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", @@ -1462,9 +1501,11 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -1488,6 +1529,7 @@ "Kerberos Realm": "", "Kerberos Realms": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key Usage Config": "", "Key for {id}": "", "Key not set": "", @@ -1513,6 +1555,7 @@ "LUN ID": "", "LUN RPM": "", "Lan": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -1713,8 +1756,11 @@ "Mutual secret password. Required when Peer User is set. Must be different than the Secret.": "", "N/A": "", "NAA": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -1817,6 +1863,7 @@ "New users are not given su permissions if wheel is their primary group.": "", "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", + "Next Page": "", "No Applications Installed": "", "No Applications are Available": "", "No Communication Warning Time": "", @@ -2078,6 +2125,7 @@ "Preferred Trains": "", "Preset": "", "Preset Name": "", + "Previous Page": "", "Privilege": "", "Privileges": "", "Proactive support settings is not available.": "", @@ -2159,6 +2207,7 @@ "Remove file": "", "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -2174,6 +2223,8 @@ "Replicate «{name}» now?": "", "Replication {name} has started.": "", "Replication Admin": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -2189,6 +2240,7 @@ "Replication «{name}» has started.": "", "Report Bug": "", "Report a bug": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -2258,6 +2310,7 @@ "Route v4 Interface": "", "Routing": "", "Rsync": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -2313,10 +2366,15 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -2332,6 +2390,7 @@ "SSH Connection saved": "", "SSH Connections": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair created": "", "SSH Keypair updated": "", "SSH Keyscan": "", @@ -2370,6 +2429,7 @@ "Scrub In Progress:": "", "Scrub Paused": "", "Scrub Pool": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval set to {scrubIntervalValue} days": "", "Search": "", @@ -2444,6 +2504,7 @@ "Selected": "", "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "", "Self-Encrypting Drive": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Feedback": "", "Send Mail Method": "", @@ -2580,6 +2641,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -2592,6 +2654,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -2599,7 +2662,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -2611,6 +2673,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -2619,6 +2683,7 @@ "Snapshot Manager": "", "Snapshot Name Regular Expression": "", "Snapshot Read": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -2681,6 +2746,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -2766,6 +2832,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -2780,6 +2847,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -3042,6 +3110,7 @@ "TrueNAS was unable to reach update servers.": "", "TrueNAS {product} is Free and Open Source software, which is provided as-is with no warranty.": "", "Trust Guest Filters": "", + "Tunable": "", "Tunables": "", "Two Factor Auth": "", "Two Factor Authentication for SSH": "", @@ -3069,6 +3138,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique drive identifier. Log in to a Microsoft account and choose a drive from the Drives List drop-down to add a valid ID.": "", @@ -3204,6 +3274,7 @@ "VM Write": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -3241,6 +3312,7 @@ "View/Download Certificate": "", "View/Download Key": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization is not supported": "", @@ -3374,8 +3446,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 4fa919fc027..5bf359df426 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -25,6 +25,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -52,10 +53,12 @@ "ACL": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ALL Initiators Allowed": "", "ARN": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Control Entry": "", @@ -125,6 +128,7 @@ "Add iSCSI": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Adding data VDEVs of different types is not supported.": "", "Additional Kerberos application settings. See the \"appdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", "Additional Kerberos library settings. See the \"libdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", @@ -155,8 +159,10 @@ "Allow more ciphers for sshd(8) in addition to the defaults in sshd_config(5). None allows unencrypted SSH connections and AES128-CBC allows the 128-bit Advanced Encryption Standard.

WARNING: these ciphers are considered security vulnerabilities and should only be allowed in a secure network environment.": "", "Allow non-unique serialed disks (not recommended)": "", "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -172,6 +178,7 @@ "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "", "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appends a suffix to the share connection path. This is used to provide unique shares on a per-user, per-computer, or per-IP address basis. Suffixes can contain a macro. See the smb.conf manual page for a list of supported macros. The connectpath **must** be preset before a client connects.": "", @@ -232,6 +239,7 @@ "Attaching Disk to Boot Pool": "", "Attachments not uploaded": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -259,6 +267,7 @@ "Backup Tasks": "", "Backup to Cloud or another TrueNAS via links below": "", "Block (iSCSI) Shares Targets": "", + "Boot Environment": "", "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", "Box": "", @@ -291,6 +300,7 @@ "CPU Usage Gauge": "", "CPU Usage per Core Bar Graph": "", "CPU Utilization": "", + "CSR": "", "CSR deleted": "", "CSRs": "", "Cache VDEVs": "", @@ -318,6 +328,7 @@ "Changes to ACL type affect how on-disk ZFS ACL is written and read.\nWhen the ACL type is changed from POSIX to NFSv4, no migration is performed for default and access ACLs encoded in the posix1e acl extended attributes to native ZFS ACLs.\nWhen ACL type is changed from NFSv4 to POSIX, native ZFS ACLs are not converted to posix1e extended attributes, but the native ACL will be used internally by ZFS for access checks.\n\nThis means that the user must manually set new ACLs recursively on the dataset after ACL type changes in order to avoid unexpected permissions behavior.\n\nThis action will be destructive, and so it is advised to take a ZFS snapshot of the dataset prior to ACL type changes and permissions modifications.": "", "Changing Advanced settings can be dangerous when done incorrectly. Please use caution before saving.": "", "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", + "Check": "", "Check Available Apps": "", "Check for Software Updates": "", "Check to enable Audit Logs": "", @@ -335,16 +346,23 @@ "Click for information on TrueNAS SCALE Migration, Nightly trains and other upgrade options.": "", "Click to give {index} star rating.": "", "Client ID": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Write": "", "Cloud Sync to Storj or similar provider": "", @@ -365,12 +383,23 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configured for simultaneous use with SMB and NFS on the same dataset.": "", @@ -382,6 +411,7 @@ "Connected at": "", "Connecting to TrueNAS": "", "Console Menu": "", + "Console Settings": "", "Container Read": "", "Container Write": "", "Continue with the upgrade": "", @@ -487,6 +517,7 @@ "Dataset Information": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Space Management": "", @@ -571,6 +602,7 @@ "Directory Service Read": "", "Directory Service Write": "", "Directory Services Groups": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disabled in Disk Settings": "", "Disabling host path validation may result in undefined behavior from TrueNAS system\n services that access host paths mounted within kubernetes.
\n Undefined behavior may include loss of access to data through inadvertent permissions changes,\n loss of data due to lack of validation of application compatibility, and application stability issues.

\n As such, this configuration is unsupported and bug reports in which this configuration plays a role\n may be closed as a user configuration issue without further investigation.": "", @@ -603,6 +635,7 @@ "Do not save": "", "Do you want to configure the ACL?": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -643,6 +676,7 @@ "Edit group": "", "Edit widget to choose network interface.": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", + "Element": "", "Elements": "", "Empty": "", "Empty drive cage": "", @@ -775,6 +809,7 @@ "Filters": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Flags Advanced": "", "Flags Basic": "", "Flash Identify Light": "", @@ -849,6 +884,8 @@ "Healthy": "", "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", + "Hide Job": "", + "Hide Password": "", "Hide from MSR": "", "High Bandwidth (16)": "", "Highest Temperature": "", @@ -884,6 +921,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "Identify Drive": "", "Identify light is now flashing.": "", "Identify light is now off.": "", @@ -962,6 +1000,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", @@ -969,9 +1008,11 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -989,6 +1030,7 @@ "Kerberos Realms": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key Cert Sign": "", "Key for {id}": "", "Key not set": "", @@ -1016,6 +1058,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -1167,8 +1210,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv4": "", "NFSv4 DNS Domain": "", "NIC": "", @@ -1268,6 +1314,7 @@ "New password": "", "New password and confirmation should match.": "", "Newsletter": "", + "Next Page": "", "No": "", "No Applications Installed": "", "No Applications are Available": "", @@ -1464,6 +1511,7 @@ "Preferred Trains": "", "Preset": "", "Preset Name": "", + "Previous Page": "", "Privilege": "", "Privileges": "", "Proactive support settings is not available.": "", @@ -1530,6 +1578,7 @@ "Remove device": "", "Remove device {name}?": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Rename Boot Environment": "", @@ -1540,6 +1589,8 @@ "Replicate «{name}» now?": "", "Replication {name} has started.": "", "Replication Admin": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -1555,6 +1606,7 @@ "Replication «{name}» has started.": "", "Report Bug": "", "Report a bug": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -1611,6 +1663,7 @@ "Root user (not recommended)": "", "Routing": "", "Rsync": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -1662,10 +1715,15 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -1679,6 +1737,7 @@ "SSH Connection saved": "", "SSH Connections": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair created": "", "SSH Keypair updated": "", "SSH Keyscan": "", @@ -1713,6 +1772,7 @@ "Scrub In Progress:": "", "Scrub Paused": "", "Scrub Pool": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval set to {scrubIntervalValue} days": "", "Search": "", @@ -1771,6 +1831,7 @@ "Select when the command or script runs:
Pre Init is early in the boot process, after mounting filesystems and starting networking.
Post Init is at the end of the boot process, before TrueNAS services start.
Shutdown is during the system power off process.": "", "Selected": "", "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Feedback": "", "Send Mail Method": "", @@ -1856,6 +1917,7 @@ "Show Events": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -1864,11 +1926,11 @@ "Shows only the groups that have quotas. This is the default view.": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed Certificates": "", "Signin": "", "Signing": "", "Signup": "", - "Signup for account": "", "Similar Apps": "", "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "", "Size in GiB of the maximum amount of space that may be consumed by the dataset where the audit dabases are stored.": "", @@ -1878,6 +1940,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot Delete": "", @@ -1885,6 +1949,7 @@ "Snapshot Manager": "", "Snapshot Name Regular Expression": "", "Snapshot Read": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -1927,6 +1992,7 @@ "Start {service} Service": "", "Starting task": "", "Stateful Sets": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -1981,6 +2047,7 @@ "Sysctl": "", "Sysctl \"{name}\" deleted": "", "Syslog": "", + "Syslog Settings": "", "Syslog TLS Certificate Authority": "", "System Audit Read": "", "System Audit Write": "", @@ -1992,6 +2059,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Stats": "", "System Uptime": "", @@ -2166,6 +2234,7 @@ "TrueNAS {product} is Free and Open Source software, which is provided as-is with no warranty.": "", "Trust Guest Filters": "", "Tuesday": "", + "Tunable": "", "Turn Off": "", "Turn Off Service": "", "Turn On Service": "", @@ -2193,6 +2262,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unit": "", @@ -2289,6 +2359,7 @@ "VM Serial Shell": "", "VM Write": "", "VM updated successfully.": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "Validate Host Path": "", @@ -2320,6 +2391,7 @@ "View Netdata": "", "View Release Notes": "", "View Reports": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization is not supported": "", @@ -2431,7 +2503,10 @@ "expires in {n, plural, one {# day} other {# days} }": "", "group@": "", "iSCSI": "", + "iSCSI Extent": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iXsystems does not audit or otherwise validate the contents of third-party applications catalogs. It is incumbent on the user to verify that the new catalog is from a trusted source and that the third-party properly audits its chart contents. Failure to exercise due diligence may expose the user and their data to some or all of the following:
    \n
  • Malicious software
  • \n
  • Broken services on TrueNAS host
  • \n
  • Service disruption on TrueNAS host
  • \n
  • Broken filesystem permissions on Host or within application
  • \n
  • Unexpected deletion of user data
  • \n
  • Unsafe service configuration in application
  • \n
  • Degradation of TrueNAS host performance and stability
  • \n
": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 7df9190b152..055e943104c 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -30,6 +30,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -97,6 +98,7 @@ "ACL Entries": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -113,6 +115,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Based Share Enumeration": "", @@ -245,6 +248,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -336,8 +340,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -373,6 +379,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -467,6 +474,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -542,6 +550,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -612,6 +621,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -668,6 +678,7 @@ "Changing settings below will result in Kubernetes cluster re-initialization deleting installed apps and their data.": "", "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Release Notes": "", @@ -753,18 +764,25 @@ "Clone Boot Environment": "", "Clone To New Dataset": "", "Clone to New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -800,14 +818,25 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -836,6 +865,7 @@ "Connecting to TrueNAS": "", "Connection port number on the central key server.": "", "Console Menu": "", + "Console Settings": "", "Container": "", "Container Images": "", "Container Name": "", @@ -999,6 +1029,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1171,6 +1202,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1229,6 +1261,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1337,6 +1370,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1704,6 +1738,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1850,6 +1885,8 @@ "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -1936,6 +1973,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2079,6 +2117,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2087,10 +2126,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2120,6 +2161,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2166,6 +2208,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2433,8 +2476,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2575,6 +2621,7 @@ "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", "Newsletter": "", + "Next Page": "", "No": "", "No Applications Installed": "", "No Applications are Available": "", @@ -2910,6 +2957,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3049,6 +3097,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3076,6 +3125,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3094,6 +3145,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3190,6 +3242,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3252,10 +3305,15 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3275,6 +3333,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3337,6 +3396,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3477,6 +3537,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3673,6 +3734,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3693,6 +3755,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3700,7 +3763,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3713,6 +3775,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3723,6 +3787,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3790,6 +3855,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -3881,6 +3947,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3897,6 +3964,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4227,6 +4295,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4262,6 +4331,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4435,6 +4505,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4480,6 +4551,7 @@ "View/Download Certificate": "", "View/Download Key": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4642,8 +4714,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index b272bf61657..040b91f475f 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -3,12 +3,15 @@ ", ": "", "...": "", "2FA": "", + "2FA Settings": "", "A single bandwidth limit or bandwidth limit schedule in rclone format. Separate entries by pressing Enter. Example: 08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off. Units can be specified with a suffix of b (default), k, M, or G. See rclone --bwlimit.": "", "ACL": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ALL Initiators Allowed": "", + "Abort Job": "", "Accept": "", "Add ACME DNS-Authenticator": "", "Add Backup Credential": "", @@ -22,14 +25,19 @@ "Add Periodic S.M.A.R.T. Test": "", "Add Widget": "", "Add iSCSI": "", + "Add {item}": "", "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", "Admins": "", "Alert List Write": "", + "Allowed Address": "", + "Allowed IP Addresses Settings": "", + "Api Key": "", "Apps Read": "", "Apps Write": "", "Arbitrary Text": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -40,11 +48,13 @@ "Backblaze B2": "", "Backup Config": "", "Backup Credential": "", + "Boot Environment": "", "Box": "", "Bucket Name": "", "CLI": "", "CPU Recent Usage": "", "CPU Stats": "", + "CSR": "", "CSR deleted": "", "Callback Address": "", "Callback State": "", @@ -54,25 +64,45 @@ "Certificate Authority Write": "", "Certificate Read": "", "Certificate Write": "", + "Check": "", "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "", "Check {name}.": "", "Client ID": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", + "Close {formType} Form": "", + "Cloud Backup Snapshot": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Write": "", "Command Line Interface": "", "Command: {command}": "", "Completed Jobs": "", "Config Email": "", "Config-Reset": "", + "Configure Access": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Confirmation": "", "Console Menu": "", + "Console Settings": "", "Container Read": "", "Container Write": "", "Cooling": "", @@ -104,6 +134,7 @@ "Dataset Data Protection": "", "Dataset Information": "", "Dataset Permissions": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Write": "", @@ -116,6 +147,7 @@ "Directory Service Read": "", "Directory Service Write": "", "Directory Services Groups": "", + "Disable": "", "Disk Details for {disk}": "", "Disk Details for {disk} ({descriptor})": "", "Disk I/O": "", @@ -126,6 +158,7 @@ "Disks with exported pools": "", "Distributed Hot Spares": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docs": "", "Domain Name System": "", "Door Lock": "", @@ -140,6 +173,7 @@ "Edit TrueCloud Backup Task": "", "Edit group": "", "Edit widget to choose network interface.": "", + "Element": "", "Empty drive cage": "", "Enable Kernel Debug": "", "Enable Learning": "", @@ -189,6 +223,7 @@ "Filesystem Data Read": "", "Filesystem Data Write": "", "Filesystem Full Control": "", + "First Page": "", "Flags": "", "Flash Identify Light": "", "Forums": "", @@ -221,6 +256,8 @@ "HTTPS Redirect": "", "Has Allow List": "", "Healthy": "", + "Hide Job": "", + "Hide Password": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Model": "", @@ -238,6 +275,7 @@ "IPMI Write": "", "IPs": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "If automatic login has failed, please try the following credentials manually.": "", "Ignore List": "", "Image Name": "", @@ -269,11 +307,14 @@ "Internal": "", "Invisible": "", "Ipmi": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", + "Job": "", "Jobs History": "", "Jobs in progress": "", "Joining": "", @@ -283,6 +324,7 @@ "Keep Last": "", "Kerberos Keytabs": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key not set": "", "Key set": "", "Keychain Credential Read": "", @@ -295,6 +337,7 @@ "LINK STATE UNKNOWN": "", "LINK STATE UP": "", "Lan": "", + "Last Page": "", "Last Scrub Date": "", "Layout": "", "Layouts": "", @@ -332,6 +375,9 @@ "Multiple Errors": "", "Multiprotocol": "", "NFS Sessions": "", + "NFS Share": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv4 DNS Domain": "", "NS": "", "NTP Server": "", @@ -403,6 +449,7 @@ "New iSCSI": "", "New password": "", "Newsletter": "", + "Next Page": "", "No Enclosure Dispersal Strategy": "", "No License": "", "No available licensed Expansion Shelves ": "", @@ -445,6 +492,7 @@ "Power Menu": "", "Power Supply": "", "Pre Script": "", + "Previous Page": "", "Privilege": "", "Privileges": "", "Processor": "", @@ -464,8 +512,11 @@ "Redfish administrative username.": "", "Reject": "", "Release Notes": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Replication Admin": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -474,6 +525,7 @@ "Replication Task Write Pull": "", "Report Bug": "", "Report a bug": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -498,6 +550,7 @@ "Root TCP Socket": "", "Routing": "", "Rsync": "", + "Rsync Task": "", "Rsync Task Manager": "", "Run «{name}» Cloud Backup now?": "", "S.M.A.R.T.": "", @@ -527,20 +580,27 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", "SMTP": "", "SNMP": "", "SSH Key": "", + "SSH Key Pair": "", "SSL Certificate": "", "SSL Protocols": "", "SSL Web Interface Port": "", "Samba": "", + "Scrub Task": "", "Search Documentation for «{value}»": "", "Search UI": "", "Secret Confirm must match Secret": "", @@ -550,6 +610,7 @@ "Select a layout": "", "Select a template": "", "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "", + "Self-Encrypting Drive Settings": "", "Send Feedback": "", "Send Method": "", "Send Test Email": "", @@ -598,14 +659,18 @@ "Show Built-in Groups": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Sign Out": "", "Signing": "", "Skip": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapshot Manager": "", "Snapshot Read": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -617,6 +682,7 @@ "Standby: TrueNAS Controller {id}": "", "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "", "Stateful Sets": "", + "Static Route": "", "Static Routing": "", "Storj": "", "Storj iX": "", @@ -625,6 +691,7 @@ "Sudo": "", "Support Read": "", "Support Write": "", + "Syslog Settings": "", "System Audit Read": "", "System Audit Write": "", "System Data Pool": "", @@ -632,6 +699,7 @@ "System Information Active Node": "", "System Information Standby Node": "", "System Reports": "", + "System Security Settings": "", "System Stats": "", "System Uptime": "", "System Utilization": "", @@ -661,11 +729,13 @@ "Transport Encryption Behavior": "", "TrueCommand Read": "", "TrueCommand Write": "", + "Tunable": "", "Turn Off": "", "UI": "", "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", + "Uncheck": "", "Unix Socket": "", "Unlink": "", "Unshare {name}": "", @@ -691,11 +761,13 @@ "VM Read": "", "VM Serial Shell": "", "VM Write": "", + "VMware Snapshot": "", "Vdev:": "", "View Changelog": "", "View Less": "", "View Netdata": "", "View Release Notes": "", + "Virtual Machine": "", "Voltage": "", "Watch List": "", "Web Interface Address": "", @@ -727,7 +799,10 @@ "disk writes": "", "everyone@": "", "group@": "", + "iSCSI Extent": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "never ran": "", "on this enclosure.": "", @@ -4106,13 +4181,13 @@ "Sign": "Signer", "Sign CSR": "Signer CSR", "Sign In": "Se connecter", + "Sign up for account": "Créer un compte", "Signed By": "Signé par", "Signed Certificates": "Certificats signés", "Signin": "S'identifier", "Signing Certificate Authority": "Autorité de certification signataire", "Signing Request": "Demande de signature", "Signup": "S'inscrire", - "Signup for account": "Créer un compte", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "Les clients peuvent activer le support proactif d'iXsystems (Silver / Gold Coverage). Ceci envoie automatiquement des e-mails à iXsystems lorsque certaines conditions se produisent sur ce système TrueNAS. L'équipe de support iX communiquera rapidement avec les contacts enregistrés ci-dessous pour résoudre rapidement tout problème qui aurait pu survenir sur le système.", "Similar Apps": "Applications similaires", "Site Name": "Nom du site", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index d2c0145d1fd..43f376972de 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -32,6 +32,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -95,6 +96,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -111,6 +113,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -242,6 +245,7 @@ "Add listen": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -326,8 +330,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -360,6 +366,7 @@ "An instance of this app already installed. Click the badge to see installed apps.": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Append @realm to cn in LDAP queries for both groups and users when User CN is set).": "", @@ -445,6 +452,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -510,6 +518,7 @@ "Block (iSCSI) Shares Targets": "", "Block Size": "", "Block size": "", + "Boot Environment": "", "Boot Loader Type": "", "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", @@ -574,6 +583,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -627,6 +637,7 @@ "Changing settings below will result in Kubernetes cluster re-initialization deleting installed apps and their data.": "", "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -701,17 +712,24 @@ "Clone Boot Environment": "", "Clone To New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -748,14 +766,25 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure {name}": "", @@ -780,6 +809,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -941,6 +971,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1101,6 +1132,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1156,6 +1188,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1255,6 +1288,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 top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1620,6 +1654,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1776,6 +1811,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -1870,6 +1907,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2014,6 +2052,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2022,10 +2061,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2055,6 +2096,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2102,6 +2144,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2380,8 +2423,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2531,6 +2577,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -2877,6 +2924,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3020,6 +3068,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3048,6 +3097,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3066,6 +3117,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3163,6 +3215,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3230,11 +3283,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3255,6 +3313,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3318,6 +3377,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3462,6 +3522,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3664,6 +3725,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3684,6 +3746,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3691,7 +3754,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3705,6 +3767,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3715,6 +3779,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3784,6 +3849,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -3880,6 +3946,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3897,6 +3964,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4232,6 +4300,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4270,6 +4339,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4461,6 +4531,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4509,6 +4580,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4679,8 +4751,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 5b7db6cc98d..47dcdd908e9 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -25,6 +25,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -85,6 +86,7 @@ "ACL Entries": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -98,6 +100,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access": "", @@ -229,6 +232,7 @@ "Add listen": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -297,8 +301,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -328,6 +334,7 @@ "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Append @realm to cn in LDAP queries for both groups and users when User CN is set).": "", @@ -412,6 +419,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -473,6 +481,7 @@ "Bind Interfaces": "", "Bind Password": "", "Block (iSCSI) Shares Targets": "", + "Boot Environment": "", "Boot Loader Type": "", "Boot Method": "", "Boot Pool Condition": "", @@ -529,6 +538,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -587,6 +597,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -657,17 +668,24 @@ "Clicking Continue allows TrueNAS to finish the update in the background while Abort stops the process and reverts the dataset ACL to the previously active ACL.": "", "Client ID": "", "Clone To New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -702,14 +720,25 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure {name}": "", @@ -732,6 +761,7 @@ "Connection port number on the central key server.": "", "Connections": "", "Console Menu": "", + "Console Settings": "", "Container": "", "Container Images": "", "Container Name": "", @@ -890,6 +920,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1055,6 +1086,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1111,6 +1143,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1220,6 +1253,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email Options": "", "Email Subject": "", @@ -1536,6 +1570,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1683,6 +1718,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Stderr": "", "Hide Stdout": "", "Hide from MSR": "", @@ -1765,6 +1802,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -1904,6 +1942,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -1912,10 +1951,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -1944,6 +1985,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -1989,6 +2031,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2260,8 +2303,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2401,6 +2447,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -2718,6 +2765,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary Group": "", "Priority Code Point": "", @@ -2850,6 +2898,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -2875,6 +2924,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -2892,6 +2943,7 @@ "Report a bug": "", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -2977,6 +3029,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3042,11 +3095,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3065,6 +3123,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3119,6 +3178,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval set to {scrubIntervalValue} days": "", "Search Alert Categories": "", @@ -3235,6 +3295,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3410,6 +3471,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -3426,6 +3488,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3433,7 +3496,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3445,6 +3507,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3455,6 +3519,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3518,6 +3583,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -3606,6 +3672,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3620,6 +3687,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -3928,6 +3996,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Turn Off": "", "Turn Off Service": "", "Turn On Service": "", @@ -3965,6 +4034,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4138,6 +4208,7 @@ "VM Write": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4184,6 +4255,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4348,8 +4420,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 08d74cee936..dd4b2ea68ed 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -3,6 +3,7 @@ "\n It looks like your session has been inactive for more than {lifetime} seconds.
\n For security reasons we will log you out at {time}.\n ": "", " as of {dateTime}": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "Sensitive assumes filenames are case sensitive. Insensitive assumes filenames are not case sensitive.": "", "Yes: Disables the Password fields. The account cannot use password-based logins for services. For example, disabling the password prevents using account credentials to log in to an SMB share or open an SSH session on the system. The Lock User and Permit Sudo options are also removed.

No: Requires adding a Password to the account. The account can use the saved Password to authenticate with password-based services.": "", @@ -11,8 +12,10 @@ "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", "ACL": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ALL Initiators Allowed": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Based Share Enumeration": "", @@ -57,6 +60,7 @@ "Add Widget": "", "Add iSCSI": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Adding data VDEVs of different types is not supported.": "", "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", @@ -69,7 +73,9 @@ "All disks healthy.": "", "Allow Directory Service users to access WebUI": "", "Allow non-unique serialed disks (not recommended)": "", + "Allowed Address": "", "Allowed IP Addressed": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed addresses have been updated": "", @@ -79,6 +85,7 @@ "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "", "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", + "Api Key": "", "Application Metadata": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", "Applications allow you to extend the functionality of the TrueNAS server beyond traditional Network Attached Storage (NAS) workloads, and as such are not covered by iXsystems software support contracts unless explicitly stated. Defective or malicious applications can lead to data loss or exposure, as well possible disruptions of core NAS functionality.\n\n iXsystems makes no warranty of any kind as to the suitability or safety of using applications. Bug reports in which applications are accessing the same data and filesystem paths as core NAS sharing functionality may be closed without further investigation.": "", @@ -118,6 +125,7 @@ "Attaching Disk to Boot Pool": "", "Attachments not uploaded": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -133,6 +141,7 @@ "Backup Credential": "", "Backup Tasks": "", "Backup to Cloud or another TrueNAS via links below": "", + "Boot Environment": "", "Boot Pool Disk Replaced": "", "Box": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", @@ -168,6 +177,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -234,6 +244,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -328,18 +339,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -383,14 +401,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -426,6 +455,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -604,6 +634,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -793,6 +824,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -858,6 +890,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -971,6 +1004,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1347,6 +1381,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1503,6 +1538,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -1597,6 +1634,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -1741,6 +1779,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -1749,10 +1788,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -1782,6 +1823,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -1829,6 +1871,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2107,8 +2150,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2258,6 +2304,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -2604,6 +2651,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -2747,6 +2795,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -2775,6 +2824,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -2793,6 +2844,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -2890,6 +2942,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -2957,11 +3010,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -2982,6 +3040,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3045,6 +3104,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3189,6 +3249,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3391,6 +3452,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3411,6 +3473,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3418,7 +3481,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3432,6 +3494,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3442,6 +3506,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3511,6 +3576,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -3607,6 +3673,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3624,6 +3691,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -3959,6 +4027,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -3997,6 +4066,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4188,6 +4258,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4236,6 +4307,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4406,8 +4478,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 2ecf3dab6cb..aa41b4fcc08 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -28,6 +28,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -97,6 +98,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -113,6 +115,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -258,6 +261,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -357,8 +361,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -394,6 +400,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -494,6 +501,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -581,6 +589,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -651,6 +660,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -717,6 +727,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -811,18 +822,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -866,14 +884,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -909,6 +938,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1087,6 +1117,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1276,6 +1307,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1341,6 +1373,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1454,6 +1487,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1830,6 +1864,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1986,6 +2021,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2080,6 +2117,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2224,6 +2262,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2232,10 +2271,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2265,6 +2306,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2312,6 +2354,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2590,8 +2633,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2741,6 +2787,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3087,6 +3134,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3230,6 +3278,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3258,6 +3307,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3276,6 +3327,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3373,6 +3425,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3440,11 +3493,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3465,6 +3523,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3528,6 +3587,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3672,6 +3732,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3874,6 +3935,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3894,6 +3956,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3901,7 +3964,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3915,6 +3977,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3925,6 +3989,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3994,6 +4059,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4090,6 +4156,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4107,6 +4174,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4442,6 +4510,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4480,6 +4549,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4668,6 +4738,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4716,6 +4787,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4878,8 +4950,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 4d3c6329570..f75326b1990 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -1,12 +1,15 @@ { "": "", "2FA": "", + "2FA Settings": "", "S3 API endpoint URL. When using AWS, the endpoint field can be empty to use the default endpoint for the region, and available buckets are automatically fetched. Refer to the AWS Documentation for a list of Simple Storage Service Website Endpoints.": "", "Yes: Disables the Password fields. The account cannot use password-based logins for services. For example, disabling the password prevents using account credentials to log in to an SMB share or open an SSH session on the system. The Lock User and Permit Sudo options are also removed.

No: Requires adding a Password to the account. The account can use the saved Password to authenticate with password-based services.": "", "A single bandwidth limit or bandwidth limit schedule in rclone format. Separate entries by pressing Enter. Example: 08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off. Units can be specified with a suffix of b (default), k, M, or G. See rclone --bwlimit.": "", "ACL": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Add ACME DNS-Authenticator": "", @@ -41,6 +44,7 @@ "Add Volume": "", "Add Widget": "", "Add iSCSI": "", + "Add {item}": "", "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", "Administrators": "", @@ -48,14 +52,19 @@ "Alert List Write": "", "All disks healthy.": "", "Allow non-unique serialed disks (not recommended)": "", + "Allowed Address": "", "Allowed IP Addressed": "", + "Allowed IP Addresses Settings": "", + "Api Key": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", "Arbitrary Text": "", "Attaching Disk to Boot Pool": "", + "Audit Entry": "", "Audit Settings": "", "Available Memory": "", "Backup Config": "", "Backup Credential": "", + "Boot Environment": "", "Boot Pool Disk Replaced": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browser time: {time}": "", @@ -66,32 +75,53 @@ "CPU Usage Gauge": "", "CPU Usage per Core Bar Graph": "", "CPU Utilization": "", + "CSR": "", "CSR deleted": "", "Caution: Allocating too much memory can slow the system or prevent VMs from running.": "", + "Check": "", "Check for Software Updates": "", "Check the update server daily for any updates on the chosen train. Automatically download an update if one is available. Click APPLY PENDING UPDATE to install the downloaded update.": "", "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "", "Check {name}.": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close scheduler": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Command Line Interface": "", "Command: {command}": "", "Completed Jobs": "", "Config Email": "", + "Configure Access": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Console Menu": "", + "Console Settings": "", "Cooling": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -149,6 +179,7 @@ "Dataset Data Protection": "", "Dataset Information": "", "Dataset Permissions": "", + "Dataset Quota": "", "Dataset Roles": "", "Dataset ZFS Encryption": "", "Default – follow upstream / TrueNAS default": "", @@ -160,6 +191,7 @@ "Descriptor": "", "Desired – encrypt transport if supported by client during session negotiation": "", "Device removed": "", + "Disable": "", "Disk Details for {disk}": "", "Disk Details for {disk} ({descriptor})": "", "Disk I/O": "", @@ -169,6 +201,7 @@ "Disks w/ZFS Errors": "", "Disks with exported pools": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docs": "", "Domain Name System": "", "Door Lock": "", @@ -182,6 +215,7 @@ "Edit TrueCloud Backup Task": "", "Edit group": "", "Edit widget to choose network interface.": "", + "Element": "", "Empty drive cage": "", "Enable Kernel Debug": "", "Enable Learning": "", @@ -214,6 +248,7 @@ "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "", "Feature Request": "", "Fetching Encryption Summary for {dataset}": "", + "First Page": "", "Forums": "", "Free RAM": "", "Front": "", @@ -232,11 +267,14 @@ "HTTPS Port": "", "HTTPS Redirect": "", "Healthy": "", + "Hide Job": "", + "Hide Password": "", "Home Widgets": "", "Hostname Database": "", "IP of 1st Redfish management interface.": "", "IPs": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "If automatic login has failed, please try the following credentials manually.": "", "Import Config": "", "Import Configuration": "", @@ -251,20 +289,25 @@ "Integrate Snapshots with VMware": "", "Internal": "", "Ipmi": "", + "Isolated GPU Devices Settings": "", "Issue": "", + "JBOF": "", "Jira": "", + "Job": "", "Jobs History": "", "Jobs in progress": "", "Joining": "", "Keep Last": "", "Kerberos Keytabs": "", "Kernel Parameters": "", + "Kernel Settings": "", "Keypairs": "", "LDAP configuration updated": "", "LINK STATE DOWN": "", "LINK STATE UNKNOWN": "", "LINK STATE UP": "", "Lan": "", + "Last Page": "", "Last Scrub Date": "", "Layouts": "", "Leaving": "", @@ -281,6 +324,9 @@ "Move widget down": "", "Move widget up": "", "Multiple Errors": "", + "NFS Share": "", + "NFS3 Session": "", + "NFS4 Session": "", "NS": "", "NTP Server": "", "NVMe-oF Expansion Shelves": "", @@ -349,6 +395,7 @@ "New iSCSI": "", "New password": "", "Newsletter": "", + "Next Page": "", "No License": "", "No available licensed Expansion Shelves ": "", "No logs available": "", @@ -371,6 +418,7 @@ "Power Menu": "", "Power Supply": "", "Pre Script": "", + "Previous Page": "", "Privilege": "", "Processor": "", "Prompt": "", @@ -383,9 +431,13 @@ "Redfish administrative username.": "", "Reject": "", "Release Notes": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Manager": "", "Report Bug": "", + "Reporting Exporter": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reset Default Config": "", "Reset Defaults": "", @@ -405,25 +457,33 @@ "Restores files to the selected directory.": "", "Retry": "", "Routing": "", + "Rsync Task": "", "Rsync Task Manager": "", "Run «{name}» Cloud Backup now?": "", "SAS Connector": "", "SAS Expander": "", "SED User": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB User": "", "SMTP": "", "SSH Key": "", + "SSH Key Pair": "", "SSL Certificate": "", "SSL Protocols": "", "SSL Web Interface Port": "", "Samba": "", "Save Config": "", "Saving settings": "", + "Scrub Task": "", "Search Documentation for «{value}»": "", "Search UI": "", "Select Reporting": "", @@ -441,6 +501,7 @@ "Select the directories or files to be sent to the cloud for backup.": "", "Select the folder to store the backup data.": "", "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "", + "Self-Encrypting Drive Settings": "", "Send Method": "", "Send Test Email": "", "Service Name": "", @@ -454,25 +515,32 @@ "Show All": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Sign Out": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapshot Manager": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Time": "", "Snapshot Time {time}": "", "Source Path": "", "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "", + "Static Route": "", "Static Routing": "", "Storj iX": "", "Subfolder": "", "Sudo": "", + "Syslog Settings": "", "System Data Pool": "", "System Image": "", "System Information Active Node": "", "System Information Standby Node": "", "System Reports": "", + "System Security Settings": "", "System Stats": "", "System Uptime": "", "System Utilization": "", @@ -506,11 +574,13 @@ "Translate App": "", "Transport Encryption Behavior": "", "TrueCloud Backup Tasks": "", + "Tunable": "", "Turn Off": "", "UI": "", "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", + "Uncheck": "", "Unused Disks": "", "Update Dashboard": "", "Update Password": "", @@ -527,11 +597,13 @@ "User Quota Manager": "", "User limit to Docker Hub has almost been reached or has already been reached. The installation process may stall as images cannot be pulled. The current limit will be renewed in {seconds}. The application can still be staged for installation.": "", "User password": "", + "VMware Snapshot": "", "Vdev:": "", "View Changelog": "", "View Less": "", "View Netdata": "", "View Release Notes": "", + "Virtual Machine": "", "Voltage": "", "Wait to start VM until SPICE client connects.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", @@ -555,7 +627,10 @@ "ZFS Utilization": "", "disk stats": "", "disk writes": "", + "iSCSI Extent": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "on this enclosure.": "", "standby": "", "{comparator} (Range In)": "", @@ -4041,6 +4116,7 @@ "Sign": "Ondertekenen", "Sign CSR": "CSR ondertekenen", "Sign In": "Aanmelden", + "Sign up for account": "Aanmelden voor account", "Signed By": "Ondertekend door", "Signed Certificates": "Ondertekende certificaten", "Signin": "Aanmelden", @@ -4048,7 +4124,6 @@ "Signing Certificate Authority": "Ondertekend door Certificaat Autoriteit", "Signing Request": "Ondertekeningsverzoek", "Signup": "Aanmelden", - "Signup for account": "Aanmelden voor account", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "Silver / Gold Coverage Klanten kunnen iXsystems Proactive Support inschakelen. Dit e-mailt iXsystems automatisch wanneer bepaalde omstandigheden zich voordoen op dit TrueNAS-systeem. Het iX-ondersteuningsteam zal onmiddellijk communiceren met de hieronder opgeslagen contactpersonen om elk probleem dat zich mogelijk op het systeem heeft voorgedaan, snel op te lossen.", "Similar Apps": "Vergelijkbare apps", "Site Name": "Sitenaam", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 4e0eca7760d..def3d16924d 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -26,6 +26,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -93,6 +94,7 @@ "ACL Entries": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -104,6 +106,7 @@ "ARN": "", "AVAILABLE": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -225,6 +228,7 @@ "Add listen": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -310,8 +314,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -347,6 +353,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -447,6 +454,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -534,6 +542,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -604,6 +613,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -670,6 +680,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -764,18 +775,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -819,14 +837,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -862,6 +891,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1034,6 +1064,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1222,6 +1253,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1287,6 +1319,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1399,6 +1432,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1775,6 +1809,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1931,6 +1966,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2024,6 +2061,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2168,6 +2206,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2176,10 +2215,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2209,6 +2250,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2256,6 +2298,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2534,8 +2577,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2683,6 +2729,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3029,6 +3076,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3172,6 +3220,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3199,6 +3248,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3217,6 +3268,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3293,6 +3345,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3360,11 +3413,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3385,6 +3443,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3448,6 +3507,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3592,6 +3652,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3793,6 +3854,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3813,6 +3875,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3820,7 +3883,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3834,6 +3896,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3844,6 +3908,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3913,6 +3978,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4009,6 +4075,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4026,6 +4093,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4361,6 +4429,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4399,6 +4468,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4590,6 +4660,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4638,6 +4709,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4806,8 +4878,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 90cc69a7409..0fcf31636d3 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -25,6 +25,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -52,6 +53,7 @@ "ACL Editor": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ALERT": "", @@ -60,6 +62,7 @@ "API Key:": "", "ARN": "", "AVAILABLE": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Control Entry": "", @@ -202,6 +205,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -301,8 +305,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -338,6 +344,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -438,6 +445,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -525,6 +533,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -595,6 +604,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -661,6 +671,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -755,18 +766,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -810,14 +828,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -853,6 +882,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1031,6 +1061,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1220,6 +1251,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1285,6 +1317,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1398,6 +1431,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1774,6 +1808,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1930,6 +1965,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2024,6 +2061,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2167,6 +2205,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2175,10 +2214,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2208,6 +2249,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2255,6 +2297,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2533,8 +2576,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2684,6 +2730,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3030,6 +3077,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3173,6 +3221,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3201,6 +3250,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3219,6 +3270,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3316,6 +3368,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3383,11 +3436,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3408,6 +3466,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3471,6 +3530,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3615,6 +3675,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3817,6 +3878,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3837,6 +3899,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3844,7 +3907,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3858,6 +3920,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3868,6 +3932,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3937,6 +4002,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4033,6 +4099,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4050,6 +4117,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4385,6 +4453,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4423,6 +4492,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4614,6 +4684,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4662,6 +4733,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4832,8 +4904,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 303309aa37a..d16a31266ae 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -1,5 +1,6 @@ { "": "", + "2FA Settings": "", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "", "Authentication protocol used to authenticate messages sent on behalf of the specified Username.": "", "Encryption protocol used to encrypt messages sent on behalf of the specified Username.": "", @@ -44,7 +45,9 @@ "A username on the FTP Host system. This user must already exist on the FTP Host.": "", "ACL": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", + "Abort Job": "", "Accept": "", "Access Token generated by a Hubic account.": "", "Access Token for a Dropbox account. A token must be generated by the Dropbox account before adding it here.": "", @@ -82,6 +85,7 @@ "Add Volume": "", "Add Widget": "", "Add iSCSI": "", + "Add {item}": "", "Additional Kerberos application settings. See the \"appdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", "Additional Kerberos library settings. See the \"libdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", "Additional domains to search. Separate entries by pressing Enter. Adding search domains can cause slow DNS lookups.": "", @@ -107,7 +111,9 @@ "Allow non-unique serialed disks (not recommended)": "", "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", + "Allowed Address": "", "Allowed IP Addressed": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Sudo Commands (No Password)": "", "Allowed network in network/mask CIDR notation (example 1.2.3.4/24). One entry per field. Leave empty to allow everybody.": "", @@ -128,6 +134,7 @@ "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", "An update is already applied. Please reboot the system.": "", + "Api Key": "", "Append @realm to cn in LDAP queries for both groups and users when User CN is set).": "", "Appends a suffix to the share connection path. This is used to provide unique shares on a per-user, per-computer, or per-IP address basis. Suffixes can contain a macro. See the smb.conf manual page for a list of supported macros. The connectpath **must** be preset before a client connects.": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", @@ -141,10 +148,12 @@ "Arbitrary Text": "", "At least one module must be defined in rsyncd.conf(5) of the rsync server or in the Rsync Modules of another system.": "", "Attaching Disk to Boot Pool": "", + "Audit Entry": "", "Audit Settings": "", "AuthVersion": "", "Backup Config": "", "Backup Credential": "", + "Boot Environment": "", "Burst": "", "CLI": "", "CN Realm": "", @@ -154,6 +163,7 @@ "CPU Usage Gauge": "", "CPU Usage per Core Bar Graph": "", "CPU Utilization": "", + "CSR": "", "CSRs": "", "Cache": "", "Caches": "", @@ -167,6 +177,7 @@ "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", "Changing settings below will result in Kubernetes cluster re-initialization deleting installed apps and their data.": "", "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", + "Check": "", "Check for Software Updates": "", "Check this box if importing a certificate for which a CSR exists on this system": "", "Check to enable Audit Logs": "", @@ -221,15 +232,22 @@ "Click an item to view NFSv4 permissions": "", "Click to give {index} star rating.": "", "Clicking Continue allows TrueNAS to finish the update in the background while Abort stops the process and reverts the dataset ACL to the previously active ACL.": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close scheduler": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Write": "", "Cloud Sync to Storj or similar provider": "", @@ -250,11 +268,22 @@ "Completely replicate the selected dataset. The target dataset will have all of the source dataset's properties, child datasets, clones and snapshots that match the specified naming schema. Set Snapshot Name Regular Expression to .* to replicate all snapshots.": "", "Compress Connections": "", "Config Email": "", + "Configure Access": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configured for simultaneous use with SMB and NFS on the same dataset.": "", @@ -264,6 +293,7 @@ "Confirm to unset pool?": "", "Connection port number on the central key server.": "", "Console Menu": "", + "Console Settings": "", "Container": "", "Container Images": "", "Container Name": "", @@ -348,6 +378,7 @@ "Dataset Data Protection": "", "Dataset Information": "", "Dataset Permissions": "", + "Dataset Quota": "", "Dataset Roles": "", "Dataset ZFS Encryption": "", "Dataset for use by an application. If you plan to deploy container applications, the system automatically creates the ix-applications dataset but this is not used for application data storage.": "", @@ -437,6 +468,7 @@ "Directory Service Read": "", "Directory Service Write": "", "Directory Services Groups": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable LDAP User/Group Cache": "", @@ -467,6 +499,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -489,6 +522,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", "Email addresses to receive copies of iXsystems Support messages about this issue. Use the format name@domain.com. Separate entries by pressing Enter.": "", "Email settings updated.": "", @@ -727,6 +761,7 @@ "Failed to load datasets": "", "Failover is in an error state.": "", "Feature Request": "", + "First Page": "", "For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "", "Force Clear": "", "Force Create": "", @@ -823,6 +858,8 @@ "Has Allow List": "", "Healthy": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -882,6 +919,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "ISO save location": "", "Icon URL": "", "Identify light is now flashing.": "", @@ -975,15 +1013,18 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", "It is not recommended to extend a pool with one or more VDEVs containing different numbers of disks. Continue?": "", "It seems you haven't configured pools yet.": "", "Item": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", + "Job": "", "Jobs History": "", "Jobs in progress": "", "Joining": "", @@ -1006,6 +1047,7 @@ "Kerberos Realms": "", "Kerberos Settings": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key Agreement": "", "Key Cert Sign": "", "Key Encipherment": "", @@ -1041,6 +1083,7 @@ "LUN ID": "", "LUN RPM": "", "Lan": "", + "Last Page": "", "Last Resilver": "", "Last Scrub Date": "", "Last successful": "", @@ -1192,8 +1235,11 @@ "NAA": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -1317,6 +1363,7 @@ "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", "Newsletter": "", + "Next Page": "", "No Enclosure Dispersal Strategy": "", "No Encryption (less secure, but faster)": "", "No Isolated GPU Device(s) configured": "", @@ -1520,6 +1567,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Priority Code Point": "", @@ -1599,6 +1647,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", "Rename Boot Environment": "", @@ -1614,6 +1663,8 @@ "Replicate snapshots that have not been created by an automated snapshot task. Requires setting a naming schema for the custom snapshots.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -1629,6 +1680,7 @@ "Report a bug": "", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -1688,6 +1740,7 @@ "Routing": "", "Routing Key": "", "Rsync": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync task has started.": "", "Rsync task «{name}» has started.": "", @@ -1723,8 +1776,13 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", + "SMB Share": "", "SMB Shares": "", "SMB User": "", "SMB multichannel allows servers to use multiple network connections simultaneously by combining the bandwidth of several network interface cards (NICs) for better performance. SMB multichannel does not function if you combine NICs into a LAGG. Read more in docs": "", @@ -1740,6 +1798,7 @@ "SSH": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -1778,6 +1837,7 @@ "Script deleted.": "", "Script to execute after running sync.": "", "Script to execute before running sync.": "", + "Scrub Task": "", "Scrub interval set to {scrubIntervalValue} days": "", "Search Documentation for «{value}»": "", "Search Results for «{query}»": "", @@ -1886,6 +1946,7 @@ "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Feedback": "", "Send Method": "", @@ -2006,6 +2067,7 @@ "Should only be used for highly accurate NTP servers such as those with time monitoring hardware.": "", "Show All": "", "Show Ipmi Events": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -2022,6 +2084,8 @@ "Skip automatic detection of the Endpoint URL region. Set this only if AWS provider does not support regions.": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -2031,6 +2095,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -2073,6 +2138,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routing": "", "Static route added": "", "Static route deleted": "", @@ -2132,6 +2198,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -2147,6 +2214,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Stats": "", "System Uptime": "", @@ -2412,6 +2480,7 @@ "TrueNAS software versions do not match between storage controllers.": "", "TrueNAS was unable to reach update servers.": "", "Trust Guest Filters": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Two Factor Authentication for SSH": "", @@ -2439,6 +2508,7 @@ "UTC": "", "Unable to retrieve Available Applications": "", "Unable to terminate processes which are using this pool: ": "", + "Uncheck": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", "Unique Virtual Host ID on the broadcast segment of the network. Configuring multiple Virtual IP addresses requires a separate VHID for each address.": "", "Unique drive identifier. Log in to a Microsoft account and choose a drive from the Drives List drop-down to add a valid ID.": "", @@ -2557,6 +2627,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Sync": "", "Validate Certificates": "", "Validate Connection": "", @@ -2586,6 +2657,7 @@ "View/Download Certificate": "", "View/Download Key": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtualization is not supported": "", "Voltage": "", "Volume size cannot be zero.": "", @@ -2687,8 +2759,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", @@ -4644,6 +4719,7 @@ "Shutdown Timer": "Temporizador de encerramento", "Sign In": "Entrar", "Sign Out": "Sair", + "Sign up for account": "Registo de conta", "Signed By": "Assinado por", "Signed Certificates": "Certificados Assinados", "Signin": "Entrar", @@ -4651,7 +4727,6 @@ "Signing Certificate Authority": "Autoridade de certificação de assinatura", "Signing Request": "Solicitação de assinatura", "Signup": "Inscrever-se", - "Signup for account": "Registo de conta", "Similar Apps": "Aplicações semelhantes", "Site Name": "Nome do sítio", "Size": "Tamanho", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index a1a7148f900..39666079a90 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -17,6 +17,7 @@ ", ": "", "...": "", "2FA": "", + "2FA Settings": "", " TrueNAS Forums - Find answers from other users in the forums.": "", " TrueNAS Licensing - Learn more about enterprise-grade support.": "", " TrueNAS Documentation Hub - Read and contribute to the open-source documentation.": "", @@ -35,6 +36,7 @@ "ACL": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -44,6 +46,7 @@ "API Key:": "", "API Keys": "", "ARN": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Control Entry": "", @@ -156,6 +159,7 @@ "Add listen": "", "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Adding data VDEVs of different types is not supported.": "", "Additional Domains:": "", "Additional Kerberos application settings. See the \"appdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", @@ -197,8 +201,10 @@ "Allow non-unique serialed disks (not recommended)": "", "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -216,6 +222,7 @@ "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Append Data": "", @@ -285,6 +292,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -319,6 +327,7 @@ "Basic": "", "Basic Settings": "", "Block (iSCSI) Shares Targets": "", + "Boot Environment": "", "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", "Bot API Token": "", @@ -358,6 +367,7 @@ "CPU Utilization": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "Calculate number of threads dynamically": "", "Callback Address": "", @@ -387,6 +397,7 @@ "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", "Changing settings below will result in Kubernetes cluster re-initialization deleting installed apps and their data.": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -416,17 +427,24 @@ "Clicking Continue allows TrueNAS to finish the update in the background while Abort stops the process and reverts the dataset ACL to the previously active ACL.": "", "Client ID": "", "Clone To New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Write": "", "Cloud Sync to Storj or similar provider": "", @@ -452,14 +470,25 @@ "Config-Reset": "", "Configuration Preview": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure {name}": "", @@ -473,6 +502,7 @@ "Connected at": "", "Connecting to TrueNAS": "", "Console Menu": "", + "Console Settings": "", "Container Images": "", "Container Name": "", "Container Read": "", @@ -594,6 +624,7 @@ "Dataset Name": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -698,6 +729,7 @@ "Directory Service Read": "", "Directory Service Write": "", "Directory Services Groups": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disabled in Disk Settings": "", "Disabling host path validation may result in undefined behavior from TrueNAS system\n services that access host paths mounted within kubernetes.
\n Undefined behavior may include loss of access to data through inadvertent permissions changes,\n loss of data due to lack of validation of application compatibility, and application stability issues.

\n As such, this configuration is unsupported and bug reports in which this configuration plays a role\n may be closed as a user configuration issue without further investigation.": "", @@ -731,6 +763,7 @@ "Do not save": "", "Do you want to configure the ACL?": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -810,6 +843,7 @@ "Edit widget to choose network interface.": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email Options": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", @@ -982,6 +1016,7 @@ "Filter by Disk Type": "", "Filters": "", "Finished Scrub on {date}": "", + "First Page": "", "Flags Advanced": "", "Flags Basic": "", "Flash Identify Light": "", @@ -1067,6 +1102,8 @@ "Has Allow List": "", "Healthy": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", + "Hide Job": "", + "Hide Password": "", "Hide from MSR": "", "High Bandwidth (16)": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", @@ -1104,6 +1141,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "Identify Drive": "", "Identify light is now flashing.": "", "Identify light is now off.": "", @@ -1183,6 +1221,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", @@ -1190,9 +1229,11 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -1210,6 +1251,7 @@ "Kerberos Keytabs": "", "Kerberos Realms": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key Cert Sign": "", "Key for {id}": "", "Key not set": "", @@ -1240,6 +1282,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scrub": "", @@ -1414,8 +1457,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv4": "", "NFSv4 DNS Domain": "", "NIC To Attach": "", @@ -1526,6 +1572,7 @@ "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", "Newsletter": "", + "Next Page": "", "No": "", "No Applications Installed": "", "No Applications are Available": "", @@ -1769,6 +1816,7 @@ "Preset": "", "Preset Name": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", + "Previous Page": "", "Priority Code Point": "", "Privilege": "", "Privileges": "", @@ -1858,6 +1906,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -1875,6 +1924,8 @@ "Replicate «{name}» now?": "", "Replication {name} has started.": "", "Replication Admin": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -1889,6 +1940,7 @@ "Replication «{name}» has started.": "", "Report Bug": "", "Report a bug": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -1959,6 +2011,7 @@ "Routing": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync task has started.": "", "Rsync task «{name}» has started.": "", @@ -2014,10 +2067,15 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -2032,6 +2090,7 @@ "SSH Connection saved": "", "SSH Connections": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -2067,6 +2126,7 @@ "Scroll to top": "", "Scrub In Progress:": "", "Scrub Paused": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval set to {scrubIntervalValue} days": "", "Search": "", @@ -2139,6 +2199,7 @@ "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Feedback": "", "Send Method": "", @@ -2242,6 +2303,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -2253,12 +2315,12 @@ "Sign": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", "Signing": "", "Signup": "", - "Signup for account": "", "Similar Apps": "", "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "", "Size in GiB of the maximum amount of space that may be consumed by the dataset where the audit dabases are stored.": "", @@ -2268,11 +2330,14 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapshot Delete": "", "Snapshot Manager": "", "Snapshot Name Regular Expression": "", "Snapshot Read": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -2318,6 +2383,7 @@ "Starting task": "", "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", + "Static Route": "", "Static Routing": "", "Static route added": "", "Static route deleted": "", @@ -2384,6 +2450,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -2397,6 +2464,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -2619,6 +2687,7 @@ "TrueNAS {product} is Free and Open Source software, which is provided as-is with no warranty.": "", "Trust Guest Filters": "", "Tuesday": "", + "Tunable": "", "Turn Off": "", "Turn Off Service": "", "Turn On Service": "", @@ -2648,6 +2717,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unhealthy": "", "Unit": "", "Unix NSS Info": "", @@ -2762,6 +2832,7 @@ "VM Serial Shell": "", "VM Write": "", "VM updated successfully.": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "Validate Connection": "", @@ -2801,6 +2872,7 @@ "View/Download Certificate": "", "View/Download Key": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual machine created": "", "Virtualization is not supported": "", "Voltage": "", @@ -2928,8 +3000,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 9bdadaa1845..7cc73ae59dc 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -8,6 +8,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -25,8 +26,10 @@ "ACL": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ALL Initiators Allowed": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access Settings": "", @@ -69,6 +72,7 @@ "Add Widget": "", "Add iSCSI": "", "Add the required no. of disks to get a vdev size estimate": "", + "Add {item}": "", "Adding data VDEVs of different types is not supported.": "", "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", @@ -83,7 +87,9 @@ "All disks healthy.": "", "Allow Directory Service users to access WebUI": "", "Allow non-unique serialed disks (not recommended)": "", + "Allowed Address": "", "Allowed IP Addressed": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed addresses have been updated": "", @@ -93,6 +99,7 @@ "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "", "An error occurred while sending the review. Please try again later.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", + "Api Key": "", "Application Metadata": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", "Applications allow you to extend the functionality of the TrueNAS server beyond traditional Network Attached Storage (NAS) workloads, and as such are not covered by iXsystems software support contracts unless explicitly stated. Defective or malicious applications can lead to data loss or exposure, as well possible disruptions of core NAS functionality.\n\n iXsystems makes no warranty of any kind as to the suitability or safety of using applications. Bug reports in which applications are accessing the same data and filesystem paths as core NAS sharing functionality may be closed without further investigation.": "", @@ -132,6 +139,7 @@ "Attaching Disk to Boot Pool": "", "Attachments not uploaded": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -147,6 +155,7 @@ "Backup Credential": "", "Backup Tasks": "", "Backup to Cloud or another TrueNAS via links below": "", + "Boot Environment": "", "Boot Pool Disk Replaced": "", "Box": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", @@ -162,6 +171,7 @@ "CPU Usage Gauge": "", "CPU Usage per Core Bar Graph": "", "CPU Utilization": "", + "CSR": "", "CSR deleted": "", "Calculate number of threads dynamically": "", "Callback Address": "", @@ -177,6 +187,7 @@ "Certificate request signed": "", "Change Token Lifetime in": "", "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", + "Check": "", "Check for Software Updates": "", "Check to enable Audit Logs": "", "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "", @@ -187,16 +198,23 @@ "Click Add to add first VDEV.": "", "Click to give {index} star rating.": "", "Client ID": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Write": "", "Cloud Sync to Storj or similar provider": "", @@ -210,11 +228,22 @@ "Config Email": "", "Config-Reset": "", "Configure 2FA Secret": "", + "Configure Access": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configured for simultaneous use with SMB and NFS on the same dataset.": "", @@ -222,6 +251,7 @@ "Confirmation": "", "Connected at": "", "Console Menu": "", + "Console Settings": "", "Container Read": "", "Container Write": "", "Continue with the upgrade": "", @@ -307,6 +337,7 @@ "Dataset Information": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Write": "", @@ -357,6 +388,7 @@ "Device updated": "", "Device/File": "", "Directory Services Groups": "", + "Disable": "", "Disconnect": "", "Discover": "", "Discover Apps": "", @@ -373,6 +405,7 @@ "Do any of them look similar?": "", "Do not enable ALUA on TrueNAS unless it is also supported by and enabled on the client computers. ALUA only works when enabled on both the client and server.": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Domain Name System": "", @@ -397,6 +430,7 @@ "Edit group": "", "Edit widget to choose network interface.": "", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "", + "Element": "", "Empty drive cage": "", "Enable FIPS": "", "Enable Integrated Metrics Server": "", @@ -462,6 +496,7 @@ "File size is limited to {n} MiB.": "", "Filename": "", "Filesystem": "", + "First Page": "", "For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "", "Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "", "Forums": "", @@ -506,6 +541,8 @@ "HTTPS Redirect": "", "Has Allow List": "", "Healthy": "", + "Hide Job": "", + "Hide Password": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Mounts": "", @@ -522,6 +559,7 @@ "IPMI Write": "", "IPs": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "If automatic login has failed, please try the following credentials manually.": "", "If checked, disks of the selected size or larger will be used. If unchecked, only disks of the selected size will be used.": "", "If set, the value will be used to override the default DNS domain name for NFSv4. Specifies the \"Domain\" idmapd.conf setting.": "", @@ -563,13 +601,16 @@ "Invalid pool name (please refer to the documentation for valid rules for pool name)": "", "Invisible": "", "Ipmi": "", + "Isolated GPU Devices Settings": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", "It is not recommended to extend a pool with one or more VDEVs containing different numbers of disks. Continue?": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", + "Job": "", "Jobs History": "", "Jobs in progress": "", "Joining": "", @@ -580,6 +621,7 @@ "Keep the name short and only lowercase. Using a name longer than 63 characters can prevent accessing the block device. Allowed characters: letters, numbers, period (.), dash (-), and colon (:).": "", "Kerberos Keytabs": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key not set": "", "Key set": "", "Keychain Credential Read": "", @@ -594,6 +636,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scrub": "", @@ -659,8 +702,11 @@ "Multiprotocol": "", "NEW": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv4 DNS Domain": "", "NS": "", "NTP Server": "", @@ -740,6 +786,7 @@ "New iSCSI": "", "New password": "", "Newsletter": "", + "Next Page": "", "No Enclosure Dispersal Strategy": "", "No License": "", "No VDEVs added.": "", @@ -808,6 +855,7 @@ "Power Menu": "", "Power Supply": "", "Pre Script": "", + "Previous Page": "", "Privilege": "", "Privileges": "", "Processor": "", @@ -840,11 +888,14 @@ "Release Notes": "", "Remote machine": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Renew 2FA Secret": "", "Renew Certificate Days Before Expiry": "", "Replication {name} has started.": "", "Replication Admin": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -855,6 +906,7 @@ "Replication task saved.": "", "Report Bug": "", "Report a bug": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -888,6 +940,7 @@ "Root TCP Socket": "", "Routing": "", "Rsync": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync task has started.": "", "Rsync to another server": "", @@ -902,9 +955,14 @@ "SED User": "", "SFTP": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -915,6 +973,7 @@ "SSH Connection saved": "", "SSH Connections": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair created": "", "SSH Keypair updated": "", "SSH Keyscan": "", @@ -932,6 +991,7 @@ "Script deleted.": "", "Scrub In Progress:": "", "Scrub Paused": "", + "Scrub Task": "", "Search Alert Categories": "", "Search UI": "", "Seconds From Last Renew": "", @@ -960,6 +1020,7 @@ "Select the folder to store the backup data.": "", "Select the minimum priority level to send to the remote syslog server. The system only sends logs matching this level or higher.": "", "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "", + "Self-Encrypting Drive Settings": "", "Send Feedback": "", "Send Method": "", "Send Test Email": "", @@ -1016,6 +1077,7 @@ "Show Events": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Sign Out": "", "Signin": "", "Signing": "", @@ -1025,11 +1087,14 @@ "Skip automatic detection of the Endpoint URL region. Set this only if AWS provider does not support regions.": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapshot Delete": "", "Snapshot Directory": "", "Snapshot Manager": "", "Snapshot Read": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -1048,6 +1113,7 @@ "Start Over": "", "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "", "Starting task": "", + "Static Route": "", "Static Routing": "", "Static route added": "", "Static route deleted": "", @@ -1071,6 +1137,7 @@ "Switch to Advanced Options": "", "Switching to Advanced Options will lose data entered on second step. Do you want to continue?": "", "Sysctl \"{name}\" deleted": "", + "Syslog Settings": "", "System Audit Read": "", "System Audit Write": "", "System Data Pool": "", @@ -1079,6 +1146,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Stats": "", "System Uptime": "", @@ -1144,6 +1212,7 @@ "TrueCommand Write": "", "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": "", + "Tunable": "", "Turn Off": "", "Two Factor Auth": "", "Two Factor Authentication for SSH": "", @@ -1158,6 +1227,7 @@ "UPS Utilization": "", "URI of the ACME Server Directory. Choose a pre configured URI": "", "URI of the ACME Server Directory. Enter a custom URI.": "", + "Uncheck": "", "Unix Socket": "", "Unlink": "", "Unlock Pool": "", @@ -1202,6 +1272,7 @@ "VM Read": "", "VM Serial Shell": "", "VM Write": "", + "VMware Snapshot": "", "VMware Snapshots": "", "Value must be greater than Range Low": "", "Value must be greater than {label}": "", @@ -1211,6 +1282,7 @@ "View Less": "", "View Netdata": "", "View Release Notes": "", + "Virtual Machine": "", "Virtualization is not supported": "", "Voltage": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", @@ -1259,7 +1331,10 @@ "dRAID3": "", "disk stats": "", "disk writes": "", + "iSCSI Extent": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "last run {date}": "", "never ran": "", @@ -4212,12 +4287,12 @@ "Sign": "Підписати", "Sign CSR": "Підписати CSR", "Sign In": "Увійти", + "Sign up for account": "Реєстрація облікового запису", "Signed By": "Підписаний", "Signed Certificates": "Підписані сертифікати", "Signing Certificate Authority": "Підписання Центру сертифікації", "Signing Request": "Запит на підпис", "Signup": "Реєстрація", - "Signup for account": "Реєстрація облікового запису", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "Клієнти з покриттям Silver/Gold можуть включити Проактивну підтримку iXsystems. Це автоматично відправляє iXsystems електронні листи, коли у цій системі TrueNAS виникають певні умови. Служба підтримки iX швидко зв'яжеться з контактами, збереженими нижче, щоб швидко вирішити будь-яку проблему, яка могла виникнути в системі.", "Similar Apps": "Схожі програми", "Site Name": "Назва сайту", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index c7bf7a18263..037dcfa64d7 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -33,6 +33,7 @@ "2 weeks ago": "", "20 characters is the maximum length.": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -102,6 +103,7 @@ "ACL Type": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -118,6 +120,7 @@ "AVAILABLE": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "About": "", "Accept": "", @@ -263,6 +266,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional smartctl(8) options.": "", @@ -362,8 +366,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -399,6 +405,7 @@ "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -499,6 +506,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -587,6 +595,7 @@ "Block Size": "", "Block size": "", "Boot": "", + "Boot Environment": "", "Boot Environments": "", "Boot Loader Type": "", "Boot Method": "", @@ -657,6 +666,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -723,6 +733,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check Interval": "", @@ -817,18 +828,25 @@ "Clone To New Dataset": "", "Clone to New Dataset": "", "Close": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Credentials": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -872,14 +890,25 @@ "Configure": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -915,6 +944,7 @@ "Console": "", "Console Keyboard Map": "", "Console Menu": "", + "Console Settings": "", "Contact": "", "Container": "", "Container Images": "", @@ -1093,6 +1123,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1282,6 +1313,7 @@ "Directory Services Groups": "", "Directory Services Monitor": "", "Directory/Files": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable Failover": "", @@ -1347,6 +1379,7 @@ "Do you want to configure the ACL?": "", "Docker Host": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1460,6 +1493,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email": "", "Email Options": "", @@ -1836,6 +1870,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags": "", "Flags Advanced": "", @@ -1992,6 +2027,8 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide Standard Error": "", "Hide Standard Output": "", "Hide Stderr": "", @@ -2086,6 +2123,7 @@ "IPv6": "", "IPv6 Address": "", "IPv6 Default Gateway": "", + "ISCSI Associated Target": "", "ISNS Servers": "", "ISO save location": "", "Icon URL": "", @@ -2230,6 +2268,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "Issuer": "", @@ -2238,10 +2277,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -2271,6 +2312,7 @@ "Kerberos Settings": "", "Kernel": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -2318,6 +2360,7 @@ "Language": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2596,8 +2639,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2747,6 +2793,7 @@ "Newer Intermediate, Child, and Clone": "", "Newsletter": "", "Next": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -3093,6 +3140,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Primary Contact": "", "Primary DNS server.": "", "Primary Group": "", @@ -3236,6 +3284,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -3264,6 +3313,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -3282,6 +3333,7 @@ "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", "Reporting": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -3379,6 +3431,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -3446,11 +3499,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -3471,6 +3529,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair": "", "SSH Keypair created": "", "SSH Keypair updated": "", @@ -3534,6 +3593,7 @@ "Scrub Paused": "", "Scrub Pool": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -3678,6 +3738,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3880,6 +3941,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show Text Console without Password Prompt": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", @@ -3900,6 +3962,7 @@ "Sign CSR": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", @@ -3907,7 +3970,6 @@ "Signing Certificate Authority": "", "Signing Request": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Site Name": "", @@ -3921,6 +3983,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot": "", @@ -3931,6 +3995,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -4000,6 +4065,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routes": "", "Static Routing": "", "Static route added": "", @@ -4096,6 +4162,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -4113,6 +4180,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -4448,6 +4516,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Tunables": "", "Turn Off": "", "Turn Off Service": "", @@ -4486,6 +4555,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -4677,6 +4747,7 @@ "VM system time. Default is Local.": "", "VM updated successfully.": "", "VMWare Sync": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -4725,6 +4796,7 @@ "View/Download Key": "", "Virtual CPUs": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual Machines": "", "Virtual machine created": "", "Virtualization": "", @@ -4895,8 +4967,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 1fb2e886da1..2c2478a386d 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -3,12 +3,15 @@ " as of {dateTime}": "", "...": "", "2FA": "", + "2FA Settings": "", "S3 API endpoint URL. When using AWS, the endpoint field can be empty to use the default endpoint for the region, and available buckets are automatically fetched. Refer to the AWS Documentation for a list of Simple Storage Service Website Endpoints.": "", "Yes: Disables the Password fields. The account cannot use password-based logins for services. For example, disabling the password prevents using account credentials to log in to an SMB share or open an SSH session on the system. The Lock User and Permit Sudo options are also removed.

No: Requires adding a Password to the account. The account can use the saved Password to authenticate with password-based services.": "", "A single bandwidth limit or bandwidth limit schedule in rclone format. Separate entries by pressing Enter. Example: 08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off. Units can be specified with a suffix of b (default), k, M, or G. See rclone --bwlimit.": "", "ACL": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Add ACME DNS-Authenticator": "", @@ -43,6 +46,7 @@ "Add Volume": "", "Add Widget": "", "Add iSCSI": "", + "Add {item}": "", "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", "Administrators": "", @@ -50,16 +54,21 @@ "Alert List Write": "", "All disks healthy.": "", "Allow non-unique serialed disks (not recommended)": "", + "Allowed Address": "", "Allowed IP Addressed": "", + "Allowed IP Addresses Settings": "", "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "", + "Api Key": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", "Arbitrary Text": "", "Asymmetric Logical Unit Access (ALUA)": "", "Attaching Disk to Boot Pool": "", + "Audit Entry": "", "Audit Settings": "", "Available Memory": "", "Backup Config": "", "Backup Credential": "", + "Boot Environment": "", "Boot Pool Disk Replaced": "", "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "", "Browser time: {time}": "", @@ -71,34 +80,55 @@ "CPU Usage Gauge": "", "CPU Usage per Core Bar Graph": "", "CPU Utilization": "", + "CSR": "", "CSR deleted": "", "Caution: Allocating too much memory can slow the system or prevent VMs from running.": "", + "Check": "", "Check for Software Updates": "", "Check the update server daily for any updates on the chosen train. Automatically download an update if one is available. Click APPLY PENDING UPDATE to install the downloaded update.": "", "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "", "Check {name}.": "", "Choose Master if the UPS is plugged directly into the system serial port. The UPS will remain the last item to shut down. Choose Slave to have this system shut down before Master. See the Network UPS Tools Overview.": "", "Click to give {index} star rating.": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close scheduler": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Command Line Interface": "", "Command: {command}": "", "Completed Jobs": "", "Config Email": "", + "Configure Access": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Console Menu": "", + "Console Settings": "", "Cooling": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -160,6 +190,7 @@ "Dataset Data Protection": "", "Dataset Information": "", "Dataset Permissions": "", + "Dataset Quota": "", "Dataset Roles": "", "Dataset ZFS Encryption": "", "Default – follow upstream / TrueNAS default": "", @@ -171,6 +202,7 @@ "Descriptor": "", "Desired – encrypt transport if supported by client during session negotiation": "", "Device removed": "", + "Disable": "", "Disk Details for {disk}": "", "Disk Details for {disk} ({descriptor})": "", "Disk I/O": "", @@ -181,6 +213,7 @@ "Disks with exported pools": "", "Distributed Hot Spares": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docs": "", "Domain Name System": "", "Door Lock": "", @@ -194,6 +227,7 @@ "Edit TrueCloud Backup Task": "", "Edit group": "", "Edit widget to choose network interface.": "", + "Element": "", "Empty drive cage": "", "Enable Integrated Metrics Server": "", "Enable Kernel Debug": "", @@ -231,6 +265,7 @@ "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "", "Feature Request": "", "Fetching Encryption Summary for {dataset}": "", + "First Page": "", "Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "", "Forums": "", "Free RAM": "", @@ -250,6 +285,8 @@ "HTTPS Port": "", "HTTPS Redirect": "", "Healthy": "", + "Hide Job": "", + "Hide Password": "", "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Mounts": "", @@ -258,6 +295,7 @@ "IP of 1st Redfish management interface.": "", "IPs": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "If automatic login has failed, please try the following credentials manually.": "", "If downloading a file returns the error \"This file has been identified as malware or spam and cannot be downloaded\" with the error code \"cannotDownloadAbusiveFile\" then enable this flag to indicate you acknowledge the risks of downloading the file and TrueNAS will download it anyway.": "", "If set, the value will be used to override the default DNS domain name for NFSv4. Specifies the \"Domain\" idmapd.conf setting.": "", @@ -280,14 +318,18 @@ "Internal": "", "Invalid pool name (please refer to the documentation for valid rules for pool name)": "", "Ipmi": "", + "Isolated GPU Devices Settings": "", "Issue": "", + "JBOF": "", "Jira": "", + "Job": "", "Jobs History": "", "Jobs in progress": "", "Joining": "", "Keep Last": "", "Kerberos Keytabs": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key not set": "", "Key set": "", "Keypairs": "", @@ -296,6 +338,7 @@ "LINK STATE UNKNOWN": "", "LINK STATE UP": "", "Lan": "", + "Last Page": "", "Last Resilver": "", "Last Scrub Date": "", "Layouts": "", @@ -320,6 +363,9 @@ "Move widget down": "", "Move widget up": "", "Multiple Errors": "", + "NFS Share": "", + "NFS3 Session": "", + "NFS4 Session": "", "NS": "", "NTP Server": "", "NVMe-oF Expansion Shelves": "", @@ -388,6 +434,7 @@ "New iSCSI": "", "New password": "", "Newsletter": "", + "Next Page": "", "No Enclosure Dispersal Strategy": "", "No License": "", "No available licensed Expansion Shelves ": "", @@ -421,6 +468,7 @@ "Power Menu": "", "Power Supply": "", "Pre Script": "", + "Previous Page": "", "Privilege": "", "Processor": "", "Prompt": "", @@ -433,9 +481,13 @@ "Redfish administrative username.": "", "Reject": "", "Release Notes": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Manager": "", "Report Bug": "", + "Reporting Exporter": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reset Default Config": "", "Reset Defaults": "", @@ -459,6 +511,7 @@ "Review": "", "Root TCP Socket": "", "Routing": "", + "Rsync Task": "", "Rsync Task Manager": "", "Run As Context": "", "Run «{name}» Cloud Backup now?": "", @@ -466,13 +519,19 @@ "SAS Expander": "", "SED User": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB User": "", "SMTP": "", "SSH Key": "", + "SSH Key Pair": "", "SSL Certificate": "", "SSL Protocols": "", "SSL Web Interface Port": "", @@ -480,6 +539,7 @@ "Save Config": "", "Save the 'Require Kerberos for NFSv4' value before adding SMP": "", "Saving settings": "", + "Scrub Task": "", "Search Documentation for «{value}»": "", "Search UI": "", "Select Reporting": "", @@ -497,6 +557,7 @@ "Select the directories or files to be sent to the cloud for backup.": "", "Select the folder to store the backup data.": "", "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "", + "Self-Encrypting Drive Settings": "", "Send Method": "", "Send Test Email": "", "Service = \"SMB\" AND Event = \"CLOSE\"": "", @@ -512,12 +573,16 @@ "Show All": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Sign Out": "", "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapshot Manager": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Time": "", "Snapshot Time {time}": "", @@ -527,16 +592,19 @@ "Specify number of threads manually": "", "Standby: TrueNAS Controller {id}": "", "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "", + "Static Route": "", "Static Routing": "", "Storj iX": "", "Subfolder": "", "Subject Alternative Name": "", "Sudo": "", + "Syslog Settings": "", "System Data Pool": "", "System Image": "", "System Information Active Node": "", "System Information Standby Node": "", "System Reports": "", + "System Security Settings": "", "System Stats": "", "System Uptime": "", "System Utilization": "", @@ -576,11 +644,13 @@ "Transport Encryption Behavior": "", "TrueCloud Backup Tasks": "", "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.": "", + "Tunable": "", "Turn Off": "", "UI": "", "UI Search Result: {result}": "", "UPS Stats": "", "UPS Utilization": "", + "Uncheck": "", "Unused Disks": "", "Update Dashboard": "", "Update Password": "", @@ -597,6 +667,7 @@ "User Quota Manager": "", "User limit to Docker Hub has almost been reached or has already been reached. The installation process may stall as images cannot be pulled. The current limit will be renewed in {seconds}. The application can still be staged for installation.": "", "User password": "", + "VMware Snapshot": "", "Value must be greater than Range Low": "", "Value must be greater than {label}": "", "Vdev:": "", @@ -605,6 +676,7 @@ "View Less": "", "View Netdata": "", "View Release Notes": "", + "Virtual Machine": "", "Voltage": "", "Wait to start VM until SPICE client connects.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", @@ -628,7 +700,10 @@ "ZFS Utilization": "", "disk stats": "", "disk writes": "", + "iSCSI Extent": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "of": "", "on this enclosure.": "", "standby": "", @@ -4095,6 +4170,7 @@ "Sign": "注册", "Sign CSR": "签发 CSR", "Sign In": "登录", + "Sign up for account": "注册帐户", "Signed By": "被...签名", "Signed Certificates": "签名证书", "Signin": "登录", @@ -4102,7 +4178,6 @@ "Signing Certificate Authority": "签名证书颁发机构", "Signing Request": "签名请求", "Signup": "注册", - "Signup for account": "注册帐户", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "银牌/金牌客户可以启用 iXsystems 主动支持。当此 TrueNAS 系统上发生某些情况时,它将自动通过电子邮件发送给 iXsystem。iX 支持团队将立即与下面保存的联系人联系,以快速解决系统上可能发生的任何问题。", "Similar Apps": "相似的应用程序", "Site Name": "站点名称", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 91e338327ff..9a8058f09c9 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -26,6 +26,7 @@ "2 months ago": "", "2 weeks ago": "", "2FA": "", + "2FA Settings": "", "2FA has been configured for this account. Enter the OTP to continue.": "", "3 days ago": "", "3 months ago": "", @@ -89,6 +90,7 @@ "ACL Entries": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", + "ACME DNS Authenticator": "", "ACME DNS-Authenticator": "", "ACME DNS-Authenticators": "", "ACME Server Directory URI": "", @@ -100,6 +102,7 @@ "ATA Security User": "", "AWS Region": "", "Abort": "", + "Abort Job": "", "Aborting...": "", "Accept": "", "Access": "", @@ -220,6 +223,7 @@ "Add new": "", "Add the required no. of disks to get a vdev size estimate": "", "Add this user to additional groups.": "", + "Add {item}": "", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "", "Adding data VDEVs of different types is not supported.": "", "Additional Domains:": "", @@ -287,8 +291,10 @@ "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "", "Allow {activities}": "", + "Allowed Address": "", "Allowed IP Addressed": "", "Allowed IP Addresses": "", + "Allowed IP Addresses Settings": "", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed Initiators": "", "Allowed Services": "", @@ -320,6 +326,7 @@ "An update is already applied. Please reboot the system.": "", "Any notes about initiators.": "", "Any system service can communicate externally.": "", + "Api Key": "", "App Name": "", "App Version": "", "Appdefaults Auxiliary Parameters": "", @@ -412,6 +419,7 @@ "Attachments not uploaded": "", "Attention": "", "Audit": "", + "Audit Entry": "", "Audit ID": "", "Audit Logging": "", "Audit Logs": "", @@ -466,6 +474,7 @@ "Before updating, please read the release notes.": "", "Best effort (default)": "", "Block (iSCSI) Shares Targets": "", + "Boot Environment": "", "Boot Environments": "", "Boot Pool Condition": "", "Boot Pool Disk Replaced": "", @@ -519,6 +528,7 @@ "CPUs and Memory": "", "CRITICAL": "", "CRL Sign": "", + "CSR": "", "CSR deleted": "", "CSR exists on this system": "", "CSRs": "", @@ -576,6 +586,7 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "", "Channel": "", "Channel {n}": "", + "Check": "", "Check Alerts for more details.": "", "Check Available Apps": "", "Check for Software Updates": "", @@ -643,17 +654,24 @@ "Client Name": "", "Clone Boot Environment": "", "Clone To New Dataset": "", + "Close Feedback Dialog": "", + "Close Inspect VDEVs Dialog": "", + "Close Job": "", + "Close Tooltip": "", "Close panel": "", "Close scheduler": "", "Close the form": "", + "Close {formType} Form": "", "Cloud Backup": "", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", + "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", "Cloud Sync": "", "Cloud Sync Read": "", + "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", "Cloud Sync Tasks": "", "Cloud Sync Write": "", @@ -686,14 +704,25 @@ "Configuration Preview": "", "Configure 2FA Secret": "", "Configure ACL": "", + "Configure Access": "", "Configure Active Directory": "", "Configure Alerts": "", + "Configure Allowed IP Addresses": "", + "Configure Audit": "", + "Configure Console": "", "Configure Dashboard": "", "Configure Email": "", + "Configure Global Two Factor Authentication": "", + "Configure Isolated GPU Devices": "", + "Configure Kernel": "", "Configure LDAP": "", "Configure Notifications": "", "Configure Pools": "", + "Configure Replication": "", + "Configure Self-Encrypting Drive": "", "Configure Sessions": "", + "Configure Storage": "", + "Configure Syslog": "", "Configure dashboard to edit the widget.": "", "Configure iSCSI": "", "Configure now": "", @@ -718,6 +747,7 @@ "Connection Error": "", "Connection port number on the central key server.": "", "Console Menu": "", + "Console Settings": "", "Container Read": "", "Container Write": "", "Containers": "", @@ -861,6 +891,7 @@ "Dataset Passphrase": "", "Dataset Permissions": "", "Dataset Preset": "", + "Dataset Quota": "", "Dataset Read": "", "Dataset Roles": "", "Dataset Rollback From Snapshot": "", @@ -1019,6 +1050,7 @@ "Directory Service Write": "", "Directory Services Groups": "", "Directory Services Monitor": "", + "Disable": "", "Disable AD User / Group Cache": "", "Disable Endpoint Region": "", "Disable LDAP User/Group Cache": "", @@ -1073,6 +1105,7 @@ "Do not set this if the Serial Port is disabled.": "", "Do you want to configure the ACL?": "", "Docker Hub Rate Limit Warning": "", + "Docker Image": "", "Docker Registry Authentication": "", "Docs": "", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "", @@ -1151,6 +1184,7 @@ "Editing interfaces while HA is enabled is not allowed.": "", "Editing top-level datasets can prevent users from accessing data in child datasets.": "", "Electing {controller}.": "", + "Element": "", "Elements": "", "Email Options": "", "Email addresses must be entered in the format local-name@domain.com, with entries separated by pressing Enter.": "", @@ -1466,6 +1500,7 @@ "Finished": "", "Finished Resilver on {date}": "", "Finished Scrub on {date}": "", + "First Page": "", "Fix Credential": "", "Flags Advanced": "", "Flags Basic": "", @@ -1583,6 +1618,8 @@ "Hidden": "", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "", "Hide Extra Columns": "", + "Hide Job": "", + "Hide Password": "", "Hide error output (stderr) from the command. When unset, any error output is mailed to the user account cron used to run the command.": "", "Hide from MSR": "", "Hide standard output (stdout) from the command. When unset, any standard output is mailed to the user account cron used to run the command.": "", @@ -1650,6 +1687,7 @@ "IPv4": "", "IPv6": "", "IPv6 Address": "", + "ISCSI Associated Target": "", "ISO save location": "", "Icon URL": "", "Identification": "", @@ -1772,6 +1810,7 @@ "Ipmi": "", "Is planned to be automatically destroyed at {datetime}": "", "Isolated GPU Device(s)": "", + "Isolated GPU Devices Settings": "", "Isolated GPU PCI Ids": "", "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", @@ -1779,10 +1818,12 @@ "It seems you haven't configured pools yet.": "", "Item": "", "Items per page": "", + "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jan": "", "Jira": "", + "Job": "", "Job {job} Completed Successfully": "", "Jobs": "", "Jobs History": "", @@ -1809,6 +1850,7 @@ "Kerberos Realm": "", "Kerberos Realms": "", "Kernel Parameters": "", + "Kernel Settings": "", "Key": "", "Key Agreement": "", "Key Cert Sign": "", @@ -1848,6 +1890,7 @@ "Lan": "", "Last 24 hours": "", "Last 3 days": "", + "Last Page": "", "Last Resilver": "", "Last Run": "", "Last Scan": "", @@ -2072,8 +2115,11 @@ "NEW": "", "NFS": "", "NFS Sessions": "", + "NFS Share": "", "NFS share created": "", "NFS share updated": "", + "NFS3 Session": "", + "NFS4 Session": "", "NFSv3 ownership model for NFSv4": "", "NFSv4": "", "NFSv4 DNS Domain": "", @@ -2202,6 +2248,7 @@ "Newer Clone": "", "Newer Intermediate, Child, and Clone": "", "Newsletter": "", + "Next Page": "", "Next Run": "", "No": "", "No Applications Installed": "", @@ -2493,6 +2540,7 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "", "Preview JSON Service Account Key": "", + "Previous Page": "", "Priority Code Point": "", "Privacy Passphrase": "", "Privilege": "", @@ -2598,6 +2646,7 @@ "Remove the ACL and permissions from child datasets of the current dataset": "", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "", "Remove this error to try again": "", + "Remove {label} item": "", "Remove {value} from recent searches": "", "Removed": "", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "", @@ -2619,6 +2668,8 @@ "Replication {name} has started.": "", "Replication Admin": "", "Replication Schedule": "", + "Replication Settings": "", + "Replication Task": "", "Replication Task Config Read": "", "Replication Task Config Write": "", "Replication Task Manager": "", @@ -2636,6 +2687,7 @@ "Report a bug": "", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "", + "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", "Reporting Write": "", @@ -2718,6 +2770,7 @@ "Routing Key": "", "Rsync": "", "Rsync Mode": "", + "Rsync Task": "", "Rsync Task Manager": "", "Rsync Tasks": "", "Rsync task has started.": "", @@ -2777,11 +2830,16 @@ "SMB - Vers Major": "", "SMB - Vers Minor": "", "SMB Group": "", + "SMB Lock": "", "SMB Locks": "", "SMB Name": "", + "SMB Notification": "", "SMB Notifications": "", + "SMB Open File": "", "SMB Service": "", + "SMB Session": "", "SMB Sessions": "", + "SMB Share": "", "SMB Shares": "", "SMB Status": "", "SMB User": "", @@ -2800,6 +2858,7 @@ "SSH Connections": "", "SSH Host to connect to.": "", "SSH Key": "", + "SSH Key Pair": "", "SSH Keypair created": "", "SSH Keypair updated": "", "SSH Keyscan": "", @@ -2844,6 +2903,7 @@ "Scrub In Progress:": "", "Scrub Paused": "", "Scrub Started": "", + "Scrub Task": "", "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", @@ -2973,6 +3033,7 @@ "Self Healed": "", "Self-Encrypting Drive": "", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "", + "Self-Encrypting Drive Settings": "", "Semi-automatic (TrueNAS only)": "", "Send Email Status Updates": "", "Send Feedback": "", @@ -3155,6 +3216,7 @@ "Show Extra Columns": "", "Show Ipmi Events": "", "Show Logs": "", + "Show Password": "", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -3165,12 +3227,12 @@ "Sign": "", "Sign In": "", "Sign Out": "", + "Sign up for account": "", "Signed By": "", "Signed Certificates": "", "Signin": "", "Signing": "", "Signup": "", - "Signup for account": "", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "", "Similar Apps": "", "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "", @@ -3181,6 +3243,8 @@ "Slot": "", "Slot {n}": "", "Smart": "", + "Smart Task": "", + "Smart Test Result": "", "Smart Tests": "", "Snapdev": "", "Snapshot Delete": "", @@ -3189,6 +3253,7 @@ "Snapshot Name Regular Expression": "", "Snapshot Read": "", "Snapshot Retention Policy": "", + "Snapshot Task": "", "Snapshot Task Manager": "", "Snapshot Task Read": "", "Snapshot Task Write": "", @@ -3248,6 +3313,7 @@ "Stateful Sets": "", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "", "Static IPv4 address of the IPMI web interface.": "", + "Static Route": "", "Static Routing": "", "Static route added": "", "Static route deleted": "", @@ -3331,6 +3397,7 @@ "Syslog": "", "Syslog Level": "", "Syslog Server": "", + "Syslog Settings": "", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "Syslog Transport": "", @@ -3343,6 +3410,7 @@ "System Information Standby Node": "", "System Reports": "", "System Security": "", + "System Security Settings": "", "System Security Settings Updated.": "", "System Serial": "", "System Stats": "", @@ -3639,6 +3707,7 @@ "Trust Guest Filters": "", "Tue": "", "Tuesday": "", + "Tunable": "", "Turn Off": "", "Two Factor Auth": "", "Two Factor Authentication for SSH": "", @@ -3670,6 +3739,7 @@ "Unassigned": "", "Unassigned Disks": "", "Unavailable": "", + "Uncheck": "", "Unencrypted": "", "Unhealthy": "", "Unique LUN ID. The default is generated from the MAC address of the system.": "", @@ -3824,6 +3894,7 @@ "VM Write": "", "VM system time. Default is Local.": "", "VM updated successfully.": "", + "VMware Snapshot": "", "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware Sync": "", @@ -3864,6 +3935,7 @@ "View/Download CSR": "", "View/Download Certificate": "", "Virtual IP Address (Failover Address)": "", + "Virtual Machine": "", "Virtual machine created": "", "Virtualization is not supported": "", "Visible": "", @@ -4006,8 +4078,11 @@ "gzip-1 (fastest)": "", "gzip-9 (maximum, slow)": "", "iSCSI": "", + "iSCSI Extent": "", "iSCSI Group": "", + "iSCSI Initiator": "", "iSCSI Share": "", + "iSCSI Target": "", "iSCSI Wizard": "", "iSCSI listen port": "", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "", diff --git a/src/assets/ui-searchable-elements.json b/src/assets/ui-searchable-elements.json index 567e85206a1..dfc9d2aefc1 100644 --- a/src/assets/ui-searchable-elements.json +++ b/src/assets/ui-searchable-elements.json @@ -2694,10 +2694,10 @@ "hierarchy": [ "Shares", "NFS", - "Create NFS Share" + "Add NFS Share" ], "synonyms": [ - "Add NFS Share", + "Create NFS Share", "New NFS Share", "Create Share", "Add Share", @@ -2712,7 +2712,7 @@ "nfs" ], "routerLink": null, - "anchor": "create-nfs-share", + "anchor": "add-nfs-share", "triggerAnchor": null, "section": "ui" }, @@ -2754,11 +2754,11 @@ "hierarchy": [ "Shares", "SMB", - "Create SMB Share" + "Add SMB Share" ], "synonyms": [ "Samba", - "Add SMB Share", + "Create SMB Share", "New SMB Share", "Create Share", "Add Share", @@ -2773,7 +2773,7 @@ "smb" ], "routerLink": null, - "anchor": "create-smb-share", + "anchor": "add-smb-share", "triggerAnchor": null, "section": "ui" }, @@ -3181,6 +3181,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Access", + "Configure Access" + ], + "synonyms": [ + "Access Settings" + ], + "requiredRoles": [ + "AUTH_SESSIONS_WRITE" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "access-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3236,6 +3258,27 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Configure Allowed IP Addresses" + ], + "synonyms": [ + "Allowed IP Addresses Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "allowed-addresses-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3253,6 +3296,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Audit", + "Configure Audit" + ], + "synonyms": [ + "Audit Settings" + ], + "requiredRoles": [ + "SYSTEM_AUDIT_WRITE" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "audit-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3360,6 +3425,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Console", + "Configure Console" + ], + "synonyms": [ + "Console Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "console-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3511,6 +3598,29 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Global Two Factor Authentication", + "Configure Global Two Factor Authentication" + ], + "synonyms": [ + "Global Two Factor Authentication Settings", + "2FA Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "global-two-factor-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3630,6 +3740,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Isolated GPU Device(s)", + "Configure Isolated GPU Devices" + ], + "synonyms": [ + "Isolated GPU Devices Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "isolated-gpus-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3665,6 +3797,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Kernel", + "Configure Kernel" + ], + "synonyms": [ + "Kernel Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "kernel-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3700,6 +3854,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Replication", + "Configure Replication" + ], + "synonyms": [ + "Replication Settings" + ], + "requiredRoles": [ + "REPLICATION_TASK_CONFIG_WRITE" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "replication-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3751,6 +3927,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Self-Encrypting Drive", + "Configure Self-Encrypting Drive" + ], + "synonyms": [ + "Self-Encrypting Drive Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "sed-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3809,6 +4007,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Storage", + "Configure Storage" + ], + "synonyms": [ + "Storage Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "storage-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -3910,6 +4130,28 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "Advanced", + "Syslog", + "Configure Syslog" + ], + "synonyms": [ + "Syslog Settings" + ], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "advanced" + ], + "routerLink": null, + "anchor": "syslog-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -4235,7 +4477,7 @@ "general" ], "routerLink": null, - "anchor": "configure-email", + "anchor": "email-settings", "triggerAnchor": null, "section": "ui" }, @@ -4295,6 +4537,26 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "General", + "GUI", + "GUI Settings" + ], + "synonyms": [], + "requiredRoles": [ + "FULL_ADMIN" + ], + "anchorRouterLink": [ + "/system", + "general" + ], + "routerLink": null, + "anchor": "gui-settings", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System", @@ -4501,6 +4763,24 @@ "triggerAnchor": null, "section": "ui" }, + { + "hierarchy": [ + "System", + "General", + "Localization", + "Localization Settings" + ], + "synonyms": [], + "requiredRoles": [], + "anchorRouterLink": [ + "/system", + "general" + ], + "routerLink": null, + "anchor": "localization-card", + "triggerAnchor": null, + "section": "ui" + }, { "hierarchy": [ "System",